Giter VIP home page Giter VIP logo

Comments (10)

awwright avatar awwright commented on May 25, 2024

Can you please provide running code, and describe the expected output and actual output?

The example you posted has two sub-schemas that specify an id of #/properties/hashes, but both have slightly different definitions (the "description" is different). Although the validation behavior is the same in this case, the two schemas could potentially be defined with different behavior. The error is pointing out that this behavior is ambiguous.

Consider giving different, full URIs to each sub-schema e.g. http://example.com/#/properties/hashes, or remove one of the two.

from jsonschema.

makdataproj avatar makdataproj commented on May 25, 2024

The expected output is that it should be successfully validated. Ill give you an example of both the json and the schema.

Schema

{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$id": "http://cyclonedx.org/schema/bom-1.3.schema.json",
    "type": "object",
    "title": "CycloneDX Software Bill-of-Material Specification",
    "$comment" : "CycloneDX JSON schema is published under the terms of the Apache License 2.0.",
    "required": [
      "bomFormat",
      "specVersion",
      "version"
    ],
    "additionalProperties": false,
    "properties": {
      "bomFormat": {
        "$id": "#/properties/bomFormat",
        "type": "string",
        "title": "BOM Format",
        "description": "Specifies the format of the BOM. This helps to identify the file as CycloneDX since BOMs do not have a filename convention nor does JSON schema support namespaces.",
        "enum": [
          "CycloneDX"
        ]
      },
      "specVersion": {
        "$id": "#/properties/specVersion",
        "type": "string",
        "title": "CycloneDX Specification Version",
        "description": "The version of the CycloneDX specification a BOM is written to (starting at version 1.2)",
        "examples": ["1.3"]
      },
      "serialNumber": {
        "$id": "#/properties/serialNumber",
        "type": "string",
        "title": "BOM Serial Number",
        "description": "Every BOM generated should have a unique serial number, even if the contents of the BOM being generated have not changed over time. The process or tool responsible for creating the BOM should create random UUID's for every BOM generated.",
        "examples": ["urn:uuid:3e671687-395b-41f5-a30f-a58921a69b79"],
        "pattern": "^urn:uuid:[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$"
      },
      "version": {
        "$id": "#/properties/version",
        "type": "integer",
        "title": "BOM Version",
        "description": "The version allows component publishers/authors to make changes to existing BOMs to update various aspects of the document such as description or licenses. When a system is presented with multiple BOMs for the same component, the system should use the most recent version of the BOM. The default version is '1' and should be incremented for each version of the BOM that is published. Each version of a component should have a unique BOM and if no changes are made to the BOMs, then each BOM will have a version of '1'.",
        "default": 1,
        "examples": [1]
      },
      "metadata": {
        "$id": "#/properties/metadata",
        "$ref": "#/definitions/metadata",
        "title": "BOM Metadata",
        "description": "Provides additional information about a BOM."
      },
      "components": {
        "$id": "#/properties/components",
        "type": "array",
        "items": {"$ref": "#/definitions/component"},
        "uniqueItems": true,
        "title": "Components"
      },
      "services": {
        "$id": "#/properties/services",
        "type": "array",
        "items": {"$ref": "#/definitions/service"},
        "uniqueItems": true,
        "title": "Services"
      },
      "externalReferences": {
        "$id": "#/properties/externalReferences",
        "type": "array",
        "items": {"$ref": "#/definitions/externalReference"},
        "title": "External References",
        "description": "External references provide a way to document systems, sites, and information that may be relevant but which are not included with the BOM."
      },
      "dependencies": {
        "$id": "#/properties/dependencies",
        "type": "array",
        "items": {"$ref": "#/definitions/dependency"},
        "uniqueItems": true,
        "title": "Dependencies",
        "description": "Provides the ability to document dependency relationships."
      },
      "compositions": {
        "$id": "#/properties/compositions",
        "type": "array",
        "items": {"$ref": "#/definitions/compositions"},
        "uniqueItems": true,
        "title": "Compositions",
        "description": "Compositions describe constituent parts (including components, services, and dependency relationships) and their completeness."
      }
    },
    "definitions": {
      "metadata": {
        "type": "object",
        "title": "BOM Metadata Object",
        "additionalProperties": false,
        "properties": {
          "timestamp": {
            "type": "string",
            "format": "date-time",
            "title": "Timestamp",
            "description": "The date and time (timestamp) when the document was created."
          },
          "tools": {
            "type": "array",
            "title": "Creation Tools",
            "description": "The tool(s) used in the creation of the BOM.",
            "items": {"$ref": "#/definitions/tool"}
          },
          "authors" :{
            "type": "array",
            "title": "Authors",
            "description": "The person(s) who created the BOM. Authors are common in BOMs created through manual processes. BOMs created through automated means may not have authors.",
            "items": {"$ref": "#/definitions/organizationalContact"}
          },
          "component": {
            "title": "Component",
            "description": "The component that the BOM describes.",
            "$ref": "#/definitions/component"
          },
          "manufacture": {
            "title": "Manufacture",
            "description": "The organization that manufactured the component that the BOM describes.",
            "$ref": "#/definitions/organizationalEntity"
          },
          "supplier": {
            "title": "Supplier",
            "description": " The organization that supplied the component that the BOM describes. The supplier may often be the manufacturer, but may also be a distributor or repackager.",
            "$ref": "#/definitions/organizationalEntity"
          },
          "licenses": {
            "type": "array",
            "title": "BOM License(s)",
            "items": {"$ref": "#/definitions/licenseChoice"}
          },
          "properties": {
            "type": "array",
            "title": "Properties",
            "description": "Provides the ability to document properties in a name-value store. This provides flexibility to include data not officially supported in the standard without having to use additional namespaces or create extensions. Unlike key-value stores, properties support duplicate names, each potentially having different values.",
            "items": {"$ref": "#/definitions/property"}
          }
        }
      },
      "tool": {
        "type": "object",
        "title": "Tool",
        "description": "The tool used to create the BOM.",
        "additionalProperties": false,
        "properties": {
          "vendor": {
            "type": "string",
            "title": "Tool Vendor",
            "description": "The date and time (timestamp) when the document was created."
          },
          "name": {
            "type": "string",
            "title": "Tool Name",
            "description": "The date and time (timestamp) when the document was created."
          },
          "version": {
            "type": "string",
            "title": "Tool Version",
            "description": "The date and time (timestamp) when the document was created."
          },
          "hashes": {
            "$id": "#/properties/hashes",
            "type": "array",
            "items": {"$ref": "#/definitions/hash"},
            "title": "Hashes",
            "description": "The hashes of the tool (if applicable)."
          }
        }
      },
      "organizationalEntity": {
        "type": "object",
        "title": "Organizational Entity Object",
        "description": "",
        "additionalProperties": false,
        "properties": {
          "name": {
            "type": "string",
            "title": "Name",
            "description": "The name of the organization",
            "examples": [
              "Example Inc."
            ]
          },
          "url": {
            "type": "array",
            "items": {
              "type": "string",
              "format": "iri-reference"
            },
            "title": "URL",
            "description": "The URL of the organization. Multiple URLs are allowed.",
            "examples": ["https://example.com"]
          },
          "contact": {
            "type": "array",
            "title": "Contact",
            "description": "A contact at the organization. Multiple contacts are allowed.",
            "items": {"$ref": "#/definitions/organizationalContact"}
          }
        }
      },
      "organizationalContact": {
        "type": "object",
        "title": "Organizational Contact Object",
        "description": "",
        "additionalProperties": false,
        "properties": {
          "name": {
            "type": "string",
            "title": "Name",
            "description": "The name of a contact",
            "examples": ["Contact name"]
          },
          "email": {
            "type": "string",
            "title": "Email Address",
            "description": "The email address of the contact.",
            "examples": ["[email protected]"]
          },
          "phone": {
            "type": "string",
            "title": "Phone",
            "description": "The phone number of the contact.",
            "examples": ["800-555-1212"]
          }
        }
      },
      "component": {
        "type": "object",
        "title": "Component Object",
        "required": [
          "type",
          "name",
          "version"
        ],
        "additionalProperties": false,
        "properties": {
          "type": {
            "type": "string",
            "enum": [
              "application",
              "framework",
              "library",
              "container",
              "operating-system",
              "device",
              "firmware",
              "file"
            ],
            "title": "Component Type",
            "description": "Specifies the type of component. For software components, classify as application if no more specific appropriate classification is available or cannot be determined for the component.",
            "examples": ["library"]
          },
          "mime-type": {
            "type": "string",
            "title": "Mime-Type",
            "description": "The optional mime-type of the component. When used on file components, the mime-type can provide additional context about the kind of file being represented such as an image, font, or executable. Some library or framework components may also have an associated mime-type.",
            "examples": ["image/jpeg"],
            "pattern": "^[-+a-z0-9.]+/[-+a-z0-9.]+$"
          },
          "bom-ref": {
            "type": "string",
            "title": "BOM Reference",
            "description": "An optional identifier which can be used to reference the component elsewhere in the BOM. Every bom-ref should be unique."
          },
          "supplier": {
            "title": "Component Supplier",
            "description": " The organization that supplied the component. The supplier may often be the manufacturer, but may also be a distributor or repackager.",
            "$ref": "#/definitions/organizationalEntity"
          },
          "author": {
            "type": "string",
            "title": "Component Author",
            "description": "The person(s) or organization(s) that authored the component",
            "examples": ["Acme Inc"]
          },
          "publisher": {
            "type": "string",
            "title": "Component Publisher",
            "description": "The person(s) or organization(s) that published the component",
            "examples": ["Acme Inc"]
          },
          "group": {
            "type": "string",
            "title": "Component Group",
            "description": "The grouping name or identifier. This will often be a shortened, single name of the company or project that produced the component, or the source package or domain name. Whitespace and special characters should be avoided. Examples include: apache, org.apache.commons, and apache.org.",
            "examples": ["com.acme"]
          },
          "name": {
            "type": "string",
            "title": "Component Name",
            "description": "The name of the component. This will often be a shortened, single name of the component. Examples: commons-lang3 and jquery",
            "examples": ["tomcat-catalina"]
          },
          "version": {
            "type": "string",
            "title": "Component Version",
            "description": "The component version. The version should ideally comply with semantic versioning but is not enforced.",
            "examples": ["9.0.14"]
          },
          "description": {
            "type": "string",
            "title": "Component Description",
            "description": "Specifies a description for the component"
          },
          "scope": {
            "type": "string",
            "enum": [
              "required",
              "optional",
              "excluded"
            ],
            "title": "Component Scope",
            "description": "Specifies the scope of the component. If scope is not specified, 'required' scope should be assumed by the consumer of the BOM",
            "default": "required"
          },
          "hashes": {
            "type": "array",
            "title": "Component Hashes",
            "items": {"$ref": "#/definitions/hash"}
          },
          "licenses": {
            "type": "array",
            "items": {"$ref": "#/definitions/licenseChoice"},
            "title": "Component License(s)"
          },
          "copyright": {
            "type": "string",
            "title": "Component Copyright",
            "description": "An optional copyright notice informing users of the underlying claims to copyright ownership in a published work.",
            "examples": ["Acme Inc"]
          },
          "cpe": {
            "type": "string",
            "title": "Component Common Platform Enumeration (CPE)",
            "description": "DEPRECATED - DO NOT USE. This will be removed in a future version. Specifies a well-formed CPE name. See https://nvd.nist.gov/products/cpe",
            "examples": ["cpe:2.3:a:acme:component_framework:-:*:*:*:*:*:*:*"]
          },
          "purl": {
            "type": "string",
            "title": "Component Package URL (purl)",
            "examples": ["pkg:maven/com.acme/[email protected]?packaging=jar"]
          },
          "swid": {
            "$ref": "#/definitions/swid",
            "title": "SWID Tag",
            "description": "Specifies metadata and content for ISO-IEC 19770-2 Software Identification (SWID) Tags."
          },
          "modified": {
            "type": "boolean",
            "title": "Component Modified From Original",
            "description": "DEPRECATED - DO NOT USE. This will be removed in a future version. Use the pedigree element instead to supply information on exactly how the component was modified. A boolean value indicating is the component has been modified from the original. A value of true indicates the component is a derivative of the original. A value of false indicates the component has not been modified from the original."
          },
          "pedigree": {
            "type": "object",
            "title": "Component Pedigree",
            "description": "Component pedigree is a way to document complex supply chain scenarios where components are created, distributed, modified, redistributed, combined with other components, etc. Pedigree supports viewing this complex chain from the beginning, the end, or anywhere in the middle. It also provides a way to document variants where the exact relation may not be known.",
            "additionalProperties": false,
            "properties": {
              "ancestors": {
                "type": "array",
                "title": "Ancestors",
                "description": "Describes zero or more components in which a component is derived from. This is commonly used to describe forks from existing projects where the forked version contains a ancestor node containing the original component it was forked from. For example, Component A is the original component. Component B is the component being used and documented in the BOM. However, Component B contains a pedigree node with a single ancestor documenting Component A - the original component from which Component B is derived from.",
                "items": {"$ref": "#/definitions/component"}
              },
              "descendants": {
                "type": "array",
                "title": "Descendants",
                "description": "Descendants are the exact opposite of ancestors. This provides a way to document all forks (and their forks) of an original or root component.",
                "items": {"$ref": "#/definitions/component"}
              },
              "variants": {
                "type": "array",
                "title": "Variants",
                "description": "Variants describe relations where the relationship between the components are not known. For example, if Component A contains nearly identical code to Component B. They are both related, but it is unclear if one is derived from the other, or if they share a common ancestor.",
                "items": {"$ref": "#/definitions/component"}
              },
              "commits": {
                "type": "array",
                "title": "Commits",
                "description": "A list of zero or more commits which provide a trail describing how the component deviates from an ancestor, descendant, or variant.",
                "items": {"$ref": "#/definitions/commit"}
              },
              "patches": {
                "type": "array",
                "title": "Patches",
                "description": ">A list of zero or more patches describing how the component deviates from an ancestor, descendant, or variant. Patches may be complimentary to commits or may be used in place of commits.",
                "items": {"$ref": "#/definitions/patch"}
              },
              "notes": {
                "type": "string",
                "title": "Notes",
                "description": "Notes, observations, and other non-structured commentary describing the components pedigree."
              }
            }
          },
          "externalReferences": {
            "type": "array",
            "items": {"$ref": "#/definitions/externalReference"},
            "title": "External References"
          },
          "components": {
            "$id": "#/properties/components",
            "type": "array",
            "items": {"$ref": "#/definitions/component"},
            "uniqueItems": true,
            "title": "Components"
          },
          "evidence": {
            "$ref": "#/definitions/componentEvidence",
            "title": "Evidence",
            "description": "Provides the ability to document evidence collected through various forms of extraction or analysis."
          },
          "properties": {
            "type": "array",
            "title": "Properties",
            "description": "Provides the ability to document properties in a name-value store. This provides flexibility to include data not officially supported in the standard without having to use additional namespaces or create extensions. Unlike key-value stores, properties support duplicate names, each potentially having different values.",
            "items": {"$ref": "#/definitions/property"}
          }
        }
      },
      "swid": {
        "type": "object",
        "title": "SWID Tag",
        "description": "Specifies metadata and content for ISO-IEC 19770-2 Software Identification (SWID) Tags.",
        "required": [
          "tagId",
          "name"
        ],
        "additionalProperties": false,
        "properties": {
          "tagId": {
            "type": "string",
            "title": "Tag ID",
            "description": "Maps to the tagId of a SoftwareIdentity."
          },
          "name": {
            "type": "string",
            "title": "Name",
            "description": "Maps to the name of a SoftwareIdentity."
          },
          "version": {
            "type": "string",
            "title": "Version",
            "default": "0.0",
            "description": "Maps to the version of a SoftwareIdentity."
          },
          "tagVersion": {
            "type": "integer",
            "title": "Tag Version",
            "default": 0,
            "description": "Maps to the tagVersion of a SoftwareIdentity."
          },
          "patch": {
            "type": "boolean",
            "title": "Patch",
            "default": false,
            "description": "Maps to the patch of a SoftwareIdentity."
          },
          "text": {
            "title": "Attachment text",
            "description": "Specifies the metadata and content of the SWID tag.",
            "$ref": "#/definitions/attachment"
          },
          "url": {
            "type": "string",
            "title": "URL",
            "description": "The URL to the SWID file.",
            "format": "iri-reference"
          }
        }
      },
      "attachment": {
        "type": "object",
        "title": "Attachment",
        "description": "Specifies the metadata and content for an attachment.",
        "required": [
          "content"
        ],
        "additionalProperties": false,
        "properties": {
          "contentType": {
            "type": "string",
            "title": "Content-Type",
            "description": "Specifies the content type of the text. Defaults to text/plain if not specified.",
            "default": "text/plain"
          },
          "encoding": {
            "type": "string",
            "title": "Encoding",
            "description": "Specifies the optional encoding the text is represented in.",
            "enum": [
              "base64"
            ]
          },
          "content": {
            "type": "string",
            "title": "Attachment Text",
            "description": "The attachment data"
          }
        }
      },
      "hash": {
        "type": "object",
        "title": "Hash Objects",
        "required": [
          "alg",
          "content"
        ],
        "additionalProperties": false,
        "properties": {
          "alg": {
            "$ref": "#/definitions/hash-alg"
          },
          "content": {
            "$ref": "#/definitions/hash-content"
          }
        }
      },
      "hash-alg": {
        "type": "string",
        "enum": [
          "MD5",
          "SHA-1",
          "SHA-256",
          "SHA-384",
          "SHA-512",
          "SHA3-256",
          "SHA3-384",
          "SHA3-512",
          "BLAKE2b-256",
          "BLAKE2b-384",
          "BLAKE2b-512",
          "BLAKE3"
        ],
        "title": "Hash Algorithm"
      },
      "hash-content": {
        "type": "string",
        "title": "Hash Content (value)",
        "examples": ["3942447fac867ae5cdb3229b658f4d48"],
        "pattern": "^([a-fA-F0-9]{32}|[a-fA-F0-9]{40}|[a-fA-F0-9]{64}|[a-fA-F0-9]{96}|[a-fA-F0-9]{128})$"
      },
      "license": {
        "type": "object",
        "title": "License Object",
        "oneOf": [
          {
            "required": ["id"]
          },
          {
            "required": ["name"]
          }
        ],
        "additionalProperties": false,
        "properties": {
          "name": {
            "type": "string",
            "title": "License Name",
            "description": "If SPDX does not define the license used, this field may be used to provide the license name",
            "examples": ["Acme Software License"]
          },
          "text": {
            "title": "License text",
            "description": "An optional way to include the textual content of a license.",
            "$ref": "#/definitions/attachment"
          },
          "url": {
            "type": "string",
            "title": "License URL",
            "description": "The URL to the license file. If specified, a 'license' externalReference should also be specified for completeness",
            "examples": ["https://www.apache.org/licenses/LICENSE-2.0.txt"],
            "format": "iri-reference"
          }
        }
      },
      "licenseChoice": {
        "type": "object",
        "title": "License(s)",
        "additionalProperties": false,
        "properties": {
          "license": {
            "$ref": "#/definitions/license"
          },
          "expression": {
            "type": "string",
            "title": "SPDX License Expression",
            "examples": [
              "Apache-2.0 AND (MIT OR GPL-2.0-only)",
              "GPL-3.0-only WITH Classpath-exception-2.0"
            ]
          }
        },
        "oneOf":[
          {
            "required": ["license"]
          },
          {
            "required": ["expression"]
          }
        ]
      },
      "commit": {
        "type": "object",
        "title": "Commit",
        "description": "Specifies an individual commit",
        "additionalProperties": false,
        "properties": {
          "uid": {
            "type": "string",
            "title": "UID",
            "description": "A unique identifier of the commit. This may be version control specific. For example, Subversion uses revision numbers whereas git uses commit hashes."
          },
          "url": {
            "type": "string",
            "title": "URL",
            "description": "The URL to the commit. This URL will typically point to a commit in a version control system.",
            "format": "iri-reference"
          },
          "author": {
            "title": "Author",
            "description": "The author who created the changes in the commit",
            "$ref": "#/definitions/identifiableAction"
          },
          "committer": {
            "title": "Committer",
            "description": "The person who committed or pushed the commit",
            "$ref": "#/definitions/identifiableAction"
          },
          "message": {
            "type": "string",
            "title": "Message",
            "description": "The text description of the contents of the commit"
          }
        }
      },
      "patch": {
        "type": "object",
        "title": "Patch",
        "description": "Specifies an individual patch",
        "required": [
          "type"
        ],
        "additionalProperties": false,
        "properties": {
          "type": {
            "type": "string",
            "enum": [
              "unofficial",
              "monkey",
              "backport",
              "cherry-pick"
            ],
            "title": "Type",
            "description": "Specifies the purpose for the patch including the resolution of defects, security issues, or new behavior or functionality"
          },
          "diff": {
            "title": "Diff",
            "description": "The patch file (or diff) that show changes. Refer to https://en.wikipedia.org/wiki/Diff",
            "$ref": "#/definitions/diff"
          },
          "resolves": {
            "type": "array",
            "items": {"$ref": "#/definitions/issue"},
            "title": "Resolves",
            "description": "A collection of issues the patch resolves"
          }
        }
      },
      "diff": {
        "type": "object",
        "title": "Diff",
        "description": "The patch file (or diff) that show changes. Refer to https://en.wikipedia.org/wiki/Diff",
        "additionalProperties": false,
        "properties": {
          "text": {
            "title": "Diff text",
            "description": "Specifies the optional text of the diff",
            "$ref": "#/definitions/attachment"
          },
          "url": {
            "type": "string",
            "title": "URL",
            "description": "Specifies the URL to the diff",
            "format": "iri-reference"
          }
        }
      },
      "issue": {
        "type": "object",
        "title": "Diff",
        "description": "The patch file (or diff) that show changes. Refer to https://en.wikipedia.org/wiki/Diff",
        "required": [
          "type"
        ],
        "additionalProperties": false,
        "properties": {
          "type": {
            "type": "string",
            "enum": [
              "defect",
              "enhancement",
              "security"
            ],
            "title": "Type",
            "description": "Specifies the type of issue"
          },
          "id": {
            "type": "string",
            "title": "ID",
            "description": "The identifier of the issue assigned by the source of the issue"
          },
          "name": {
            "type": "string",
            "title": "Name",
            "description": "The name of the issue"
          },
          "description": {
            "type": "string",
            "title": "Description",
            "description": "A description of the issue"
          },
          "source": {
            "type": "object",
            "title": "Source",
            "description": "The source of the issue where it is documented",
            "additionalProperties": false,
            "properties": {
              "name": {
                "type": "string",
                "title": "Name",
                "description": "The name of the source. For example 'National Vulnerability Database', 'NVD', and 'Apache'"
              },
              "url": {
                "type": "string",
                "title": "URL",
                "description": "The url of the issue documentation as provided by the source",
                "format": "iri-reference"
              }
            }
          },
          "references": {
            "type": "array",
            "items": {
              "type": "string",
              "format": "iri-reference"
            },
            "title": "References",
            "description": "A collection of URL's for reference. Multiple URLs are allowed.",
            "examples": ["https://example.com"]
          }
        }
      },
      "identifiableAction": {
        "type": "object",
        "title": "Identifiable Action",
        "description": "Specifies an individual commit",
        "additionalProperties": false,
        "properties": {
          "timestamp": {
            "type": "string",
            "format": "date-time",
            "title": "Timestamp",
            "description": "The timestamp in which the action occurred"
          },
          "name": {
            "type": "string",
            "title": "Name",
            "description": "The name of the individual who performed the action"
          },
          "email": {
            "type": "string",
            "format": "idn-email",
            "title": "E-mail",
            "description": "The email address of the individual who performed the action"
          }
        }
      },
      "externalReference": {
        "type": "object",
        "title": "External Reference",
        "description": "Specifies an individual external reference",
        "required": [
          "url",
          "type"
        ],
        "additionalProperties": false,
        "properties": {
          "url": {
            "type": "string",
            "title": "URL",
            "description": "The URL to the external reference",
            "format": "iri-reference"
          },
          "comment": {
            "type": "string",
            "title": "Comment",
            "description": "An optional comment describing the external reference"
          },
          "type": {
            "type": "string",
            "title": "Type",
            "description": "Specifies the type of external reference. There are built-in types to describe common references. If a type does not exist for the reference being referred to, use the \"other\" type.",
            "enum": [
              "vcs",
              "issue-tracker",
              "website",
              "advisories",
              "bom",
              "mailing-list",
              "social",
              "chat",
              "documentation",
              "support",
              "distribution",
              "license",
              "build-meta",
              "build-system",
              "other"
            ]
          },
          "hashes": {
            "$id": "#/properties/hashes",
            "type": "array",
            "items": {"$ref": "#/definitions/hash"},
            "title": "Hashes",
            "description": "The hashes of the external reference (if applicable)."
          }
        }
      },
      "dependency": {
        "type": "object",
        "title": "Dependency",
        "description": "Defines the direct dependencies of a component. Components that do not have their own dependencies MUST be declared as empty elements within the graph. Components that are not represented in the dependency graph MAY have unknown dependencies. It is RECOMMENDED that implementations assume this to be opaque and not an indicator of a component being dependency-free.",
        "required": [
          "ref"
        ],
        "additionalProperties": false,
        "properties": {
          "ref": {
            "type": "string",
            "title": "Reference",
            "description": "References a component by the components bom-ref attribute"
          },
          "dependsOn": {
            "type": "array",
            "uniqueItems": true,
            "items": {
              "type": "string"
            },
            "title": "Depends On",
            "description": "The bom-ref identifiers of the components that are dependencies of this dependency object."
          }
        }
      },
      "service": {
        "type": "object",
        "title": "Service Object",
        "required": [
          "name"
        ],
        "additionalProperties": false,
        "properties": {
          "bom-ref": {
            "type": "string",
            "title": "BOM Reference",
            "description": "An optional identifier which can be used to reference the service elsewhere in the BOM. Every bom-ref should be unique."
          },
          "provider": {
            "title": "Provider",
            "description": "The organization that provides the service.",
            "$ref": "#/definitions/organizationalEntity"
          },
          "group": {
            "type": "string",
            "title": "Service Group",
            "description": "The grouping name, namespace, or identifier. This will often be a shortened, single name of the company or project that produced the service or domain name. Whitespace and special characters should be avoided.",
            "examples": ["com.acme"]
          },
          "name": {
            "type": "string",
            "title": "Service Name",
            "description": "The name of the service. This will often be a shortened, single name of the service.",
            "examples": ["ticker-service"]
          },
          "version": {
            "type": "string",
            "title": "Service Version",
            "description": "The service version.",
            "examples": ["1.0.0"]
          },
          "description": {
            "type": "string",
            "title": "Service Description",
            "description": "Specifies a description for the service"
          },
          "endpoints": {
            "type": "array",
            "items": {
              "type": "string",
              "format": "iri-reference"
            },
            "title": "Endpoints",
            "description": "The endpoint URIs of the service. Multiple endpoints are allowed.",
            "examples": ["https://example.com/api/v1/ticker"]
          },
          "authenticated": {
            "type": "boolean",
            "title": "Authentication Required",
            "description": "A boolean value indicating if the service requires authentication. A value of true indicates the service requires authentication prior to use. A value of false indicates the service does not require authentication."
          },
          "x-trust-boundary": {
            "type": "boolean",
            "title": "Crosses Trust Boundary",
            "description": "A boolean value indicating if use of the service crosses a trust zone or boundary. A value of true indicates that by using the service, a trust boundary is crossed. A value of false indicates that by using the service, a trust boundary is not crossed."
          },
          "data": {
            "type": "array",
            "items": {"$ref": "#/definitions/dataClassification"},
            "title": "Data Classification",
            "description": "Specifies the data classification."
          },
          "licenses": {
            "type": "array",
            "items": {"$ref": "#/definitions/licenseChoice"},
            "title": "Component License(s)"
          },
          "externalReferences": {
            "type": "array",
            "items": {"$ref": "#/definitions/externalReference"},
            "title": "External References"
          },
          "services": {
            "$id": "#/properties/services",
            "type": "array",
            "items": {"$ref": "#/definitions/service"},
            "uniqueItems": true,
            "title": "Services"
          },
          "properties": {
            "type": "array",
            "title": "Properties",
            "description": "Provides the ability to document properties in a name-value store. This provides flexibility to include data not officially supported in the standard without having to use additional namespaces or create extensions. Unlike key-value stores, properties support duplicate names, each potentially having different values.",
            "items": {"$ref": "#/definitions/property"}
          }
        }
      },
      "dataClassification": {
        "type": "object",
        "title": "Hash Objects",
        "required": [
          "flow",
          "classification"
        ],
        "additionalProperties": false,
        "properties": {
          "flow": {
            "$ref": "#/definitions/dataFlow"
          },
          "classification": {
            "type": "string"
          }
        }
      },
      "dataFlow": {
        "type": "string",
        "enum": [
          "inbound",
          "outbound",
          "bi-directional",
          "unknown"
        ],
        "title": "Data flow direction"
      },
  
      "copyright": {
        "type": "object",
        "title": "Copyright",
        "required": [
          "text"
        ],
        "additionalProperties": false,
        "properties": {
          "text": {
            "type": "string",
            "title": "Copyright Text"
          }
        }
      },
  
      "componentEvidence": {
        "type": "object",
        "title": "Evidence",
        "description": "Provides the ability to document evidence collected through various forms of extraction or analysis.",
        "additionalProperties": false,
        "properties": {
          "licenses": {
            "type": "array",
            "items": {"$ref": "#/definitions/licenseChoice"},
            "title": "Component License(s)"
          },
          "copyright": {
            "type": "array",
            "items": {"$ref": "#/definitions/copyright"},
            "title": "Copyright"
          }
        }
      },
      "compositions": {
        "type": "object",
        "title": "Compositions",
        "required": [
          "aggregate"
        ],
        "additionalProperties": false,
        "properties": {
          "aggregate": {
            "$ref": "#/definitions/aggregateType",
            "title": "Aggregate",
            "description": "Specifies an aggregate type that describe how complete a relationship is."
          },
          "assemblies": {
            "type": "array",
            "uniqueItems": true,
            "items": {
              "type": "string"
            },
            "title": "BOM references",
            "description": "The bom-ref identifiers of the components or services being described. Assemblies refer to nested relationships whereby a constituent part may include other constituent parts. References do not cascade to child parts. References are explicit for the specified constituent part only."
          },
          "dependencies": {
            "type": "array",
            "uniqueItems": true,
            "items": {
              "type": "string"
            },
            "title": "BOM references",
            "description": "The bom-ref identifiers of the components or services being described. Dependencies refer to a relationship whereby an independent constituent part requires another independent constituent part. References do not cascade to transitive dependencies. References are explicit for the specified dependency only."
          }
        }
      },
      "aggregateType": {
        "type": "string",
        "default": "not_specified",
        "enum": [
          "complete",
          "incomplete",
          "incomplete_first_party_only",
          "incomplete_third_party_only",
          "unknown",
          "not_specified"
        ]
      },
      "property": {
        "type": "object",
        "title": "Lightweight name-value pair",
        "properties": {
          "name": {
            "type": "string",
            "title": "Name",
            "description": "The name of the property. Duplicate names are allowed, each potentially having a different value."
          },
          "value": {
            "type": "string",
            "title": "Value",
            "description": "The value of the property."
          }
        }
      }
    }
  }

from jsonschema.

makdataproj avatar makdataproj commented on May 25, 2024

JSON:

{
"bomFormat":"CycloneDX",
"specVersion":"1.3",
"serialNumber":"urn:uuid:185978ef-18d7-421b-add9-03fa1eef2e08",
"version":1,
"metadata":{
"timestamp":"2022-02-22T12:36:04Z",
"tools":[
{
"vendor":"Fortress Information Security",
"name":"Fortress Labs"
}
],
"component":{
"type":"library",
"bom-ref":"pkg:maven/org.apache.logging.log4j/[email protected]",
"group":"org.apache.logging.log4j",
"name":"log4j",
"version":"2.17.1",
"description":"Apache Log4j 2 is an upgrade to Log4j that provides significant improvements over its predecessor, Log4j 1.x, and provides many of the improvements available in Logback while fixing some inherent problems in Logback's architecture.",
"hashes":[
{
"alg":"SHA-256",
"content":"EC6E1A60465C5A9B63518CCF8F779212B127025E20454E8E3EA6963E1310F65F"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0",
"url":"http://www.apache.org/licenses/LICENSE-2.0"
}
}
],
"purl":"pkg:maven/org.apache.logging.log4j/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/apache/logging-log4j2"
},
{
"type":"issue-tracker",
"url":"https://issues.apache.org/jira/browse/LOG4J2"
},
{
"type":"website",
"url":"https://logging.apache.org/log4j/2.x/index.html"
},
{
"type":"distribution",
"url":"https://logging.apache.org/log4j/2.x/download.html"
}
]
}
},
"components":[
{
"type":"library",
"bom-ref":"pkg:maven/org.apache.logging.log4j/[email protected]",
"publisher":"The Apache Software Foundation",
"group":"org.apache.logging.log4j",
"name":"log4j-api",
"version":"2.17.1",
"description":"The Apache Log4J API",
"hashes":[
{
"alg":"SHA-256",
"content":"B0D8A4C8AB4FB8B1888D0095822703B0E6D4793C419550203DA9E69196161DE4"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.apache.logging.log4j/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/apache/logging-log4j2/tree/release-2.x/log4j-api"
},
{
"type":"distribution",
"url":"https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-api/"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.apache.logging.log4j/[email protected]",
"publisher":"The Apache Software Foundation",
"group":"org.apache.logging.log4j",
"name":"log4j-core",
"version":"2.17.1",
"description":"The Apache Log4j Implementation",
"hashes":[
{
"alg":"SHA-256",
"content":"C967F223487980B9364E94A7C7F9A8A01FD3EE7C19BDBF0B0F9F8CB8511F3D41"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.apache.logging.log4j/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/apache/logging-log4j2/tree/release-2.x/log4j-core"
},
{
"type":"distribution",
"url":"https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-core/"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.apache.logging.log4j/[email protected]",
"publisher":"The Apache Software Foundation",
"group":"org.apache.logging.log4j",
"name":"log4j-layout-template-json",
"version":"2.17.1",
"description":"Apache Log4j Layout for JSON template.",
"hashes":[
{
"alg":"SHA-256",
"content":"3BB8B7442AB67B222968ADD9EF044FBE3CAB800A1BE9B9B98504BC6923376EB7"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.apache.logging.log4j/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/apache/logging-log4j2/tree/release-2.x/log4j-layout-template-json"
},
{
"type":"distribution",
"url":"https://search.maven.org/artifact/org.apache.logging.log4j/log4j-layout-template-json/2.17.1/jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.apache.logging.log4j/[email protected]",
"publisher":"The Apache Software Foundation",
"group":"org.apache.logging.log4j",
"name":"log4j-1.2-api",
"version":"2.17.1",
"description":"The Apache Log4j 1.x Compatibility API",
"hashes":[
{
"alg":"SHA-256",
"content":"CA3E9150F95C31D15B9680A609B8817F8549BD395591C5CA55957D1EF0F464D6"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.apache.logging.log4j/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/apache/logging-log4j2/tree/release-2.x/log4j-1.2-api"
},
{
"type":"distribution",
"url":"https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-1.2-api/"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.apache.logging.log4j/[email protected]",
"publisher":"The Apache Software Foundation",
"group":"org.apache.logging.log4j",
"name":"log4j-jcl",
"version":"2.17.1",
"description":"The Apache Log4j Commons Logging Adapter",
"hashes":[
{
"alg":"SHA-256",
"content":"1CBEC979D2F6E545CED9829BDB8901FCB8F5AF1ABFAC313CDB5A7A642FC921AD"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.apache.logging.log4j/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/apache/logging-log4j2/tree/release-2.x/log4j-jcl"
},
{
"type":"distribution",
"url":"https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-jcl/"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.apache.logging.log4j/[email protected]",
"publisher":"The Apache Software Foundation",
"group":"org.apache.logging.log4j",
"name":"log4j-flume-ng",
"version":"2.17.1",
"description":"The Apache Log4j Flume Appender",
"hashes":[
{
"alg":"SHA-256",
"content":"6CA95B8EA91E2CA91D327A0F6F3C6BC4AE640C85B02E023CCAF2F35D1F84C347"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.apache.logging.log4j/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/apache/logging-log4j2/tree/release-2.x/log4j-flume-ng"
},
{
"type":"distribution",
"url":"https://search.maven.org/artifact/org.apache.logging.log4j/log4j-flume-ng/2.17.1/jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.apache.logging.log4j/[email protected]",
"publisher":"The Apache Software Foundation",
"group":"org.apache.logging.log4j",
"name":"log4j-taglib",
"version":"2.17.1",
"description":"The Apache Log4j Tag Library for Web Applications",
"hashes":[
{
"alg":"SHA-256",
"content":"7220D6FB76EBEE867EB7A6B3DAA249DBF617E96A90FB253885548DEEB4F1C408"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.apache.logging.log4j/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/apache/logging-log4j2/tree/release-2.x/log4j-taglib"
},
{
"type":"distribution",
"url":"https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-taglib/"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.apache.logging.log4j/[email protected]",
"publisher":"The Apache Software Foundation",
"group":"org.apache.logging.log4j",
"name":"log4j-jmx-gui",
"version":"2.17.1",
"description":"The Apache Log4j Swing-based client for remotely editing the log4j configuration and remotely monitoring StatusLogger output. Includes a JConsole plug-in.",
"hashes":[
{
"alg":"SHA-256",
"content":"BEF94667CCC4F85633AE725ABA1AF0300D0CCFB2BDA9B057DB0125A9920B9D42"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.apache.logging.log4j/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/apache/logging-log4j2/tree/release-2.x/log4j-jmx-gui"
},
{
"type":"distribution",
"url":"https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-jmx-gui/"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.apache.logging.log4j/[email protected]",
"publisher":"The Apache Software Foundation",
"group":"org.apache.logging.log4j",
"name":"log4j-slf4j-impl",
"version":"2.17.1",
"description":"The Apache Log4j SLF4J API binding to Log4j 2 Core",
"hashes":[
{
"alg":"SHA-256",
"content":"E9A03720E5D5076009C2530635DA9D08485E28A0B0EC20708DADC51AFB78E41E"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.apache.logging.log4j/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/apache/logging-log4j2/tree/release-2.x/log4j-slf4j-impl"
},
{
"type":"distribution",
"url":"https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-slf4j-impl/"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.apache.logging.log4j/[email protected]",
"publisher":"The Apache Software Foundation",
"group":"org.apache.logging.log4j",
"name":"log4j-slf4j18-impl",
"version":"2.17.1",
"description":"The Apache Log4j SLF4J 1.8 API binding to Log4j 2 Core",
"hashes":[
{
"alg":"SHA-256",
"content":"14C181AD9C914759EE8A31D0A6B43E3BC9B8F1C455E339BDC9E42A1A1EC9A2D5"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.apache.logging.log4j/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-slf4j18-impl/"
},
{
"type":"distribution",
"url":"https://github.com/apache/logging-log4j2/tree/release-2.x/log4j-slf4j18-impl"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.apache.logging.log4j/[email protected]",
"publisher":"The Apache Software Foundation",
"group":"org.apache.logging.log4j",
"name":"log4j-to-slf4j",
"version":"2.17.1",
"description":"The Apache Log4j binding between the Log4j 2 API and SLF4J",
"hashes":[
{
"alg":"SHA-256",
"content":"33CBCBADA95D7597FF98FE0EFA0BCF3D6F71B1D0E4177146DC67858D7BE3F639"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.apache.logging.log4j/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/apache/logging-log4j2/tree/release-2.x/log4j-to-slf4j"
},
{
"type":"distribution",
"url":"https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-to-slf4j/"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.apache.logging.log4j/[email protected]",
"publisher":"The Apache Software Foundation",
"group":"org.apache.logging.log4j",
"name":"log4j-appserver",
"version":"2.17.1",
"description":"Provide Log4j as the logging implementation for application servers",
"hashes":[
{
"alg":"SHA-256",
"content":"D5662C6410B61E296C930776AFFF68A41C026BA59659C8719BDC64CA753C0D66"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.apache.logging.log4j/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/apache/logging-log4j2/tree/release-2.x/log4j-appserver"
},
{
"type":"distribution",
"url":"https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-appserver/"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.apache.logging.log4j/[email protected]",
"publisher":"The Apache Software Foundation",
"group":"org.apache.logging.log4j",
"name":"log4j-web",
"version":"2.17.1",
"description":"The Apache Log4j support for web servlet containers",
"hashes":[
{
"alg":"SHA-256",
"content":"E47DC45C7761666EC22721EAEB0337D0A2C80A458A5E1D092C1F2E237870AC30"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.apache.logging.log4j/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/apache/logging-log4j2/tree/release-2.x/log4j-web"
},
{
"type":"distribution",
"url":"https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-web/"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.apache.logging.log4j/[email protected]",
"publisher":"The Apache Software Foundation",
"group":"org.apache.logging.log4j",
"name":"log4j-couchdb",
"version":"2.17.1",
"description":"CouchDB appender for Log4j.",
"hashes":[
{
"alg":"SHA-256",
"content":"CB1DA07BDCFF10C9ADDF55996193A77DAE3B261027100EEA61F2B9AD12A59A3B"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.apache.logging.log4j/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/apache/logging-log4j2/tree/release-2.x/log4j-couchdb"
},
{
"type":"distribution",
"url":"https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-couchdb/"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.apache.logging.log4j/[email protected]",
"publisher":"The Apache Software Foundation",
"group":"org.apache.logging.log4j",
"name":"log4j-mongodb4",
"version":"2.17.1",
"description":"MongoDB appender for Log4j using the MongoDB 4 driver API.",
"hashes":[
{
"alg":"SHA-256",
"content":"0CBA03C2489A9B0440505127318098320AAE5C4885FB6A2F14C45676A9DDF6EE"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.apache.logging.log4j/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/apache/logging-log4j2/tree/release-2.x/log4j-mongodb4"
},
{
"type":"distribution",
"url":"https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-mongodb4/"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.apache.logging.log4j/[email protected]",
"publisher":"The Apache Software Foundation",
"group":"org.apache.logging.log4j",
"name":"log4j-mongodb3",
"version":"2.17.1",
"description":"MongoDB appender for Log4j using the MongoDB 3 driver API.",
"hashes":[
{
"alg":"SHA-256",
"content":"E467A84013B7E510DF7ACA52C89B56794AEAA320C233D995F75851DB517ACADC"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.apache.logging.log4j/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/apache/logging-log4j2/tree/release-2.x/log4j-mongodb3"
},
{
"type":"distribution",
"url":"https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-mongodb3/"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.apache.logging.log4j/[email protected]",
"publisher":"The Apache Software Foundation",
"group":"org.apache.logging.log4j",
"name":"log4j-cassandra",
"version":"2.17.1",
"description":"Cassandra appender for Log4j.",
"hashes":[
{
"alg":"SHA-256",
"content":"7E2F5DA28A62D63F71CEE5B6A3BD31E1DA6D17EC5E0091B30734FD28ED1F4C4B"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.apache.logging.log4j/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/apache/logging-log4j2/tree/release-2.x/log4j-cassandra"
},
{
"type":"distribution",
"url":"https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-cassandra/"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.apache.logging.log4j/[email protected]",
"publisher":"The Apache Software Foundation",
"group":"org.apache.logging.log4j",
"name":"log4j-jpa",
"version":"2.17.1",
"description":"Apache Log4j Java Persistence API Appender.",
"hashes":[
{
"alg":"SHA-256",
"content":"93BC7CE516E4BE3912AA8EC6682208CD3A3984AE600C3468BDF8FEF27B2DA506"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.apache.logging.log4j/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/apache/logging-log4j2/tree/release-2.x/log4j-jpa"
},
{
"type":"distribution",
"url":"https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-jpa/"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.apache.logging.log4j/[email protected]",
"publisher":"The Apache Software Foundation",
"group":"org.apache.logging.log4j",
"name":"log4j-iostreams",
"version":"2.17.1",
"description":"The Apache Log4j streams to log event converters",
"hashes":[
{
"alg":"SHA-256",
"content":"0486A21355E1ACE51EAC0020ECBD7219B4AAB1F0562330A8E9E6AE2248E43A1F"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.apache.logging.log4j/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/apache/logging-log4j2/tree/release-2.x/log4j-iostreams"
},
{
"type":"distribution",
"url":"https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-iostreams/"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.apache.logging.log4j/[email protected]",
"publisher":"The Apache Software Foundation",
"group":"org.apache.logging.log4j",
"name":"log4j-jul",
"version":"2.17.1",
"description":"The Apache Log4j implementation of java.util.logging",
"hashes":[
{
"alg":"SHA-256",
"content":"B0BC5EEEF841D4C22E0D7900D8545DA7B1DAA102B930483EED0459344816374F"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.apache.logging.log4j/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/apache/logging-log4j2/tree/release-2.x/log4j-jul"
},
{
"type":"distribution",
"url":"https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-jul/"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.apache.logging.log4j/[email protected]",
"publisher":"The Apache Software Foundation",
"group":"org.apache.logging.log4j",
"name":"log4j-jpl",
"version":"2.17.1",
"description":"The Apache Log4j implementation of java.lang.System.LoggerFinder",
"hashes":[
{
"alg":"SHA-256",
"content":"14E1484B9053843068CB74B936103E314B36A3D15A1F74570119B5DCEB0BB8EE"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.apache.logging.log4j/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/apache/logging-log4j2/tree/release-2.x/log4j-jpl"
},
{
"type":"distribution",
"url":"https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-jpl/"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.apache.logging.log4j/[email protected]",
"publisher":"The Apache Software Foundation",
"group":"org.apache.logging.log4j",
"name":"log4j-liquibase",
"version":"2.17.1",
"description":"The Apache Log4j Liquibase binding to Log4j 2 Core",
"hashes":[
{
"alg":"SHA-256",
"content":"B08244AE52582EE314C66C5765102D9EC9024E6F9419EA129BBD59CB3E0A9216"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.apache.logging.log4j/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/apache/logging-log4j2/tree/release-2.x/log4j-liquibase"
},
{
"type":"distribution",
"url":"https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-liquibase/"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.apache.logging.log4j/[email protected]",
"publisher":"The Apache Software Foundation",
"group":"org.apache.logging.log4j",
"name":"log4j-docker",
"version":"2.17.1",
"description":"Apache Log4j Docker Support",
"hashes":[
{
"alg":"SHA-256",
"content":"D8FB3195580F79BC6ABA30288329A36DDA9C421EFD4FB2A532F97AC77797AFE1"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.apache.logging.log4j/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/apache/logging-log4j2/tree/release-2.x/log4j-docker"
},
{
"type":"distribution",
"url":"https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-docker/"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.apache.logging.log4j/[email protected]",
"publisher":"The Apache Software Foundation",
"group":"org.apache.logging.log4j",
"name":"log4j-kubernetes",
"version":"2.17.1",
"description":"Apache Log4j Kubernetes Support",
"hashes":[
{
"alg":"SHA-256",
"content":"829403DA5777B4506A1B3C2FD7B6DD7B73C589393C36561320B9777EB5EA44B3"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.apache.logging.log4j/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/apache/logging-log4j2/tree/release-2.x/log4j-kubernetes"
},
{
"type":"distribution",
"url":"https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-kubernetes/"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.apache.logging.log4j/[email protected]",
"publisher":"The Apache Software Foundation",
"group":"org.apache.logging.log4j",
"name":"log4j-spring-boot",
"version":"2.17.1",
"description":"Apache Log4j Spring Boot Support",
"hashes":[
{
"alg":"SHA-256",
"content":"D769774D99864A7F511D47C2B6B6DED82E38FC443DECF90855A8B5A90A65C240"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.apache.logging.log4j/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/apache/logging-log4j2/tree/release-2.x/log4j-spring-boot"
},
{
"type":"distribution",
"url":"https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-spring-boot/"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.apache.logging.log4j/[email protected]",
"publisher":"The Apache Software Foundation",
"group":"org.apache.logging.log4j",
"name":"log4j-spring-cloud-config-client",
"version":"2.17.1",
"description":"Apache Log4j Spring Cloud Config Client Support",
"hashes":[
{
"alg":"SHA-256",
"content":"7F7F689350C15FADEAB0175781D210026E37D9EC292F5E6A78A1986FD66441F4"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.apache.logging.log4j/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://gitbox.apache.org/repos/asf?p=logging-log4j2.git"
},
{
"type":"distribution",
"url":"https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-spring-cloud-config-client/"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.apache.maven.plugins/[email protected]",
"publisher":"The Apache Software Foundation",
"group":"org.apache.maven.plugins",
"name":"maven-site-plugin",
"version":"3.11.0",
"description":"The Maven Site Plugin is a plugin that generates a site for the current project.",
"hashes":[
{
"alg":"SHA-256",
"content":"5FC467B2F100F5B4F450A6A505E17676372A7EFD62973D542E20CBBB7C291C66"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.apache.maven.plugins/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/apache/maven-site-plugin"
},
{
"type":"issue-tracker",
"url":"https://issues.apache.org/jira/browse/MSITE"
},
{
"type":"website",
"url":"https://maven.apache.org/plugins/maven-site-plugin/"
},
{
"type":"distribution",
"url":"https://maven.apache.org/plugins/maven-site-plugin/download.cgi"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.apache.rat/[email protected]",
"publisher":"The Apache Software Foundation",
"author":"Jochen Wiedmann",
"group":"org.apache.rat",
"name":"apache-rat-plugin",
"version":"0.13",
"description":"A plugin for Apache Maven that runs Apache Rat to audit the source to be distributed.",
"hashes":[
{
"alg":"SHA-256",
"content":"CA15048FAAEA29B22970C2922F6EB98F59C455CCC6FD7EB1E65898242D1499B0"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.apache.rat/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://svn.apache.org/repos/asf/creadur/rat/tags/apache-rat-project-0.13/"
},
{
"type":"website",
"url":"https://creadur.apache.org/rat/"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/org/apache/rat/apache-rat-plugin/0.13/apache-rat-plugin-0.13.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.apache.maven.plugins/[email protected]",
"publisher":"The Apache Software Foundation",
"group":"org.apache.maven.plugins",
"name":"maven-doap-plugin",
"version":"1.2",
"description":"Plugin which generates a DOAP file from information in a POM.",
"hashes":[
{
"alg":"SHA-256",
"content":"c876f2e85d0f108a34cdd11ccc9d8d7875697367efc75bf10a89c2c26aee994c"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.apache.maven.plugins/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/apache/maven-doap-plugin/"
},
{
"type":"issue-tracker",
"url":"https://issues.apache.org/jira/browse/MDOAP"
},
{
"type":"website",
"url":"https://maven.apache.org/plugins/maven-doap-plugin/"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/org/apache/maven/plugins/maven-doap-plugin/1.2/maven-doap-plugin-1.2.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/commons-logging/[email protected]",
"publisher":"The Apache Software Foundation",
"group":"commons-logging",
"name":"commons-logging",
"version":"1.2",
"description":"Apache Commons Logging is a thin adapter allowing configurable bridging to other, well known logging systems.",
"hashes":[
{
"alg":"SHA-256",
"content":"DADDEA1EA0BE0F56978AB3006B8AC92834AFEEFBD9B7E4E6316FCA57DF0FA636"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/commons-logging/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/apache/commons-logging"
},
{
"type":"issue-tracker",
"url":"https://issues.apache.org/jira/projects/LOGGING/issues/LOGGING-180?filter=allopenissues"
},
{
"type":"website",
"url":"http://commons.apache.org/proper/commons-logging/"
},
{
"type":"distribution",
"url":"https://commons.apache.org/proper/commons-logging/download_logging.cgi"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/com.sleepycat/[email protected]",
"publisher":"Oracle Corporation",
"group":"com.sleepycat",
"name":"je",
"version":"5.0.73",
"description":"Berkley Database Java Edition - build and runtime support.",
"hashes":[
{
"alg":"SHA-256",
"content":"9E7A37CED1469DA7E66E186C322F06E899252A8ADE20F8A9DD211237D3FD2D60"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/com.sleepycat/[email protected]",
"externalReferences":[
{
"type":"website",
"url":"http://www.oracle.com/technetwork/database/database-technologies/nosqldb"
},
{
"type":"distribution",
"url":"http://www.oracle.com/technetwork/database/database-technologies/nosqldb/downloads/index.html"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.apache.flume/[email protected]",
"publisher":"The Apache Software Foundation",
"group":"org.apache.flume",
"name":"flume-ng-sdk",
"version":"1.9.0",
"description":"Flume Software Development Kit: Stable public API for integration with Flume 1.x",
"hashes":[
{
"alg":"SHA-256",
"content":"584028A6C5411582058AF9582B859A0259C4B2A9C4DD3880D696526A054EBDDD"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.apache.flume/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/apache/flume"
},
{
"type":"website",
"url":"https://flume.apache.org/"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/org/apache/flume/flume-ng-sdk/1.9.0/flume-ng-sdk-1.9.0.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.apache.avro/[email protected]",
"publisher":"The Apache Software Foundation",
"group":"org.apache.avro",
"name":"avro",
"version":"1.7.4",
"description":"Avro core components",
"hashes":[
{
"alg":"SHA-256",
"content":"A01D26E9A5ED0754E8C88DBB373FBA896C57DF0A0C424185767A3857855BB222"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.apache.avro/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/apache/avro"
},
{
"type":"issue-tracker",
"url":"http://issues.apache.org/jira/browse/AVRO"
},
{
"type":"website",
"url":"http://avro.apache.org"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/org/apache/avro/avro/1.7.4/avro-1.7.4.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/com.thoughtworks.paranamer/[email protected]",
"publisher":"Paul Hammant",
"group":"com.thoughtworks.paranamer",
"name":"paranamer",
"version":"2.3",
"description":"ParaNamer Core",
"hashes":[
{
"alg":"SHA-256",
"content":"E93F50AE4D0DE11080677F44AB268691266FED2B3FF7BC6FD97636FEBAE7D8FE"
}
],
"licenses":[
{
"license":{
"id":"BSD-3-Clause"
}
}
],
"purl":"pkg:maven/com.thoughtworks.paranamer/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/paul-hammant/paranamer"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/com/thoughtworks/paranamer/paranamer/2.3/paranamer-2.3.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.apache.commons/[email protected]",
"publisher":"The Apache Software Foundation",
"group":"org.apache.commons",
"name":"commons-compress",
"version":"1.21",
"description":"Apache Commons Compress software defines an API for working with compression and archive formats. These include: bzip2, gzip, pack200, lzma, xz, Snappy, traditional Unix Compress, DEFLATE, DEFLATE64, LZ4, Brotli, Zstandard and ar, cpio, jar, tar, zip, dump, 7z, arj.",
"hashes":[
{
"alg":"SHA-256",
"content":"6AECFD5459728A595601CFA07258D131972FFC39B492EB48BDD596577A2F244A"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.apache.commons/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/apache/commons-compress"
},
{
"type":"website",
"url":"https://commons.apache.org/proper/commons-compress/"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/org/apache/commons/commons-compress/1.21/commons-compress-1.21.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.apache.avro/[email protected]",
"publisher":"The Apache Software Foundation",
"group":"org.apache.avro",
"name":"avro-ipc",
"version":"1.7.4",
"description":"Avro inter-process communication components",
"hashes":[
{
"alg":"SHA-256",
"content":"0BE6570095F91186CC3FB87AF02780D5C72CAD17359F63766A2707E0CDA23E06"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.apache.avro/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/apache/avro"
},
{
"type":"website",
"url":"http://avro.apache.org/"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/org/apache/avro/avro-ipc/1.7.4/avro-ipc-1.7.4.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.apache.velocity/[email protected]",
"publisher":"The Apache Software Foundation",
"group":"org.apache.velocity",
"name":"velocity",
"version":"1.7",
"description":"Apache Velocity is a general purpose template engine.",
"hashes":[
{
"alg":"SHA-256",
"content":"EC92DAE810034F4B46DBB16EF4364A4013B0EFB24A8C5DD67435CAE46A290D8E"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.apache.velocity/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/apache/velocity-engine"
},
{
"type":"website",
"url":"http://velocity.apache.org/engine/devel/"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/org/apache/velocity/velocity/1.7/velocity-1.7.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/io.netty/[email protected]",
"publisher":"The Netty Project",
"group":"io.netty",
"name":"netty",
"version":"3.10.6.Final",
"description":"The Netty project is an effort to provide an asynchronous event-driven network application framework and tools for rapid development of maintainable high performance and high scalability protocol servers and clients. In other words, Netty is a NIO client server framework which enables quick and easy development of network applications such as protocol servers and clients. It greatly simplifies and streamlines network programming such as TCP and UDP socket server.",
"hashes":[
{
"alg":"SHA-256",
"content":"8768A50FBE3D93A88D8E6000EA5D68E30F50DC915B3764C3C5870F70C4FB3B49"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/io.netty/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/netty/netty"
},
{
"type":"website",
"url":"http://netty.io/"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/io/netty/netty/3.10.6.Final/netty-3.10.6.Final.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.apache.thrift/[email protected]",
"publisher":"The Apache Software Foundation",
"group":"org.apache.thrift",
"name":"libthrift",
"version":"0.9.3",
"description":"Thrift is a software framework for scalable cross-language services development.",
"hashes":[
{
"alg":"SHA-256",
"content":"BCA5E8CDEE1E0FBF563DE7D41C452385E7BED69723FA28225A9CE718A8EE3419"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.apache.thrift/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/apache/thrift"
},
{
"type":"website",
"url":"http://thrift.apache.org/"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/org/apache/thrift/libthrift/0.9.3/libthrift-0.9.3.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.apache.httpcomponents/[email protected]",
"publisher":"The Apache Software Foundation",
"group":"org.apache.httpcomponents",
"name":"httpclient",
"version":"4.4.1",
"description":"Apache HttpComponents Client",
"hashes":[
{
"alg":"SHA-256",
"content":"B2958FFB74F691E108ABE69AF0002CCFF90BA326420596B1AAB5BB0F63C31EF9"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.apache.httpcomponents/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/apache/httpcomponents-client"
},
{
"type":"website",
"url":"http://hc.apache.org/httpcomponents-client"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/org/apache/httpcomponents/httpclient/4.4.1/httpclient-4.4.1.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.apache.httpcomponents/[email protected]",
"publisher":"The Apache Software Foundation",
"group":"org.apache.httpcomponents",
"name":"httpcore",
"version":"4.4.1",
"description":"Apache HttpComponents Core (blocking I/O)",
"hashes":[
{
"alg":"SHA-256",
"content":"B2958FFB74F691E108ABE69AF0002CCFF90BA326420596B1AAB5BB0F63C31EF9"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.apache.httpcomponents/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/apache/httpcomponents-core"
},
{
"type":"website",
"url":"http://hc.apache.org/httpcomponents-core-ga"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/org/apache/httpcomponents/httpcore/4.4.1/httpcore-4.4.1.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.codehaus.jackson/[email protected]",
"publisher":"FasterXML, LLC",
"group":"org.codehaus.jackson",
"name":"jackson-core-asl",
"version":"1.9.13",
"description":"Jackson is a high-performance JSON processor (parser, generator)",
"hashes":[
{
"alg":"SHA-256",
"content":"440A9CB5CA95B215F953D3A20A6B1A10DA1F09B529A9DDEA5F8A4905DDAB4F5A"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.codehaus.jackson/[email protected]",
"externalReferences":[
{
"type":"website",
"url":"http://fasterxml.com/"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/org/codehaus/jackson/jackson-core-asl/1.9.13/jackson-core-asl-1.9.13.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.codehaus.jackson/[email protected]",
"publisher":"FasterXML, LLC",
"group":"org.codehaus.jackson",
"name":"jackson-mapper-asl",
"version":"1.9.13",
"description":"Data Mapper package is a high-performance data binding package built on Jackson JSON processor",
"hashes":[
{
"alg":"SHA-256",
"content":"74E7A07A76F2EDBADE29312A5A2EBCCFA019128BC021ECE3856D76197E9BE0C2"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.codehaus.jackson/[email protected]",
"externalReferences":[
{
"type":"website",
"url":"http://fasterxml.com/"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/org/codehaus/jackson/jackson-mapper-asl/1.9.13/jackson-mapper-asl-1.9.13.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.apache.flume/[email protected]",
"publisher":"The Apache Software Foundation",
"group":"org.apache.flume",
"name":"flume-ng-core",
"version":"1.9.0",
"description":"Flume NG Core",
"hashes":[
{
"alg":"SHA-256",
"content":"C347CAA7C61E27F3F6F94C421E22F1B1228B7212FD9C4D29579C830045B4BD87"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.apache.flume/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/apache/flume"
},
{
"type":"issue-tracker",
"url":"https://issues.apache.org/jira/projects/FLUME/issues/FLUME-3392?filter=allopenissues"
},
{
"type":"website",
"url":"https://flume.apache.org/"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/org/apache/flume/flume-ng-core/1.9.0/flume-ng-core-1.9.0.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.apache.flume/[email protected]",
"publisher":"The Apache Software Foundation",
"group":"org.apache.flume",
"name":"flume-ng-configuration",
"version":"1.9.0",
"description":"Flume NG Configuration",
"hashes":[
{
"alg":"SHA-256",
"content":"8234AB671F41920F4224998FBC9C6BF781B230DD0D2D778170FBDB8ADD8E143D"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.apache.flume/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/apache/flume"
},
{
"type":"website",
"url":"https://flume.apache.org/"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/org/apache/flume/flume-ng-configuration/1.9.0/flume-ng-configuration-1.9.0.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.apache.flume.flume-ng-configfilters/[email protected]",
"publisher":"The Apache Software Foundation",
"group":"org.apache.flume.flume-ng-configfilters",
"name":"flume-ng-config-filter-api",
"version":"1.9.0",
"description":"Flume NG Config Filters API",
"hashes":[
{
"alg":"SHA-256",
"content":"2E7483AE4975C29CD22693AA8C5FF3EE21EA83E855FA2FC37C8EAFC352C699B4"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.apache.flume.flume-ng-configfilters/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://git-wip-us.apache.org/repos/asf?p=flume.git;a=tree;h=refs/heads/trunk;hb=trunk"
},
{
"type":"website",
"url":"https://flume.apache.org/"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/org/apache/flume/flume-ng-configfilters/flume-ng-config-filter-api/1.9.0/flume-ng-config-filter-api-1.9.0.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.apache.flume/[email protected]",
"publisher":"The Apache Software Foundation",
"group":"org.apache.flume",
"name":"flume-ng-auth",
"version":"1.9.0",
"description":"Flume Authentication",
"hashes":[
{
"alg":"SHA-256",
"content":"ECB025BB3A514668263349626607684665F4D42D7E71A8FF8783E0745AF39772"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.apache.flume/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/apache/flume"
},
{
"type":"website",
"url":"https://flume.apache.org/"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/org/apache/flume/flume-ng-auth/1.9.0/flume-ng-auth-1.9.0.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/com.google.guava/[email protected]",
"publisher":"Google",
"group":"com.google.guava",
"name":"guava",
"version":"11.0.2",
"description":"Guava is a suite of core and expanded libraries that include utility classes, google's collections, io classes, and much much more. This project is a complete packaging of all the Guava libraries into a single jar. Individual portions of Guava can be used by downloading the appropriate module and its dependencies. Guava (complete) has only one code dependency - javax.annotation, per the JSR-305 spec",
"hashes":[
{
"alg":"SHA-256",
"content":"E144A0EC7F5139C58D4F3729CCFB4240F9C576A1AA43790E4090E09316129EE1"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/com.google.guava/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/google/guava"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/com/google/guava/guava/11.0.2/guava-11.0.2.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/com.google.code.findbugs/[email protected]",
"publisher":"FindBugs",
"group":"com.google.code.findbugs",
"name":"jsr305",
"version":"1.3.9",
"description":"JSR305 Annotations for Findbugs",
"hashes":[
{
"alg":"SHA-256",
"content":"905721A0EEA90A81534ABB7EE6EF4EA2E5E645FA1DEF0A5CD88402DF1B46C9ED"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/com.google.code.findbugs/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://code.google.com/archive/p/jsr-305/"
},
{
"type":"website",
"url":"http://findbugs.sourceforge.net/"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/com/google/code/findbugs/jsr305/1.3.9/jsr305-1.3.9.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/commons-codec/[email protected]",
"publisher":"The Apache Software Foundation",
"group":"commons-codec",
"name":"commons-codec",
"version":"1.15",
"description":"The Apache Commons Codec package contains simple encoder and decoders for various formats such as Base64 and Hexadecimal. In addition to these widely used encoders and decoders, the codec package also maintains a collection of phonetic encoding utilities.",
"hashes":[
{
"alg":"SHA-256",
"content":"B3E9F6D63A790109BF0D056611FBED1CF69055826DEFEB9894A71369D246ED63"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/commons-codec/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/apache/commons-codec"
},
{
"type":"issue-tracker",
"url":"https://issues.apache.org/jira/browse/CODEC"
},
{
"type":"website",
"url":"https://commons.apache.org/proper/commons-codec/"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/commons-codec/commons-codec/1.15/commons-codec-1.15.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/commons-cli/[email protected]",
"publisher":"The Apache Software Foundation",
"group":"commons-cli",
"name":"commons-cli",
"version":"1.2",
"description":"Apache Commons CLI provides a simple API for presenting, processing and validating a Command Line Interface.",
"hashes":[
{
"alg":"SHA-256",
"content":"E7CD8951956D349B568B7CCFD4F5B2529A8C113E67C32B028F52FFDA371259D9"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/commons-cli/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/apache/commons-cli"
},
{
"type":"issue-tracker",
"url":"https://issues.apache.org/jira/browse/CLI"
},
{
"type":"website",
"url":"https://commons.apache.org/proper/commons-cli/"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/commons-cli/commons-cli/1.2/commons-cli-1.2.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/commons-lang/[email protected]",
"publisher":"The Apache Software Foundation",
"group":"commons-lang",
"name":"commons-lang",
"version":"2.5",
"description":"Commons Lang, a package of Java utility classes for the classes that are in java.lang's hierarchy, or are considered to be so standard as to justify existence in java.lang.",
"hashes":[
{
"alg":"SHA-256",
"content":"A64E0C73988FEF8D5B73FC29D105A3A6E2DC5D9B90A94FCA065CD2439DC56590"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/commons-lang/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/apache/commons-lang"
},
{
"type":"issue-tracker",
"url":"https://issues.apache.org/jira/browse/LANG"
},
{
"type":"website",
"url":"http://commons.apache.org/lang/"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/commons-lang/commons-lang/2.5/commons-lang-2.5.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/joda-time/[email protected]",
"publisher":"Joda.org",
"group":"joda-time",
"name":"joda-time",
"version":"2.9.9",
"description":"Date and time library to replace JDK date handling",
"hashes":[
{
"alg":"SHA-256",
"content":"B049A43C1057942E6ACFBECE008E4949B2E35D1658D0C8E06F4485397E2FA4E7"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/joda-time/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/JodaOrg/joda-time"
},
{
"type":"issue-tracker",
"url":"https://github.com/JodaOrg/joda-time/issues"
},
{
"type":"website",
"url":"http://www.joda.org/joda-time/"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/joda-time/joda-time/2.9.9/joda-time-2.9.9.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.eclipse.jetty/[email protected]",
"publisher":"Eclipse Foundation",
"group":"org.eclipse.jetty",
"name":"jetty-servlet",
"version":"9.4.6.v20170531",
"description":"Jetty Servlet Container",
"hashes":[
{
"alg":"SHA-256",
"content":"2AA220DD22E5572AF6E6922B259FDC35A4C7575D021BCC5C1D581B6D9096754D"
}
],
"licenses":[
{
"license":{
"id":"EPL-1.0"
}
},
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.eclipse.jetty/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/eclipse/jetty.project"
},
{
"type":"issue-tracker",
"url":"https://github.com/eclipse/jetty.project/issues"
},
{
"type":"website",
"url":"http://www.eclipse.org/jetty"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-servlet/9.4.6.v20170531/jetty-servlet-9.4.6.v20170531.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.eclipse.jetty/[email protected]",
"publisher":"Eclipse Foundation",
"group":"org.eclipse.jetty",
"name":"jetty-security",
"version":"9.4.6.v20170531",
"description":"Jetty security infrastructure",
"hashes":[
{
"alg":"SHA-256",
"content":"D4F58C78BEF67EB32086061B29B79808814F13E49790691C32E3FDE2C7AD37CA"
}
],
"licenses":[
{
"license":{
"id":"EPL-1.0"
}
},
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.eclipse.jetty/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/eclipse/jetty.project"
},
{
"type":"issue-tracker",
"url":"https://github.com/eclipse/jetty.project/issues"
},
{
"type":"website",
"url":"http://www.eclipse.org/jetty"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-security/9.4.6.v20170531/jetty-security-9.4.6.v20170531.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.eclipse.jetty/[email protected]",
"publisher":"Eclipse Foundation",
"group":"org.eclipse.jetty",
"name":"jetty-util",
"version":"9.4.6.v20170531",
"description":"Utility classes for Jetty",
"hashes":[
{
"alg":"SHA-256",
"content":"1616CE767BBD50B9DCAD7C9FF074E8BC9736957D3BD4BD82362452B1461B2ACC"
}
],
"licenses":[
{
"license":{
"id":"EPL-1.0"
}
},
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.eclipse.jetty/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/eclipse/jetty.project"
},
{
"type":"issue-tracker",
"url":"https://github.com/eclipse/jetty.project/issues"
},
{
"type":"website",
"url":"http://www.eclipse.org/jetty"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-util/9.4.6.v20170531/jetty-util-9.4.6.v20170531.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.eclipse.jetty/[email protected]",
"publisher":"Eclipse Foundation",
"group":"org.eclipse.jetty",
"name":"jetty-server",
"version":"9.4.6.v20170531",
"description":"The core jetty server artifact.",
"hashes":[
{
"alg":"SHA-256",
"content":"0F130457245B7561EFD7FCC8E74DD49845ED716ACDE3F45F18EADF43AFBCF593"
}
],
"licenses":[
{
"license":{
"id":"EPL-1.0"
}
},
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.eclipse.jetty/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/eclipse/jetty.project"
},
{
"type":"issue-tracker",
"url":"https://github.com/eclipse/jetty.project/issues"
},
{
"type":"website",
"url":"http://www.eclipse.org/jetty"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-server/9.4.6.v20170531/jetty-server-9.4.6.v20170531.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/javax.servlet/[email protected]",
"publisher":"GlassFish Community",
"group":"javax.servlet",
"name":"javax.servlet-api",
"version":"3.1.0",
"description":"Java Servlet API",
"hashes":[
{
"alg":"SHA-256",
"content":"AF456B2DD41C4E82CF54F3E743BC678973D9FE35BD4D3071FA05C7E5333B8482"
}
],
"licenses":[
{
"license":{
"id":"CDDL-1.1"
}
},
{
"license":{
"id":"GPL-2.0-with-classpath-exception"
}
}
],
"purl":"pkg:maven/javax.servlet/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/javaee/servlet-spec"
},
{
"type":"website",
"url":"http://servlet-spec.java.net/"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.eclipse.jetty/[email protected]",
"publisher":"Eclipse Foundation",
"group":"org.eclipse.jetty",
"name":"jetty-http",
"version":"9.4.6.v20170531",
"description":"Jetty : Http Utility",
"hashes":[
{
"alg":"SHA-256",
"content":"2E661446BC74A55DC58C4F47314ABDAAAE20669FCBC858DAEE513473DBBCD97D"
}
],
"licenses":[
{
"license":{
"id":"EPL-1.0"
}
},
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.eclipse.jetty/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/eclipse/jetty.project"
},
{
"type":"issue-tracker",
"url":"https://github.com/eclipse/jetty.project/issues"
},
{
"type":"website",
"url":"http://www.eclipse.org/jetty"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-http/9.4.6.v20170531/jetty-http-9.4.6.v20170531.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.eclipse.jetty/[email protected]",
"publisher":"Eclipse Foundation",
"group":"org.eclipse.jetty",
"name":"jetty-io",
"version":"9.4.6.v20170531",
"description":"Jetty : IO Utility",
"hashes":[
{
"alg":"SHA-256",
"content":"6357631D9DA902AC82F9BEC39137E301FD6AEFF65F43C4D0EF918E3D2845E440"
}
],
"licenses":[
{
"license":{
"id":"EPL-1.0"
}
},
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.eclipse.jetty/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/eclipse/jetty.project"
},
{
"type":"issue-tracker",
"url":"https://github.com/eclipse/jetty.project/issues"
},
{
"type":"website",
"url":"http://www.eclipse.org/jetty"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-io/9.4.6.v20170531/jetty-io-9.4.6.v20170531.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.eclipse.jetty/[email protected]",
"publisher":"Eclipse Foundation",
"group":"org.eclipse.jetty",
"name":"jetty-jmx",
"version":"9.4.6.v20170531",
"description":"JMX management artifact for jetty.",
"hashes":[
{
"alg":"SHA-256",
"content":"7BF9623FDD66C41136A6EAE265DF2E5C376B65B908F60DEBFED5E37AB413A9B0"
}
],
"licenses":[
{
"license":{
"id":"EPL-1.0"
}
},
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.eclipse.jetty/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/eclipse/jetty.project"
},
{
"type":"issue-tracker",
"url":"https://github.com/eclipse/jetty.project/issues"
},
{
"type":"website",
"url":"http://www.eclipse.org/jetty"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-jmx/9.4.6.v20170531/jetty-jmx-9.4.6.v20170531.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/com.google.code.gson/[email protected]",
"publisher":"Google, Inc.",
"group":"com.google.code.gson",
"name":"gson",
"version":"2.2.2",
"description":"Google Gson library",
"hashes":[
{
"alg":"SHA-256",
"content":"0F2B5F715A5506CC14ED352E5FF406B4C480A06344A479629B85E76C2AAE7FAA"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/com.google.code.gson/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/google/gson"
},
{
"type":"issue-tracker",
"url":"https://github.com/google/gson/issues"
},
{
"type":"website",
"url":"http://code.google.com/p/google-gson/"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/com/google/code/gson/gson/2.2.2/gson-2.2.2.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.apache.mina/[email protected]",
"publisher":"The Apache Software Foundation",
"group":"org.apache.mina",
"name":"mina-core",
"version":"2.0.4",
"description":"Apache MINA Core",
"hashes":[
{
"alg":"SHA-256",
"content":"F6E37603B0FF1B50B31C1BE7E5815098D78AFF1F277DB27D3AEE5D7E8CCE636E"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.apache.mina/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/apache/mina"
},
{
"type":"website",
"url":"https://mina.apache.org/"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/org/apache/mina/mina-core/2.0.4/mina-core-2.0.4.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.apache.flume/[email protected]",
"publisher":"The Apache Software Foundation",
"group":"org.apache.flume",
"name":"flume-ng-embedded-agent",
"version":"1.9.0",
"description":"Flume Embedded Agent: Stable public API for Embedding a Flume 1.x Agent",
"hashes":[
{
"alg":"SHA-256",
"content":"A314A90421B8065A336795AED8BC2B5A9388D3E1BFC6074B4A1E3A4CB3E191DC"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.apache.flume/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/apache/flume"
},
{
"type":"website",
"url":"https://flume.apache.org/"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/org/apache/flume/flume-ng-embedded-agent/1.9.0/flume-ng-embedded-agent-1.9.0.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.apache.flume/[email protected]",
"publisher":"The Apache Software Foundation",
"group":"org.apache.flume",
"name":"flume-ng-node",
"version":"1.9.0",
"description":"Flume NG Node",
"hashes":[
{
"alg":"SHA-256",
"content":"5C718F3FC476FA65CC6827262F0897F2C8E247A1F431EC5C22B5B89897A62DD6"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.apache.flume/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/apache/flume"
},
{
"type":"website",
"url":"https://flume.apache.org/"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/org/apache/flume/flume-ng-node/1.9.0/flume-ng-node-1.9.0.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.apache.flume.flume-ng-sinks/[email protected]",
"publisher":"The Apache Software Foundation",
"group":"org.apache.flume.flume-ng-sinks",
"name":"flume-hdfs-sink",
"version":"1.9.0",
"description":"Flume NG HDFS Sink",
"hashes":[
{
"alg":"SHA-256",
"content":"85D3FCCB65460B6EB36B659E34BF26EE1D220DE7BB0428D1722F7A062AFFC168"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.apache.flume.flume-ng-sinks/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/apache/flume"
},
{
"type":"website",
"url":"https://flume.apache.org/"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/org/apache/flume/flume-ng-sinks/flume-hdfs-sink/1.9.0/flume-hdfs-sink-1.9.0.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.apache.flume.flume-ng-sinks/[email protected]",
"publisher":"The Apache Software Foundation",
"group":"org.apache.flume.flume-ng-sinks",
"name":"flume-irc-sink",
"version":"1.9.0",
"description":"Flume NG IRC Sink",
"hashes":[
{
"alg":"SHA-256",
"content":"476456972EB10BA5E80B9A2D596B5D968AA86EC4263DAE833FF47D9BF3AE453A"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.apache.flume.flume-ng-sinks/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/apache/flume"
},
{
"type":"website",
"url":"https://flume.apache.org/"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/org/apache/flume/flume-ng-sinks/flume-irc-sink/1.9.0/flume-irc-sink-1.9.0.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.schwering/[email protected]",
"publisher":"schwering",
"group":"org.schwering",
"name":"irclib",
"version":"1.10",
"description":"A Java implementation of the IRC protocol",
"hashes":[
{
"alg":"SHA-256",
"content":"E97517E6B0C901143B1C3927270A2ED8291AE4AD13BD9138AEC83B6222E9613B"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
},
{
"license":{
"id":"EPL-1.0"
}
},
{
"license":{
"id":"LGPL-2.1-only"
}
}
],
"purl":"pkg:maven/org.schwering/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/java-irclib/irclib"
},
{
"type":"website",
"url":"http://moepii.sourceforge.net/"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/org/schwering/irclib/1.10/irclib-1.10.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.apache.flume.flume-ng-channels/[email protected]",
"publisher":"The Apache Software Foundation",
"group":"org.apache.flume.flume-ng-channels",
"name":"flume-jdbc-channel",
"version":"1.9.0",
"description":"Flume NG JDBC channel",
"hashes":[
{
"alg":"SHA-256",
"content":"37A8B81803D62D70EAD99A054A91CD8FEF4133F9A114950AA754DD175D42823C"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.apache.flume.flume-ng-channels/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/apache/flume"
},
{
"type":"website",
"url":"https://flume.apache.org/"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/org/apache/flume/flume-ng-channels/flume-jdbc-channel/1.9.0/flume-jdbc-channel-1.9.0.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/commons-dbcp/[email protected]",
"publisher":"The Apache Software Foundation",
"group":"commons-dbcp",
"name":"commons-dbcp",
"version":"1.4",
"description":"Commons Database Connection Pooling",
"hashes":[
{
"alg":"SHA-256",
"content":"A6E2D83551D0E5B59AA942359F3010D35E79365E6552AD3DBAA6776E4851E4F6"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/commons-dbcp/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/apache/commons-dbcp"
},
{
"type":"issue-tracker",
"url":"https://issues.apache.org/jira/browse/DBCP"
},
{
"type":"website",
"url":"http://commons.apache.org/dbcp/"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/commons-dbcp/commons-dbcp/1.4/commons-dbcp-1.4.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/commons-pool/[email protected]",
"publisher":"The Apache Software Foundation",
"group":"commons-pool",
"name":"commons-pool",
"version":"1.5.4",
"description":"Commons Object Pooling Library",
"hashes":[
{
"alg":"SHA-256",
"content":"22095672AC3AD6503E42EC6D4CBC330CD1318040223F6C5D9605473B6D2AA0FD"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/commons-pool/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/apache/commons-pool"
},
{
"type":"issue-tracker",
"url":"https://issues.apache.org/jira/browse/POOL"
},
{
"type":"website",
"url":"http://commons.apache.org/pool/"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/commons-pool/commons-pool/1.5.4/commons-pool-1.5.4.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.apache.derby/[email protected]",
"publisher":"The Apache Software Foundation",
"group":"org.apache.derby",
"name":"derby",
"version":"10.14.1.0",
"description":"Contains the core Apache Derby database engine, which also includes the embedded JDBC driver.",
"hashes":[
{
"alg":"SHA-256",
"content":"7337795A7079A6412894B68193343C8F0BD33A4EBC4A2A4FBC592A8B74B44EBF"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.apache.derby/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/apache/derby"
},
{
"type":"website",
"url":"http://db.apache.org/derby/"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/org/apache/derby/derby/10.14.1.0/derby-10.14.1.0.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.apache.flume.flume-ng-channels/[email protected]",
"publisher":"The Apache Software Foundation",
"group":"org.apache.flume.flume-ng-channels",
"name":"flume-spillable-memory-channel",
"version":"1.9.0",
"description":"Flume NG Spillable Memory channel",
"hashes":[
{
"alg":"SHA-256",
"content":"5D2A7E05A5460018AD0C59D576FB70C98E78B65925BF8661BEF28F13460589E6"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.apache.flume.flume-ng-channels/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/apache/flume"
},
{
"type":"website",
"url":"https://flume.apache.org/"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/org/apache/flume/flume-ng-channels/flume-spillable-memory-channel/1.9.0/flume-spillable-memory-channel-1.9.0.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.apache.curator/[email protected]",
"publisher":"The Apache Software Foundation",
"group":"org.apache.curator",
"name":"curator-framework",
"version":"2.6.0",
"description":"High-level API that greatly simplifies using ZooKeeper.",
"hashes":[
{
"alg":"SHA-256",
"content":"3A76E2185663750B20713101F6B08CB941EC32851544C61D778262FD88B17735"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.apache.curator/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/apache/curator"
},
{
"type":"website",
"url":"http://curator.apache.org/"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/org/apache/curator/curator-framework/2.6.0/curator-framework-2.6.0.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.apache.curator/[email protected]",
"publisher":"The Apache Software Foundation",
"group":"org.apache.curator",
"name":"curator-client",
"version":"2.6.0",
"description":"Low-level API",
"hashes":[
{
"alg":"SHA-256",
"content":"DA37F41DFCA9A08CEC2A466EBE06595DF857C1E1DF5562AF9884C17D7A479B98"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.apache.curator/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/apache/curator"
},
{
"type":"website",
"url":"http://curator.apache.org/"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/org/apache/curator/curator-client/2.6.0/curator-client-2.6.0.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.apache.zookeeper/[email protected]",
"publisher":"The Apache Software Foundation",
"group":"org.apache.zookeeper",
"name":"zookeeper",
"version":"3.4.6",
"description":"Apache ZooKeeper is an effort to develop and maintain an open-source server which enables highly reliable distributed coordination.",
"hashes":[
{
"alg":"SHA-256",
"content":"8A375A1EF98CBC0E1F6E9DFD0D96D914B74D37AD00B4BF81BEB77FA8F34D33AE"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.apache.zookeeper/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/apache/zookeeper"
},
{
"type":"issue-tracker",
"url":"https://issues.apache.org/jira/projects/ZOOKEEPER/issues/ZOOKEEPER-4455?filter=allopenissues"
},
{
"type":"website",
"url":"https://zookeeper.apache.org/"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/org/apache/zookeeper/zookeeper/3.4.6/zookeeper-3.4.6.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/jline/[email protected]",
"publisher":"JLine",
"group":"jline",
"name":"jline",
"version":"0.9.94",
"description":"JLine is a Java library for handling console input.",
"hashes":[
{
"alg":"SHA-256",
"content":"D8DF0FFB12D87CA876271CDA4D59B3FEB94123882C1BE1763B7FAF2E0A0B0CBB"
}
],
"licenses":[
{
"license":{
"id":"BSD-2-Clause"
}
}
],
"purl":"pkg:maven/jline/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"http://github.com/jline/jline2"
},
{
"type":"issue-tracker",
"url":"https://github.com/jline/jline2/issues"
},
{
"type":"website",
"url":"https://jline.github.io/"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/jline/jline/0.9.94/jline-0.9.94.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.apache.curator/[email protected]",
"publisher":"The Apache Software Foundation",
"group":"org.apache.curator",
"name":"curator-recipes",
"version":"2.6.0",
"description":"All of the recipes listed on the ZooKeeper recipes doc (except two phase commit).",
"hashes":[
{
"alg":"SHA-256",
"content":"CDF18D26A96276646D69CD82AC0D8DD5D437C4786B1DBBAAE02B1EAF0AAA327E"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.apache.curator/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/apache/curator"
},
{
"type":"website",
"url":"http://curator.apache.org/"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/org/apache/curator/curator-recipes/2.6.0/curator-recipes-2.6.0.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/javax.servlet/[email protected]",
"publisher":"GlassFish Community",
"group":"javax.servlet",
"name":"javax.servlet-api",
"version":"3.0.1",
"description":"Java Servlet API",
"hashes":[
{
"alg":"SHA-256",
"content":"377D8BDE87AC6BC7F83F27DF8E02456D5870BB78C832DAC656CEACC28B016E56"
}
],
"licenses":[
{
"license":{
"id":"CDDL-1.1"
}
},
{
"license":{
"id":"GPL-2.0-with-classpath-exception"
}
}
],
"purl":"pkg:maven/javax.servlet/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/eclipse-ee4j/servlet-api"
},
{
"type":"website",
"url":"https://eclipse.org/ee4j/servlet"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/javax/servlet/javax.servlet-api/3.0.1/javax.servlet-api-3.0.1.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/javax.servlet.jsp/[email protected]",
"publisher":"The Apache Software Foundation",
"group":"javax.servlet.js",
"name":"jsp-api",
"version":"2.1",
"description":"JavaServer Pages(TM) API",
"hashes":[
{
"alg":"SHA-256",
"content":"545F4E7DC678FFB4CF8BD0FD40B4A4470A409A787C0EA7D0AD2F08D56112987B"
}
],
"licenses":[
{
"license":{
"id":"CDDL-1.1"
}
},
{
"license":{
"id":"GPL-2.0-with-classpath-exception"
}
}
],
"purl":"pkg:maven/javax.servlet.jsp/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/eclipse-ee4j/jsp-api"
},
{
"type":"issue-tracker",
"url":"https://github.com/eclipse-ee4j/jsp-api/issues"
},
{
"type":"website",
"url":"http://eclipse.org/ee4j/jsp"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/javax/servlet/jsp/jsp-api/2.1/jsp-api-2.1.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.slf4j/[email protected]",
"publisher":"QOS.ch",
"group":"org.slf4j",
"name":"slf4j-api",
"version":"1.7.25",
"description":"The slf4j API",
"hashes":[
{
"alg":"SHA-256",
"content":"18C4A0095D5C1DA6B817592E767BB23D29DD2F560AD74DF75FF3961DBDE25B79"
}
],
"licenses":[
{
"license":{
"id":"MIT"
}
}
],
"purl":"pkg:maven/org.slf4j/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/qos-ch/slf4j"
},
{
"type":"website",
"url":"http://www.slf4j.org/"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.slf4j/[email protected]",
"publisher":"QOS.ch",
"group":"org.slf4j",
"name":"slf4j-ext",
"version":"1.7.25",
"description":"Extensions to the SLF4J API",
"hashes":[
{
"alg":"SHA-256",
"content":"9DF4EA4D390EB559F153716FA77658C26540F4F83635973B8C0E0DA70D6FA944"
}
],
"licenses":[
{
"license":{
"id":"MIT"
}
}
],
"purl":"pkg:maven/org.slf4j/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/qos-ch/slf4j"
},
{
"type":"website",
"url":"http://www.slf4j.org/"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/org/slf4j/slf4j-ext/1.7.25/slf4j-ext-1.7.25.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.lightcouch/[email protected]",
"publisher":"The Apache Software Foundation",
"author":"Ahmed Yehia",
"group":"org.lightcouch",
"name":"lightcouch",
"version":"0.2.0",
"description":"CouchDB Java API",
"hashes":[
{
"alg":"SHA-256",
"content":"A96C4C39DE494CAC5C77C3F03515AD52063789FB4A1DE965209B2A889B666300"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.lightcouch/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/lightcouch/LightCouch"
},
{
"type":"issue-tracker",
"url":"https://github.com/lightcouch/LightCouch/issues"
},
{
"type":"website",
"url":"http://www.lightcouch.org/"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/org/lightcouch/lightcouch/0.2.0/lightcouch-0.2.0.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.mongodb/[email protected]",
"publisher":"MongoDB",
"group":"org.mongodb",
"name":"mongo-java-driver",
"version":"3.12.10",
"description":"The MongoDB Java Driver uber-artifact, containing the legacy driver, the mongodb-driver, mongodb-driver-core, and bson",
"hashes":[
{
"alg":"SHA-256",
"content":"C64235BE1D9C5FB90B8C0041BA5DBFC74A125D8F2404F9E01F21121A4E0BB074"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.mongodb/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/mongodb/mongo-java-driver"
},
{
"type":"website",
"url":"http://www.mongodb.org/"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/org/mongodb/mongo-java-driver/3.12.10/mongo-java-driver-3.12.10.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/com.datastax.oss/[email protected]",
"publisher":"DataStax, Inc",
"group":"com.datastax.oss",
"name":"java-driver-core",
"version":"4.13.0",
"description":"DataStax Java driver for Apache Cassandra(R) - core",
"hashes":[
{
"alg":"SHA-256",
"content":"1DFBEDA413165ADFCB39DF1096165EC47182224FCB6C63C6505203BE210A8D65"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/com.datastax.oss/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/datastax/java-driver"
},
{
"type":"website",
"url":"https://docs.datastax.com/en/driver-matrix/doc/driver_matrix/javaDrivers.html#java-drivers__java-driver-cstar"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/com/datastax/oss/java-driver-core/4.13.0/java-driver-core-4.13.0.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/com.datastax.oss/[email protected]",
"publisher":"DataStax, Inc",
"group":"com.datastax.oss",
"name":"java-driver-query-builder",
"version":"4.13.0",
"description":"DataStax Java driver for Apache Cassandra(R) - query builder",
"hashes":[
{
"alg":"SHA-256",
"content":"59C954E42CB3196B16F9FDD941AF6BFD22B0DA2526A4E864B3AA29CC9A67B0B0"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/com.datastax.oss/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/datastax/java-driver"
},
{
"type":"website",
"url":"https://docs.datastax.com/en/driver-matrix/doc/driver_matrix/javaDrivers.html#java-drivers__java-driver-cstar"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/com/datastax/oss/java-driver-query-builder/4.13.0/java-driver-query-builder-4.13.0.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/com.datastax.oss/[email protected]",
"publisher":"DataStax, Inc",
"group":"com.datastax.oss",
"name":"java-driver-mapper-runtime",
"version":"4.13.0",
"description":"DataStax Java driver for Apache Cassandra(R) - object mapper runtime",
"hashes":[
{
"alg":"SHA-256",
"content":"44466BE09EE3E1C391795EBFBA381FC792D006463E1DB3A9130DDF1EDCAC1D51"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/com.datastax.oss/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/datastax/java-driver"
},
{
"type":"website",
"url":"https://docs.datastax.com/en/driver-matrix/doc/driver_matrix/javaDrivers.html#java-drivers__java-driver-cstar"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/com/datastax/oss/java-driver-mapper-runtime/4.13.0/java-driver-mapper-runtime-4.13.0.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/com.fasterxml.jackson.core/[email protected]",
"publisher":"FasterXML, LLC.",
"group":"com.fasterxml.jackson.core",
"name":"jackson-annotations",
"version":"2.12.4",
"description":"Core annotations used for value types, used by Jackson data binding package.",
"hashes":[
{
"alg":"SHA-256",
"content":"F6AA3706A875689B66CDAC3334F65DFDB795CCFAD4117BF072893B196ED1EC8E"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/com.fasterxml.jackson.core/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/FasterXML/jackson-annotations"
},
{
"type":"issue-tracker",
"url":"https://github.com/FasterXML/jackson-annotations/issues"
},
{
"type":"website",
"url":"http://github.com/FasterXML/jackson"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.12.4/jackson-annotations-2.12.4.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/com.fasterxml.jackson.core/[email protected]",
"publisher":"FasterXML, LLC.",
"group":"com.fasterxml.jackson.core",
"name":"jackson-core",
"version":"2.12.4",
"description":"Core Jackson processing abstractions (aka Streaming API), implementation for JSON",
"hashes":[
{
"alg":"SHA-256",
"content":"3506CE47EC2604AE2D80D79505F7CB374F718060639415C07D144ADADD2D68A3"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/com.fasterxml.jackson.core/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/FasterXML/jackson-core"
},
{
"type":"issue-tracker",
"url":"https://github.com/FasterXML/jackson-core/issues"
},
{
"type":"website",
"url":"https://github.com/FasterXML/jackson-core"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-core/2.12.4/jackson-core-2.12.4.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/com.fasterxml.jackson.core/[email protected]",
"publisher":"FasterXML, LLC.",
"group":"com.fasterxml.jackson.core",
"name":"jackson-databind",
"version":"2.12.4",
"description":"General data-binding functionality for Jackson: works on core streaming API",
"hashes":[
{
"alg":"SHA-256",
"content":"E99A7B4B89074BC689AABCD9EB1F2C1318B68CC5C34979DAF3E34EDC558C7A01"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/com.fasterxml.jackson.core/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"http://github.com/FasterXML/jackson-databind"
},
{
"type":"issue-tracker",
"url":"https://github.com/FasterXML/jackson-databind/issues"
},
{
"type":"website",
"url":"http://github.com/FasterXML/jackson"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.12.4/jackson-databind-2.12.4.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.springframework.boot/[email protected]",
"publisher":"VMware, Inc",
"group":"org.springframework.boot",
"name":"spring-boot",
"version":"2.5.7",
"description":"Spring Boot",
"hashes":[
{
"alg":"SHA-256",
"content":"C22B4C15D5E59712E84CB4F56E494CB0F77347E0C8E6CF6194D25B808C209A92"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.springframework.boot/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/spring-projects/spring-boot"
},
{
"type":"issue-tracker",
"url":"https://github.com/spring-projects/spring-boot/issues"
},
{
"type":"website",
"url":"https://spring.io/projects/spring-boot"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/org/springframework/boot/spring-boot/2.5.7/spring-boot-2.5.7.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.springframework/[email protected]",
"publisher":"VMware, Inc",
"group":"org.springframework",
"name":"spring-context",
"version":"5.3.13",
"description":"Spring Context",
"hashes":[
{
"alg":"SHA-256",
"content":"90A5EEFF7D1B3B7D407C9697C9A7B6C6AD47D3B391617011974AAA980D6C7E55"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.springframework/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/spring-projects/spring-framework"
},
{
"type":"issue-tracker",
"url":"https://github.com/spring-projects/spring-framework/issues"
},
{
"type":"website",
"url":"https://spring.io/projects/spring-framework"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/org/springframework/spring-context/5.3.13/spring-context-5.3.13.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.springframework/[email protected]",
"publisher":"VMware, Inc",
"group":"org.springframework",
"name":"spring-aop",
"version":"5.3.13",
"description":"Spring AOP",
"hashes":[
{
"alg":"SHA-256",
"content":"24E41B42137DFB6BDE3AACE2D48E45D73C4BE13D4167D88A789BA41BF9325F79"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.springframework/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/spring-projects/spring-framework"
},
{
"type":"issue-tracker",
"url":"https://github.com/spring-projects/spring-framework/issues"
},
{
"type":"website",
"url":"https://spring.io/projects/spring-framework"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/org/springframework/spring-aop/5.3.13/spring-aop-5.3.13.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.springframework/[email protected]",
"publisher":"VMware, Inc",
"group":"org.springframework",
"name":"spring-beans",
"version":"5.3.13",
"description":"Spring Beans",
"hashes":[
{
"alg":"SHA-256",
"content":"7D0D4E4DA5C9E2168EC21D49A94668A1C8A1D22FDAE7DDAFFC899F3A2859E306"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.springframework/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/spring-projects/spring-framework"
},
{
"type":"issue-tracker",
"url":"https://github.com/spring-projects/spring-framework/issues"
},
{
"type":"website",
"url":"https://spring.io/projects/spring-framework"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/org/springframework/spring-beans/5.3.13/spring-beans-5.3.13.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.springframework/[email protected]",
"publisher":"VMware, Inc",
"group":"org.springframework",
"name":"spring-expression",
"version":"5.3.13",
"description":"Spring Expression Language (SpEL)",
"hashes":[
{
"alg":"SHA-256",
"content":"53B006B299F4D9788A156A1F4A85B6CABCC85D53C5BAD1436B8A136EE44DBFEB"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.springframework/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/spring-projects/spring-framework"
},
{
"type":"issue-tracker",
"url":"https://github.com/spring-projects/spring-framework/issues"
},
{
"type":"website",
"url":"https://spring.io/projects/spring-framework"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/org/springframework/spring-expression/5.3.13/spring-expression-5.3.13.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.springframework/[email protected]",
"publisher":"VMware, Inc",
"group":"org.springframework",
"name":"spring-context-support",
"version":"5.3.13",
"description":"Spring Context Support",
"hashes":[
{
"alg":"SHA-256",
"content":"26F42B23C6029975FA4D3492BCA80681F8394C49229A7DAF42C97C57CC92B5EA"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.springframework/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/spring-projects/spring-framework"
},
{
"type":"issue-tracker",
"url":"https://github.com/spring-projects/spring-framework/issues"
},
{
"type":"website",
"url":"https://spring.io/projects/spring-framework"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/org/springframework/spring-context-support/5.3.13/spring-context-support-5.3.13.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.springframework.cloud/[email protected]",
"publisher":"VMware, Inc",
"group":"org.springframework.cloud",
"name":"spring-cloud-starter-bootstrap",
"version":"3.0.4",
"description":"Spring Cloud Starter Bootstrap",
"hashes":[
{
"alg":"SHA-256",
"content":"3F8F536DA2DBB6A6FDB5C4DC678EEAABB2FBF5732B0983F25AD388FD3D5F685D"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.springframework.cloud/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/spring-cloud/spring-cloud-commons"
},
{
"type":"issue-tracker",
"url":"https://github.com/spring-cloud/spring-cloud-commons/issues"
},
{
"type":"website",
"url":"https://projects.spring.io/spring-cloud"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/org/springframework/cloud/spring-cloud-starter-bootstrap/3.0.4/spring-cloud-starter-bootstrap-3.0.4.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.springframework.cloud/[email protected]",
"publisher":"VMware, Inc",
"group":"org.springframework.cloud",
"name":"spring-cloud-starter",
"version":"3.0.4",
"description":"Spring Cloud Starter",
"hashes":[
{
"alg":"SHA-256",
"content":"F0E22DC64F804CEC91D05629DF9C856A26051895941B64B1650AA1C2D607943C"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.springframework.cloud/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/spring-cloud/spring-cloud-commons"
},
{
"type":"issue-tracker",
"url":"https://github.com/spring-cloud/spring-cloud-commons/issues"
},
{
"type":"website",
"url":"https://projects.spring.io/spring-cloud"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/org/springframework/cloud/spring-cloud-starter/3.0.4/spring-cloud-starter-3.0.4.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.springframework.security/[email protected]",
"publisher":"VMware, Inc",
"group":"org.springframework.cloud",
"name":"spring-security-rsa",
"version":"1.0.10.RELEASE",
"description":"Spring Security RSA is a small utility library for RSA ciphers. It belongs to the family of Spring Security crypto libraries that handle encoding and decoding text as a general, useful thing to be able to do.",
"hashes":[
{
"alg":"SHA-256",
"content":"B7FD897A5CA990B6264E8E4C025713947E9C48D7D78BEA2D041D8072A180AF04"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.springframework.security/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/spring-projects/spring-security-oauth"
},
{
"type":"issue-tracker",
"url":"https://github.com/spring-projects/spring-security-oauth/issues"
},
{
"type":"website",
"url":"https://github.com/spring-projects/spring-security-oauth"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/org/springframework/security/spring-security-rsa/1.0.10.RELEASE/spring-security-rsa-1.0.10.RELEASE.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.bouncycastle/[email protected]",
"publisher":"Legion of the Bouncy Castle Inc.",
"group":"org.bouncycastle",
"name":"bcpkix-jdk15on",
"version":"1.68",
"description":"The Bouncy Castle Java APIs for CMS, PKCS, EAC, TSP, CMP, CRMF, OCSP, and certificate generation. This jar contains APIs for JDK 1.5 and up. The APIs can be used in conjunction with a JCE/JCA provider such as the one provided with the Bouncy Castle Cryptography APIs.",
"hashes":[
{
"alg":"SHA-256",
"content":"FB8D0F8F673AD6E16C604732093D7AA31B26FF4E0BD9CAE1D7F99984C06B8A0F"
}
],
"licenses":[
{
"license":{
"name":"Bouncy Castle Licence"
}
},
{
"license":{
"id":"MIT"
}
}
],
"purl":"pkg:maven/org.bouncycastle/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/bcgit/bc-java"
},
{
"type":"issue-tracker",
"url":"https://github.com/bcgit/bc-java/issues"
},
{
"type":"website",
"url":"http://www.bouncycastle.org/java.html"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/org/bouncycastle/bcpkix-jdk15on/1.68/bcpkix-jdk15on-1.68.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.bouncycastle/[email protected]",
"publisher":"Legion of the Bouncy Castle Inc.",
"group":"org.bouncycastle",
"name":"bcprov-jdk15on",
"version":"1.68",
"description":"The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms. This jar contains JCE provider and lightweight API for the Bouncy Castle Cryptography APIs for JDK 1.5 and up.",
"hashes":[
{
"alg":"SHA-256",
"content":"E469BD39F936999F256002631003FF022A22951DA9D5BD9789C7ABFA9763A292"
}
],
"licenses":[
{
"license":{
"name":"Bouncy Castle Licence"
}
},
{
"license":{
"id":"MIT"
}
}
],
"purl":"pkg:maven/org.bouncycastle/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/bcgit/bc-java"
},
{
"type":"issue-tracker",
"url":"https://github.com/bcgit/bc-java/issues"
},
{
"type":"website",
"url":"https://www.bouncycastle.org/java.html"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/org/bouncycastle/bcprov-jdk15on/1.69/bcprov-jdk15on-1.69.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.springframework.cloud/[email protected]",
"publisher":"VMware, Inc",
"group":"org.springframework.cloud",
"name":"spring-cloud-config-client",
"version":"3.0.5",
"description":"This project is a Spring configuration client.",
"hashes":[
{
"alg":"SHA-256",
"content":"AD98F758A9DB34E01FFE4FFB0C2157DE5FB46EBC8622163BB7A120C4D9EF6C1E"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.springframework.cloud/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/spring-cloud/spring-cloud-config/"
},
{
"type":"issue-tracker",
"url":"https://github.com/spring-cloud/spring-cloud-config/issues"
},
{
"type":"website",
"url":"https://spring.io/"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/org/springframework/cloud/spring-cloud-config-client/3.0.5/spring-cloud-config-client-3.0.5.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.springframework.boot/[email protected]",
"publisher":"VMware, Inc",
"group":"org.springframework.boot",
"name":"spring-boot-autoconfigure",
"version":"2.5.7",
"description":"Spring Boot AutoConfigure",
"hashes":[
{
"alg":"SHA-256",
"content":"341DB58584498DF9288EB5B98CDE9096AE0FF420CE86FCAD9F76B9411BB72B89"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.springframework.boot/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/spring-projects/spring-boot"
},
{
"type":"issue-tracker",
"url":"https://github.com/spring-projects/spring-boot/issues"
},
{
"type":"website",
"url":"https://spring.io/projects/spring-boot"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/org/springframework/boot/spring-boot-autoconfigure/2.5.7/spring-boot-autoconfigure-2.5.7.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.springframework.cloud/[email protected]",
"publisher":"VMware, Inc",
"group":"org.springframework.cloud",
"name":"spring-cloud-commons",
"version":"3.0.4",
"description":"Spring Cloud Commons",
"hashes":[
{
"alg":"SHA-256",
"content":"8F7852531FA4179B7DF65871EFCDDC296DEADD676A88B8866D6018BB2FF87061"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.springframework.cloud/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/spring-cloud/spring-cloud-commons/"
},
{
"type":"issue-tracker",
"url":"https://github.com/spring-cloud/spring-cloud-commons/issues"
},
{
"type":"website",
"url":"https://spring.io/projects/spring-cloud"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/org/springframework/cloud/spring-cloud-commons/3.0.4/spring-cloud-commons-3.0.4.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.springframework.security/[email protected]",
"publisher":"VMware, Inc",
"group":"org.springframework.security",
"name":"spring-security-crypto",
"version":"5.5.3",
"description":"Spring Security",
"hashes":[
{
"alg":"SHA-256",
"content":"FE205CA5ABE5086C0EEC259D80C1354D5421A9F08ED9770D8EE736F46106B4E3"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.springframework.security/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/spring-projects/spring-security"
},
{
"type":"issue-tracker",
"url":"https://github.com/spring-projects/spring-security/issues"
},
{
"type":"website",
"url":"https://spring.io/projects/spring-security"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/org/springframework/security/spring-security-crypto/5.5.3/spring-security-crypto-5.5.3.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.springframework.cloud/[email protected]",
"publisher":"VMware, Inc",
"group":"org.springframework.cloud",
"name":"spring-cloud-context",
"version":"3.0.4",
"description":"Spring Cloud Context",
"hashes":[
{
"alg":"SHA-256",
"content":"A32B3507D356CA152DDF9E54CF6D8ECFA4005880E0576CFCA38FA6CB620459DF"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.springframework.cloud/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/spring-cloud/spring-cloud-commons/"
},
{
"type":"issue-tracker",
"url":"https://github.com/spring-cloud/spring-cloud-commons/issues"
},
{
"type":"website",
"url":"https://spring.io/projects/spring-cloud"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/org/springframework/cloud/spring-cloud-context/3.0.4/spring-cloud-context-3.0.4.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.springframework/[email protected]",
"publisher":"VMware, Inc",
"group":"org.springframework",
"name":"spring-web",
"version":"5.3.13",
"description":"Spring Web",
"hashes":[
{
"alg":"SHA-256",
"content":"1E9CF607C870099AC109F7F38EDC87A2353F7F9B496D3519E4A20AA57EE75779"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.springframework/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/spring-projects/spring-framework"
},
{
"type":"issue-tracker",
"url":"https://github.com/spring-projects/spring-framework/issues"
},
{
"type":"website",
"url":"https://spring.io/projects/spring-framework"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/org/springframework/spring-web/5.3.13/spring-web-5.3.13.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.apache.httpcomponents/[email protected]",
"publisher":"The Apache Software Foundation",
"group":"org.apache.httpcomponents",
"name":"httpclient",
"version":"4.5.13",
"description":"Apache HttpComponents Client",
"hashes":[
{
"alg":"SHA-256",
"content":"6FE9026A566C6A5001608CF3FC32196641F6C1E5E1986D1037CCDBD5F31EF743"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.apache.httpcomponents/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/apache/httpcomponents-client"
},
{
"type":"website",
"url":"https://hc.apache.org/httpcomponents-client-5.1.x/"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.apache.httpcomponents/[email protected]",
"publisher":"The Apache Software Foundation",
"group":"org.apache.httpcomponents",
"name":"httpcore",
"version":"4.4.14",
"description":"Apache HttpComponents Core (blocking I/O)",
"hashes":[
{
"alg":"SHA-256",
"content":"F956209E450CB1D0C51776DFBD23E53E9DD8DB9A1298ED62B70BF0944BA63B28"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.apache.httpcomponents/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/apache/httpcomponents-core"
},
{
"type":"website",
"url":"https://hc.apache.org/httpcomponents-core-5.1.x/"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.springframework.cloud/[email protected]",
"publisher":"VMware, Inc",
"group":"org.springframework.cloud",
"name":"spring-cloud-bus",
"version":"3.0.3",
"description":"Spring Cloud Bus",
"hashes":[
{
"alg":"SHA-256",
"content":"6B380B57D0BF853C96A0BEC5A3941A1D6CB253554B7F8A87F43D0CB8D6FF4A6D"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.springframework.cloud/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/spring-cloud/spring-cloud-bus/"
},
{
"type":"issue-tracker",
"url":"https://github.com/spring-cloud/spring-cloud-bus/issues"
},
{
"type":"website",
"url":"https://spring.io/projects/spring-cloud/"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/org/springframework/cloud/spring-cloud-bus/3.0.3/spring-cloud-bus-3.0.3.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.springframework.integration/[email protected]",
"publisher":"VMware, Inc",
"group":"org.springframework.integration",
"name":"spring-integration-core",
"version":"5.5.6",
"description":"Spring Integration Core",
"hashes":[
{
"alg":"SHA-256",
"content":"14E328DB4854E5F70DA7951B9A46C4CC6B8DEE781B0259DC6DEF68213ABC17EE"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.springframework.integration/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/spring-projects/spring-integration"
},
{
"type":"issue-tracker",
"url":"https://github.com/spring-projects/spring-integration/issues"
},
{
"type":"website",
"url":"http://projects.spring.io/spring-integration/"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/org/springframework/integration/spring-integration-core/5.5.6/spring-integration-core-5.5.6.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.springframework/[email protected]",
"publisher":"VMware, Inc",
"group":"org.springframework",
"name":"spring-messaging",
"version":"5.3.13",
"description":"Spring Messaging",
"hashes":[
{
"alg":"SHA-256",
"content":"D080D6083AEBA901023C60118AD212034C5861E119106438B68CA71BA5CB2123"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.springframework/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/spring-projects/spring-framework"
},
{
"type":"issue-tracker",
"url":"https://github.com/spring-projects/spring-framework/issues"
},
{
"type":"website",
"url":"https://spring.io/projects/spring-framework"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/org/springframework/spring-messaging/5.3.13/spring-messaging-5.3.13.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.springframework/[email protected]",
"publisher":"VMware, Inc",
"group":"org.springframework",
"name":"spring-tx",
"version":"5.3.13",
"description":"Spring Transaction",
"hashes":[
{
"alg":"SHA-256",
"content":"492BF11CA5A96FB2F12C39A6BA6B2157F192907587EF51A38F683237CB0F7E2E"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.springframework/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/spring-projects/spring-framework"
},
{
"type":"issue-tracker",
"url":"https://github.com/spring-projects/spring-framework/issues"
},
{
"type":"website",
"url":"https://spring.io/projects/spring-framework"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/org/springframework/spring-tx/5.3.13/spring-tx-5.3.13.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.springframework.retry/[email protected]",
"publisher":"VMware, Inc",
"group":"org.springframework.retry",
"name":"spring-retry",
"version":"1.3.1",
"description":"Spring Retry provides an abstraction around retrying failed operations, with an emphasis on declarative control of the process and policy-based bahaviour that is easy to extend and customize. For instance, you can configure a plain POJO operation to retry if it fails, based on the type of exception, and with a fixed or exponential backoff.",
"hashes":[
{
"alg":"SHA-256",
"content":"F57C6B8EC4CF0F651011A3CB925F2B0D16FDE24BAD32A1D27BB7ED6160D4C590"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/org.springframework.retry/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/spring-projects/spring-retry"
},
{
"type":"issue-tracker",
"url":"https://github.com/spring-projects/spring-retry/issues"
},
{
"type":"website",
"url":"https://www.springsource.org/"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/org/springframework/retry/spring-retry/1.3.1/spring-retry-1.3.1.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/io.projectreactor/[email protected]",
"publisher":"VMware, Inc",
"group":"io.projectreactor",
"name":"reactor-core",
"version":"3.4.12",
"description":"Non-Blocking Reactive Foundation for the JVM",
"hashes":[
{
"alg":"SHA-256",
"content":"12FF3EAE092BF07F6651A93B9292A87FBEE7F5B9AD4C9CC01189B1A4F0979973"
}
],
"licenses":[
{
"license":{
"id":"Apache-2.0"
}
}
],
"purl":"pkg:maven/io.projectreactor/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/reactor/reactor-core"
},
{
"type":"issue-tracker",
"url":"https://github.com/reactor/reactor-core/issues"
},
{
"type":"website",
"url":"http://projectreactor.io/"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/io/projectreactor/reactor-core/3.4.12/reactor-core-3.4.12.jar"
}
]
},
{
"type":"library",
"bom-ref":"pkg:maven/org.reactivestreams/[email protected]",
"publisher":"Reactive Steams",
"group":"org.reactivestreams",
"name":"reactive-streams",
"version":"1.0.3",
"description":"A Protocol for Asynchronous Non-Blocking Data Sequence",
"hashes":[
{
"alg":"SHA-256",
"content":"1DEE0481072D19C929B623E155E14D2F6085DC011529A0A0DBEFC84CF571D865"
}
],
"licenses":[
{
"license":{
"id":"CC0-1.0"
}
}
],
"purl":"pkg:maven/org.reactivestreams/[email protected]",
"externalReferences":[
{
"type":"vcs",
"url":"https://github.com/reactive-streams/reactive-streams-jvm"
},
{
"type":"issue-tracker",
"url":"https://github.com/reactive-streams/reactive-streams-jvm/issues"
},
{
"type":"website",
"url":"http://www.reactive-streams.org/"
},
{
"type":"distribution",
"url":"https://repo1.maven.org/maven2/org/reactivestreams/reactive-streams/1.0.3/reactive-streams-1.0.3.jar"
}
]
}
],
"dependencies":[
{
"ref":"pkg:maven/org.apache.logging.log4j/[email protected]",
"dependsOn":[
"pkg:maven/org.apache.logging.log4j/[email protected]",
"pkg:maven/org.apache.logging.log4j/[email protected]",
"pkg:maven/org.apache.logging.log4j/[email protected]",
"pkg:maven/org.apache.logging.log4j/[email protected]",
"pkg:maven/org.apache.logging.log4j/[email protected]",
"pkg:maven/org.apache.logging.log4j/[email protected]",
"pkg:maven/org.apache.logging.log4j/[email protected]",
"pkg:maven/org.apache.logging.log4j/[email protected]",
"pkg:maven/org.apache.logging.log4j/[email protected]",
"pkg:maven/org.apache.logging.log4j/[email protected]",
"pkg:maven/org.apache.logging.log4j/[email protected]",
"pkg:maven/org.apache.logging.log4j/[email protected]",
"pkg:maven/org.apache.logging.log4j/[email protected]",
"pkg:maven/org.apache.logging.log4j/[email protected]",
"pkg:maven/org.apache.logging.log4j/[email protected]",
"pkg:maven/org.apache.logging.log4j/[email protected]",
"pkg:maven/org.apache.logging.log4j/[email protected]",
"pkg:maven/org.apache.logging.log4j/[email protected]",
"pkg:maven/org.apache.logging.log4j/[email protected]",
"pkg:maven/org.apache.logging.log4j/[email protected]",
"pkg:maven/org.apache.logging.log4j/[email protected]",
"pkg:maven/org.apache.logging.log4j/[email protected]",
"pkg:maven/org.apache.logging.log4j/[email protected]",
"pkg:maven/org.apache.logging.log4j/[email protected]",
"pkg:maven/org.apache.logging.log4j/[email protected]",
"pkg:maven/org.apache.logging.log4j/[email protected]",
"pkg:maven/org.apache.maven.plugins/[email protected]",
"pkg:maven/org.apache.rat/[email protected]",
"pkg:maven/org.apache.maven.plugins/[email protected]"
]
},
{
"ref":"pkg:maven/org.apache.logging.log4j/[email protected]"
},
{
"ref":"pkg:maven/org.apache.logging.log4j/[email protected]"
},
{
"ref":"pkg:maven/org.apache.logging.log4j/[email protected]"
},
{
"ref":"pkg:maven/org.apache.logging.log4j/[email protected]",
"dependsOn":[
"pkg:maven/org.apache.logging.log4j/[email protected]"
]
},
{
"ref":"pkg:maven/org.apache.logging.log4j/[email protected]",
"dependsOn":[
"pkg:maven/commons-logging/[email protected]",
"pkg:maven/org.apache.logging.log4j/[email protected]"
]
},
{
"ref":"pkg:maven/commons-logging/[email protected]"
},
{
"ref":"pkg:maven/org.apache.logging.log4j/[email protected]",
"dependsOn":[
"pkg:maven/org.apache.logging.log4j/[email protected]",
"pkg:maven/org.apache.logging.log4j/[email protected]",
"pkg:maven/com.sleepycat/[email protected]",
"pkg:maven/org.apache.flume/[email protected]",
"pkg:maven/org.apache.avro/[email protected]",
"pkg:maven/org.apache.avro/[email protected]",
"pkg:maven/io.netty/[email protected]",
"pkg:maven/org.apache.thrift/[email protected]",
"pkg:maven/org.codehaus.jackson/[email protected]",
"pkg:maven/org.codehaus.jackson/[email protected]",
"pkg:maven/org.apache.flume/[email protected]",
"pkg:maven/org.apache.flume/[email protected]"
]
},
{
"ref":" pkg:maven/com.sleepycat/[email protected]"
},
{
"ref":"pkg:maven/org.apache.flume/[email protected]"
},
{
"ref":"pkg:maven/org.apache.avro/[email protected]",
"dependsOn":[
"pkg:maven/com.thoughtworks.paranamer/[email protected]",
"pkg:maven/org.apache.commons/[email protected]"
]
},
{
"ref":"pkg:maven/com.thoughtworks.paranamer/[email protected]"
},
{
"ref":"pkg:maven/org.apache.commons/[email protected]"
},
{
"ref":"pkg:maven/org.apache.avro/[email protected]",
"dependsOn":[
"pkg:maven/org.apache.velocity/[email protected]"
]
},
{
"ref":"pkg:maven/org.apache.velocity/[email protected]"
},
{
"ref":"pkg:maven/io.netty/[email protected]"
},
{
"ref":"pkg:maven/org.apache.thrift/[email protected]",
"dependsOn":[
"pkg:maven/org.apache.httpcomponents/[email protected]",
"pkg:maven/org.apache.httpcomponents/[email protected]"
]
},
{
"ref":"pkg:maven/org.apache.httpcomponents/[email protected]"
},
{
"ref":"pkg:maven/org.apache.httpcomponents/[email protected]"
},
{
"ref":"pkg:maven/org.codehaus.jackson/[email protected]"
},
{
"ref":"pkg:maven/org.codehaus.jackson/[email protected]"
},
{
"ref":"pkg:maven/org.apache.flume/[email protected]",
"dependsOn":[
"pkg:maven/org.apache.flume/[email protected]",
"pkg:maven/org.apache.flume/[email protected]",
"pkg:maven/com.google.guava/[email protected]",
"pkg:maven/commons-codec/[email protected]",
"pkg:maven/commons-cli/[email protected]",
"pkg:maven/commons-lang/[email protected]",
"pkg:maven/joda-time/[email protected]",
"pkg:maven/org.eclipse.jetty/[email protected]",
"pkg:maven/org.eclipse.jetty/[email protected]",
"pkg:maven/org.eclipse.jetty/[email protected]",
"pkg:maven/org.eclipse.jetty/[email protected]",
"pkg:maven/com.google.code.gson/[email protected]",
"pkg:maven/org.apache.mina/[email protected]"
]
},
{
"ref":"pkg:maven/org.apache.flume/[email protected]",
"dependsOn":[
"pkg:maven/org.apache.flume.flume-ng-configfilters/[email protected]"
]
},
{
"ref":"pkg:maven/org.apache.flume.flume-ng-configfilters/[email protected]"
},
{
"ref":"pkg:maven/org.apache.flume/[email protected]"
},
{
"ref":"pkg:maven/com.google.guava/[email protected]",
"dependsOn":[
"pkg:maven/com.google.code.findbugs/[email protected]"
]
},
{
"ref":"pkg:maven/com.google.code.findbugs/[email protected]"
},
{
"ref":"pkg:maven/commons-codec/[email protected]"
},
{
"ref":"pkg:maven/commons-cli/[email protected]"
},
{
"ref":"pkg:maven/commons-lang/[email protected]"
},
{
"ref":"pkg:maven/joda-time/[email protected]"
},
{
"ref":"pkg:maven/org.eclipse.jetty/[email protected]",
"dependsOn":[
"pkg:maven/org.eclipse.jetty/[email protected]"
]
},
{
"ref":"pkg:maven/org.eclipse.jetty/[email protected]"
},
{
"ref":"pkg:maven/org.eclipse.jetty/[email protected]"
},
{
"ref":"pkg:maven/org.eclipse.jetty/[email protected]",
"dependsOn":[
"pkg:maven/javax.servlet/[email protected]",
"pkg:maven/org.eclipse.jetty/[email protected]",
"pkg:maven/org.eclipse.jetty/[email protected]"
]
},
{
"ref":"pkg:maven/javax.servlet/[email protected]"
},
{
"ref":"pkg:maven/org.eclipse.jetty/[email protected]"
},
{
"ref":"pkg:maven/org.eclipse.jetty/[email protected]"
},
{
"ref":"pkg:maven/org.eclipse.jetty/[email protected]"
},
{
"ref":"pkg:maven/com.google.code.gson/[email protected]"
},
{
"ref":"pkg:maven/org.apache.mina/[email protected]"
},
{
"ref":"pkg:maven/org.apache.flume/[email protected]",
"dependsOn":[
"pkg:maven/org.apache.flume/[email protected]"
]
},
{
"ref":"pkg:maven/org.apache.flume/[email protected]",
"dependsOn":[
"pkg:maven/org.apache.flume.flume-ng-sinks/[email protected]",
"pkg:maven/org.apache.flume.flume-ng-sinks/[email protected]",
" pkg:maven/org.apache.flume.flume-ng-channels/[email protected]",
"pkg:maven/org.apache.flume.flume-ng-channels/[email protected]",
"pkg:maven/org.apache.curator/[email protected]",
"pkg:maven/org.apache.curator/[email protected]"
]
},
{
"ref":"pkg:maven/org.apache.flume.flume-ng-sinks/[email protected]"
},
{
"ref":"pkg:maven/org.apache.flume.flume-ng-sinks/[email protected]",
"dependsOn":[
"pkg:maven/org.schwering/[email protected]"
]
},
{
"ref":"pkg:maven/org.schwering/[email protected]"
},
{
"ref":" pkg:maven/org.apache.flume.flume-ng-channels/[email protected]",
"dependsOn":[
"pkg:maven/commons-dbcp/[email protected]",
"pkg:maven/org.apache.derby/[email protected]"
]
},
{
"ref":"pkg:maven/commons-dbcp/[email protected]",
"dependsOn":[
"pkg:maven/commons-pool/[email protected]"
]
},
{
"ref":"pkg:maven/org.apache.derby/[email protected]"
},
{
"ref":"pkg:maven/commons-pool/[email protected]"
},
{
"ref":"pkg:maven/org.apache.flume.flume-ng-channels/[email protected]"
},
{
"ref":"pkg:maven/org.apache.curator/[email protected]",
"dependsOn":[
"pkg:maven/org.apache.curator/[email protected]",
"pkg:maven/org.apache.zookeeper/[email protected]"
]
},
{
"ref":"pkg:maven/org.apache.curator/[email protected]"
},
{
"ref":"pkg:maven/org.apache.zookeeper/[email protected]",
"dependsOn":[
"pkg:maven/jline/[email protected]"
]
},
{
"ref":"pkg:maven/jline/[email protected]"
},
{
"ref":"pkg:maven/org.apache.curator/[email protected]"
},
{
"ref":"pkg:maven/org.apache.logging.log4j/[email protected]",
"dependsOn":[
"pkg:maven/org.apache.logging.log4j/[email protected]",
"pkg:maven/org.apache.logging.log4j/[email protected]",
"pkg:maven/javax.servlet/[email protected]",
"pkg:maven/javax.servlet.jsp/[email protected]"
]
},
{
"ref":"pkg:maven/javax.servlet/[email protected]"
},
{
"ref":"pkg:maven/javax.servlet.jsp/[email protected]"
},
{
"ref":"pkg:maven/org.apache.logging.log4j/[email protected]",
"dependsOn":[
"pkg:maven/org.apache.logging.log4j/[email protected]",
"pkg:maven/org.apache.logging.log4j/[email protected]"
]
},
{
"ref":"pkg:maven/org.apache.logging.log4j/[email protected]",
"dependsOn":[
"pkg:maven/org.slf4j/[email protected]",
"pkg:maven/org.slf4j/[email protected]",
"pkg:maven/org.apache.logging.log4j/[email protected]",
"pkg:maven/org.apache.logging.log4j/[email protected]"
]
},
{
"ref":"pkg:maven/org.slf4j/[email protected]"
},
{
"ref":"pkg:maven/org.slf4j/[email protected]"
},
{
"ref":"pkg:maven/org.apache.logging.log4j/[email protected]"
},
{
"ref":"pkg:maven/org.apache.logging.log4j/[email protected]",
"dependsOn":[
"pkg:maven/org.slf4j/[email protected]",
"pkg:maven/org.apache.logging.log4j/[email protected]"
]
},
{
"ref":"pkg:maven/org.apache.logging.log4j/[email protected]"
},
{
"ref":"pkg:maven/org.apache.logging.log4j/[email protected]",
"dependsOn":[
"pkg:maven/org.apache.logging.log4j/[email protected]",
"pkg:maven/org.apache.logging.log4j/[email protected]",
"pkg:maven/javax.servlet/[email protected]"
]
},
{
"ref":"pkg:maven/org.apache.logging.log4j/[email protected]",
"dependsOn":[
"pkg:maven/org.lightcouch/[email protected]"
]
},
{
"ref":"pkg:maven/org.apache.logging.log4j/[email protected]",
"dependsOn":[
"pkg:maven/org.mongodb/[email protected]"
]
},
{
"ref":"pkg:maven/org.mongodb/[email protected]"
},
{
"ref":"pkg:maven/org.apache.logging.log4j/[email protected]",
"dependsOn":[
"pkg:maven/org.mongodb/[email protected]"
]
},
{
"ref":"pkg:maven/org.apache.logging.log4j/[email protected]",
"dependsOn":[
"pkg:maven/com.datastax.oss/[email protected]",
"pkg:maven/com.datastax.oss/[email protected]",
"pkg:maven/com.datastax.oss/[email protected]"
]
},
{
"ref":"pkg:maven/com.datastax.oss/[email protected]"
},
{
"ref":"pkg:maven/com.datastax.oss/[email protected]"
},
{
"ref":"pkg:maven/com.datastax.oss/[email protected]"
},
{
"ref":"pkg:maven/org.apache.logging.log4j/[email protected]"
},
{
"ref":"pkg:maven/org.apache.logging.log4j/[email protected]",
"dependsOn":[
"pkg:maven/org.apache.logging.log4j/[email protected]"
]
},
{
"ref":"pkg:maven/org.apache.logging.log4j/[email protected]",
"dependsOn":[
"pkg:maven/org.apache.logging.log4j/[email protected]"
]
},
{
"ref":"pkg:maven/org.apache.logging.log4j/[email protected]"
},
{
"ref":"pkg:maven/org.apache.logging.log4j/[email protected]"
},
{
"ref":"pkg:maven/org.apache.logging.log4j/[email protected]",
"dependsOn":[
"pkg:maven/org.apache.logging.log4j/[email protected]",
"pkg:maven/org.apache.logging.log4j/[email protected]",
"pkg:maven/com.fasterxml.jackson.core/[email protected]",
"pkg:maven/com.fasterxml.jackson.core/[email protected]",
"pkg:maven/com.fasterxml.jackson.core/[email protected]"
]
},
{
"ref":"pkg:maven/com.fasterxml.jackson.core/[email protected]"
},
{
"ref":"pkg:maven/com.fasterxml.jackson.core/[email protected]"
},
{
"ref":"pkg:maven/com.fasterxml.jackson.core/[email protected]",
"dependsOn":[
"pkg:maven/com.fasterxml.jackson.core/[email protected]"
]
},
{
"ref":"pkg:maven/org.apache.logging.log4j/[email protected]"
},
{
"ref":"pkg:maven/org.apache.logging.log4j/[email protected]",
"dependsOn":[
"pkg:maven/org.apache.logging.log4j/[email protected]",
"pkg:maven/org.springframework.cloud/[email protected]",
"pkg:maven/org.springframework.cloud/[email protected]",
"pkg:maven/org.springframework.cloud/[email protected]",
"pkg:maven/commons-logging/[email protected]",
"pkg:maven/org.apache.logging.log4j/[email protected]",
"pkg:maven/org.apache.logging.log4j/[email protected]"
]
},
{
"ref":"pkg:maven/org.apache.logging.log4j/[email protected]",
"dependsOn":[
"pkg:maven/org.springframework.boot/[email protected]",
"pkg:maven/org.springframework/[email protected]",
"pkg:maven/org.springframework/[email protected]"
]
},
{
"ref":"pkg:maven/org.springframework.boot/[email protected]"
},
{
"ref":"pkg:maven/org.springframework/[email protected]"
},
{
"ref":"pkg:maven/org.springframework/[email protected]",
"dependsOn":[
"pkg:maven/org.springframework/[email protected]",
"pkg:maven/org.springframework/[email protected]",
"pkg:maven/org.springframework/[email protected]"
]
},
{
"ref":"pkg:maven/org.springframework/[email protected]"
},
{
"ref":"pkg:maven/org.springframework/[email protected]"
},
{
"ref":"pkg:maven/org.springframework/[email protected]"
},
{
"ref":"pkg:maven/org.springframework.cloud/[email protected]",
"dependsOn":[
"pkg:maven/org.springframework.cloud/[email protected]"
]
},
{
"ref":"pkg:maven/org.springframework.cloud/[email protected]",
"dependsOn":[
"pkg:maven/org.springframework.security/[email protected]"
]
},
{
"ref":"pkg:maven/org.springframework.security/[email protected]",
"dependsOn":[
"pkg:maven/org.bouncycastle/[email protected]"
]
},
{
"ref":"pkg:maven/org.bouncycastle/[email protected]",
"dependsOn":[
"pkg:maven/org.bouncycastle/[email protected]"
]
},
{
"ref":"pkg:maven/org.bouncycastle/[email protected]"
},
{
"ref":"pkg:maven/org.springframework.cloud/[email protected]",
"dependsOn":[
"pkg:maven/org.springframework.boot/[email protected]",
"pkg:maven/org.springframework.cloud/[email protected]",
"pkg:maven/org.springframework.cloud/[email protected]",
"pkg:maven/org.springframework/[email protected]",
"pkg:maven/com.fasterxml.jackson.core/[email protected]",
"pkg:maven/com.fasterxml.jackson.core/[email protected]",
"pkg:maven/org.apache.httpcomponents/[email protected]"
]
},
{
"ref":"pkg:maven/org.springframework.boot/[email protected]"
},
{
"ref":"pkg:maven/org.springframework.cloud/[email protected]",
"dependsOn":[
"pkg:maven/org.springframework.security/[email protected]"
]
},
{
"ref":"pkg:maven/org.springframework.security/[email protected]"
},
{
"ref":"pkg:maven/org.springframework.cloud/[email protected]"
},
{
"ref":"pkg:maven/org.springframework/[email protected]"
},
{
"ref":"pkg:maven/org.apache.httpcomponents/[email protected]",
"dependsOn":[
"pkg:maven/org.apache.httpcomponents/[email protected]",
"pkg:maven/commons-codec/[email protected]"
]
},
{
"ref":"pkg:maven/org.apache.httpcomponents/[email protected]"
},
{
"ref":"pkg:maven/org.springframework.cloud/[email protected]",
"dependsOn":[
"pkg:maven/org.springframework.integration/[email protected]"
]
},
{
"ref":"pkg:maven/org.springframework.integration/[email protected]",
"dependsOn":[
"pkg:maven/org.springframework/[email protected]",
"pkg:maven/org.springframework/[email protected]",
"pkg:maven/org.springframework.retry/[email protected]",
"pkg:maven/io.projectreactor/[email protected]"
]
},
{
"ref":"pkg:maven/org.springframework/[email protected]"
},
{
"ref":"pkg:maven/org.springframework/[email protected]"
},
{
"ref":"pkg:maven/org.springframework.retry/[email protected]"
},
{
"ref":"pkg:maven/io.projectreactor/[email protected]",
"dependsOn":[
"pkg:maven/org.reactivestreams/[email protected]"
]
},
{
"ref":"pkg:maven/org.reactivestreams/[email protected]"
},
{
"ref":"pkg:maven/org.apache.maven.plugins/[email protected]"
},
{
"ref":"pkg:maven/org.apache.rat/[email protected]"
},
{
"ref":"pkg:maven/org.apache.maven.plugins/[email protected]"
}
]
}

from jsonschema.

makdataproj avatar makdataproj commented on May 25, 2024

Can you please provide running code, and describe the expected output and actual output?

The example you posted has two sub-schemas that specify an id of #/properties/hashes, but both have slightly different definitions (the "description" is different). Although the validation behavior is the same in this case, the two schemas could potentially be defined with different behavior. The error is pointing out that this behavior is ambiguous.

Consider giving different, full URIs to each sub-schema e.g. http://example.com/#/properties/hashes, or remove one of the two.

Sorry one other thing is we are not allowed to modify the schema. When we use an online json schema validator it works perfectly fine.

from jsonschema.

awwright avatar awwright commented on May 25, 2024

@makdataproj Unfortunately, looking at the full schema you posted, it has ambiguous behavior. Not only is #/properties/hashes defined twice, but it's not technically legal to define an "$id" containing a /: a "$ref" with a slash points to a schema located at the named JSON property, not a schema with the given $id.

There's no standard behavior on how to handle a schema that re-defines an existing $id. This library simply throws an error in this situation, because if it picked the wrong sub-schema definition, this would be difficult to debug later. (It could also indicate someone trying to maliciously bypass validation.)

You're going to have to report this as an error in the schema. And also potentially report this upstream to the online validator, which should be providing stronger guarantees about which schemas are widely compatible.

from jsonschema.

awwright avatar awwright commented on May 25, 2024

If you link me to the online validator you're using, I can check it out for you.

from jsonschema.

makdataproj avatar makdataproj commented on May 25, 2024

Used https://www.jsonschemavalidator.net/

Added the same schema and the json I posted to validate.

from jsonschema.

makdataproj avatar makdataproj commented on May 25, 2024

I am getting an issue with this schema as well, if you could please check what the possible issues are and why it's not working with jsonschema:

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"title": "CycloneDX Software Bill of Materials Standard",
"$comment" : "CycloneDX JSON schema is published under the terms of the Apache License 2.0.",
"required": [
"bomFormat",
"specVersion",
"version"
],
"additionalProperties": false,
"properties": {
"$schema": {
"type": "string",
"enum": [
"http://cyclonedx.org/schema/bom-1.4.schema.json"
]
},
"bomFormat": {
"type": "string",
"title": "BOM Format",
"description": "Specifies the format of the BOM. This helps to identify the file as CycloneDX since BOMs do not have a filename convention nor does JSON schema support namespaces. This value MUST be "CycloneDX".",
"enum": [
"CycloneDX"
]
},
"specVersion": {
"type": "string",
"title": "CycloneDX Specification Version",
"description": "The version of the CycloneDX specification a BOM conforms to (starting at version 1.2).",
"examples": ["1.4"]
},
"serialNumber": {
"type": "string",
"title": "BOM Serial Number",
"description": "Every BOM generated SHOULD have a unique serial number, even if the contents of the BOM have not changed over time. If specified, the serial number MUST conform to RFC-4122. Use of serial numbers are RECOMMENDED.",
"examples": ["urn:uuid:3e671687-395b-41f5-a30f-a58921a69b79"],
"pattern": "^urn:uuid:[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$"
},
"version": {
"type": "integer",
"title": "BOM Version",
"description": "Whenever an existing BOM is modified, either manually or through automated processes, the version of the BOM SHOULD be incremented by 1. When a system is presented with multiple BOMs with identical serial numbers, the system SHOULD use the most recent version of the BOM. The default version is '1'.",
"default": 1,
"examples": [1]
},
"metadata": {
"$ref": "#/definitions/metadata",
"title": "BOM Metadata",
"description": "Provides additional information about a BOM."
},
"components": {
"type": "array",
"additionalItems": false,
"items": {"$ref": "#/definitions/component"},
"uniqueItems": true,
"title": "Components",
"description": "A list of software and hardware components."
},
"services": {
"type": "array",
"additionalItems": false,
"items": {"$ref": "#/definitions/service"},
"uniqueItems": true,
"title": "Services",
"description": "A list of services. This may include microservices, function-as-a-service, and other types of network or intra-process services."
},
"externalReferences": {
"type": "array",
"additionalItems": false,
"items": {"$ref": "#/definitions/externalReference"},
"title": "External References",
"description": "External references provide a way to document systems, sites, and information that may be relevant but which are not included with the BOM."
},
"dependencies": {
"type": "array",
"additionalItems": false,
"items": {"$ref": "#/definitions/dependency"},
"uniqueItems": true,
"title": "Dependencies",
"description": "Provides the ability to document dependency relationships."
},
"compositions": {
"type": "array",
"additionalItems": false,
"items": {"$ref": "#/definitions/compositions"},
"uniqueItems": true,
"title": "Compositions",
"description": "Compositions describe constituent parts (including components, services, and dependency relationships) and their completeness."
},
"vulnerabilities": {
"type": "array",
"additionalItems": false,
"items": {"$ref": "#/definitions/vulnerability"},
"uniqueItems": true,
"title": "Vulnerabilities",
"description": "Vulnerabilities identified in components or services."
},
"signature": {
"$ref": "#/definitions/signature",
"title": "Signature",
"description": "Enveloped signature in JSON Signature Format (JSF)."
}
},
"definitions": {
"refType": {
"$comment": "Identifier-DataType for interlinked elements.",
"type": "string"
},
"metadata": {
"type": "object",
"title": "BOM Metadata Object",
"additionalProperties": false,
"properties": {
"timestamp": {
"type": "string",
"format": "date-time",
"title": "Timestamp",
"description": "The date and time (timestamp) when the BOM was created."
},
"tools": {
"type": "array",
"title": "Creation Tools",
"description": "The tool(s) used in the creation of the BOM.",
"additionalItems": false,
"items": {"$ref": "#/definitions/tool"}
},
"authors" :{
"type": "array",
"title": "Authors",
"description": "The person(s) who created the BOM. Authors are common in BOMs created through manual processes. BOMs created through automated means may not have authors.",
"additionalItems": false,
"items": {"$ref": "#/definitions/organizationalContact"}
},
"component": {
"title": "Component",
"description": "The component that the BOM describes.",
"$ref": "#/definitions/component"
},
"manufacture": {
"title": "Manufacture",
"description": "The organization that manufactured the component that the BOM describes.",
"$ref": "#/definitions/organizationalEntity"
},
"supplier": {
"title": "Supplier",
"description": " The organization that supplied the component that the BOM describes. The supplier may often be the manufacturer, but may also be a distributor or repackager.",
"$ref": "#/definitions/organizationalEntity"
},
"licenses": {
"type": "array",
"title": "BOM License(s)",
"additionalItems": false,
"items": {"$ref": "#/definitions/licenseChoice"}
},
"properties": {
"type": "array",
"title": "Properties",
"description": "Provides the ability to document properties in a name-value store. This provides flexibility to include data not officially supported in the standard without having to use additional namespaces or create extensions. Unlike key-value stores, properties support duplicate names, each potentially having different values. Property names of interest to the general public are encouraged to be registered in the CycloneDX Property Taxonomy. Formal registration is OPTIONAL.",
"additionalItems": false,
"items": {"$ref": "#/definitions/property"}
}
}
},
"tool": {
"type": "object",
"title": "Tool",
"description": "Information about the automated or manual tool used",
"additionalProperties": false,
"properties": {
"vendor": {
"type": "string",
"title": "Tool Vendor",
"description": "The name of the vendor who created the tool"
},
"name": {
"type": "string",
"title": "Tool Name",
"description": "The name of the tool"
},
"version": {
"type": "string",
"title": "Tool Version",
"description": "The version of the tool"
},
"hashes": {
"type": "array",
"additionalItems": false,
"items": {"$ref": "#/definitions/hash"},
"title": "Hashes",
"description": "The hashes of the tool (if applicable)."
},
"externalReferences": {
"type": "array",
"additionalItems": false,
"items": {"$ref": "#/definitions/externalReference"},
"title": "External References",
"description": "External references provide a way to document systems, sites, and information that may be relevant but which are not included with the BOM."
}
}
},
"organizationalEntity": {
"type": "object",
"title": "Organizational Entity Object",
"description": "",
"additionalProperties": false,
"properties": {
"name": {
"type": "string",
"title": "Name",
"description": "The name of the organization",
"examples": [
"Example Inc."
]
},
"url": {
"type": "array",
"items": {
"type": "string",
"format": "iri-reference"
},
"title": "URL",
"description": "The URL of the organization. Multiple URLs are allowed.",
"examples": ["https://example.com"]
},
"contact": {
"type": "array",
"title": "Contact",
"description": "A contact at the organization. Multiple contacts are allowed.",
"additionalItems": false,
"items": {"$ref": "#/definitions/organizationalContact"}
}
}
},
"organizationalContact": {
"type": "object",
"title": "Organizational Contact Object",
"description": "",
"additionalProperties": false,
"properties": {
"name": {
"type": "string",
"title": "Name",
"description": "The name of a contact",
"examples": ["Contact name"]
},
"email": {
"type": "string",
"format": "idn-email",
"title": "Email Address",
"description": "The email address of the contact.",
"examples": ["[email protected]"]
},
"phone": {
"type": "string",
"title": "Phone",
"description": "The phone number of the contact.",
"examples": ["800-555-1212"]
}
}
},
"component": {
"type": "object",
"title": "Component Object",
"required": [
"type",
"name"
],
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"enum": [
"application",
"framework",
"library",
"container",
"operating-system",
"device",
"firmware",
"file"
],
"title": "Component Type",
"description": "Specifies the type of component. For software components, classify as application if no more specific appropriate classification is available or cannot be determined for the component. Types include:\n\n* application = A software application. Refer to https://en.wikipedia.org/wiki/Application_software for information about applications.\n* framework = A software framework. Refer to https://en.wikipedia.org/wiki/Software_framework for information on how frameworks vary slightly from libraries.\n* library = A software library. Refer to https://en.wikipedia.org/wiki/Library_(computing)\n for information about libraries. All third-party and open source reusable components will likely be a library. If the library also has key features of a framework, then it should be classified as a framework. If not, or is unknown, then specifying library is RECOMMENDED.\n* container = A packaging and/or runtime format, not specific to any particular technology, which isolates software inside the container from software outside of a container through virtualization technology. Refer to https://en.wikipedia.org/wiki/OS-level_virtualization\n* operating-system = A software operating system without regard to deployment model (i.e. installed on physical hardware, virtual machine, image, etc) Refer to https://en.wikipedia.org/wiki/Operating_system\n* device = A hardware device such as a processor, or chip-set. A hardware device containing firmware SHOULD include a component for the physical hardware itself, and another component of type 'firmware' or 'operating-system' (whichever is relevant), describing information about the software running on the device.\n* firmware = A special type of software that provides low-level control over a devices hardware. Refer to https://en.wikipedia.org/wiki/Firmware\n* file = A computer file. Refer to https://en.wikipedia.org/wiki/Computer_file for information about files.",
"examples": ["library"]
},
"mime-type": {
"type": "string",
"title": "Mime-Type",
"description": "The optional mime-type of the component. When used on file components, the mime-type can provide additional context about the kind of file being represented such as an image, font, or executable. Some library or framework components may also have an associated mime-type.",
"examples": ["image/jpeg"],
"pattern": "^[-+a-z0-9.]+/[-+a-z0-9.]+$"
},
"bom-ref": {
"$ref": "#/definitions/refType",
"title": "BOM Reference",
"description": "An optional identifier which can be used to reference the component elsewhere in the BOM. Every bom-ref MUST be unique within the BOM."
},
"supplier": {
"title": "Component Supplier",
"description": " The organization that supplied the component. The supplier may often be the manufacturer, but may also be a distributor or repackager.",
"$ref": "#/definitions/organizationalEntity"
},
"author": {
"type": "string",
"title": "Component Author",
"description": "The person(s) or organization(s) that authored the component",
"examples": ["Acme Inc"]
},
"publisher": {
"type": "string",
"title": "Component Publisher",
"description": "The person(s) or organization(s) that published the component",
"examples": ["Acme Inc"]
},
"group": {
"type": "string",
"title": "Component Group",
"description": "The grouping name or identifier. This will often be a shortened, single name of the company or project that produced the component, or the source package or domain name. Whitespace and special characters should be avoided. Examples include: apache, org.apache.commons, and apache.org.",
"examples": ["com.acme"]
},
"name": {
"type": "string",
"title": "Component Name",
"description": "The name of the component. This will often be a shortened, single name of the component. Examples: commons-lang3 and jquery",
"examples": ["tomcat-catalina"]
},
"version": {
"type": "string",
"title": "Component Version",
"description": "The component version. The version should ideally comply with semantic versioning but is not enforced.",
"examples": ["9.0.14"]
},
"description": {
"type": "string",
"title": "Component Description",
"description": "Specifies a description for the component"
},
"scope": {
"type": "string",
"enum": [
"required",
"optional",
"excluded"
],
"title": "Component Scope",
"description": "Specifies the scope of the component. If scope is not specified, 'required' scope SHOULD be assumed by the consumer of the BOM.",
"default": "required"
},
"hashes": {
"type": "array",
"title": "Component Hashes",
"additionalItems": false,
"items": {"$ref": "#/definitions/hash"}
},
"licenses": {
"type": "array",
"additionalItems": false,
"items": {"$ref": "#/definitions/licenseChoice"},
"title": "Component License(s)"
},
"copyright": {
"type": "string",
"title": "Component Copyright",
"description": "A copyright notice informing users of the underlying claims to copyright ownership in a published work.",
"examples": ["Acme Inc"]
},
"cpe": {
"type": "string",
"title": "Component Common Platform Enumeration (CPE)",
"description": "Specifies a well-formed CPE name that conforms to the CPE 2.2 or 2.3 specification. See https://nvd.nist.gov/products/cpe",
"examples": ["cpe:2.3:a:acme:component_framework:-:::::::"]
},
"purl": {
"type": "string",
"title": "Component Package URL (purl)",
"description": "Specifies the package-url (purl). The purl, if specified, MUST be valid and conform to the specification defined at: https://github.com/package-url/purl-spec",
"examples": ["pkg:maven/com.acme/[email protected]?packaging=jar"]
},
"swid": {
"$ref": "#/definitions/swid",
"title": "SWID Tag",
"description": "Specifies metadata and content for ISO-IEC 19770-2 Software Identification (SWID) Tags."
},
"modified": {
"type": "boolean",
"title": "Component Modified From Original",
"description": "[Deprecated] - DO NOT USE. This will be removed in a future version. Use the pedigree element instead to supply information on exactly how the component was modified. A boolean value indicating if the component has been modified from the original. A value of true indicates the component is a derivative of the original. A value of false indicates the component has not been modified from the original."
},
"pedigree": {
"type": "object",
"title": "Component Pedigree",
"description": "Component pedigree is a way to document complex supply chain scenarios where components are created, distributed, modified, redistributed, combined with other components, etc. Pedigree supports viewing this complex chain from the beginning, the end, or anywhere in the middle. It also provides a way to document variants where the exact relation may not be known.",
"additionalProperties": false,
"properties": {
"ancestors": {
"type": "array",
"title": "Ancestors",
"description": "Describes zero or more components in which a component is derived from. This is commonly used to describe forks from existing projects where the forked version contains a ancestor node containing the original component it was forked from. For example, Component A is the original component. Component B is the component being used and documented in the BOM. However, Component B contains a pedigree node with a single ancestor documenting Component A - the original component from which Component B is derived from.",
"additionalItems": false,
"items": {"$ref": "#/definitions/component"}
},
"descendants": {
"type": "array",
"title": "Descendants",
"description": "Descendants are the exact opposite of ancestors. This provides a way to document all forks (and their forks) of an original or root component.",
"additionalItems": false,
"items": {"$ref": "#/definitions/component"}
},
"variants": {
"type": "array",
"title": "Variants",
"description": "Variants describe relations where the relationship between the components are not known. For example, if Component A contains nearly identical code to Component B. They are both related, but it is unclear if one is derived from the other, or if they share a common ancestor.",
"additionalItems": false,
"items": {"$ref": "#/definitions/component"}
},
"commits": {
"type": "array",
"title": "Commits",
"description": "A list of zero or more commits which provide a trail describing how the component deviates from an ancestor, descendant, or variant.",
"additionalItems": false,
"items": {"$ref": "#/definitions/commit"}
},
"patches": {
"type": "array",
"title": "Patches",
"description": ">A list of zero or more patches describing how the component deviates from an ancestor, descendant, or variant. Patches may be complimentary to commits or may be used in place of commits.",
"additionalItems": false,
"items": {"$ref": "#/definitions/patch"}
},
"notes": {
"type": "string",
"title": "Notes",
"description": "Notes, observations, and other non-structured commentary describing the components pedigree."
}
}
},
"externalReferences": {
"type": "array",
"additionalItems": false,
"items": {"$ref": "#/definitions/externalReference"},
"title": "External References",
"description": "External references provide a way to document systems, sites, and information that may be relevant but which are not included with the BOM."
},
"components": {
"type": "array",
"additionalItems": false,
"items": {"$ref": "#/definitions/component"},
"uniqueItems": true,
"title": "Components",
"description": "A list of software and hardware components included in the parent component. This is not a dependency tree. It provides a way to specify a hierarchical representation of component assemblies, similar to system → subsystem → parts assembly in physical supply chains."
},
"evidence": {
"$ref": "#/definitions/componentEvidence",
"title": "Evidence",
"description": "Provides the ability to document evidence collected through various forms of extraction or analysis."
},
"releaseNotes": {
"$ref": "#/definitions/releaseNotes",
"title": "Release notes",
"description": "Specifies optional release notes."
},
"properties": {
"type": "array",
"title": "Properties",
"description": "Provides the ability to document properties in a name-value store. This provides flexibility to include data not officially supported in the standard without having to use additional namespaces or create extensions. Unlike key-value stores, properties support duplicate names, each potentially having different values. Property names of interest to the general public are encouraged to be registered in the CycloneDX Property Taxonomy. Formal registration is OPTIONAL.",
"additionalItems": false,
"items": {"$ref": "#/definitions/property"}
},
"signature": {
"$ref": "#/definitions/signature",
"title": "Signature",
"description": "Enveloped signature in JSON Signature Format (JSF)."
}
}
},
"swid": {
"type": "object",
"title": "SWID Tag",
"description": "Specifies metadata and content for ISO-IEC 19770-2 Software Identification (SWID) Tags.",
"required": [
"tagId",
"name"
],
"additionalProperties": false,
"properties": {
"tagId": {
"type": "string",
"title": "Tag ID",
"description": "Maps to the tagId of a SoftwareIdentity."
},
"name": {
"type": "string",
"title": "Name",
"description": "Maps to the name of a SoftwareIdentity."
},
"version": {
"type": "string",
"title": "Version",
"default": "0.0",
"description": "Maps to the version of a SoftwareIdentity."
},
"tagVersion": {
"type": "integer",
"title": "Tag Version",
"default": 0,
"description": "Maps to the tagVersion of a SoftwareIdentity."
},
"patch": {
"type": "boolean",
"title": "Patch",
"default": false,
"description": "Maps to the patch of a SoftwareIdentity."
},
"text": {
"title": "Attachment text",
"description": "Specifies the metadata and content of the SWID tag.",
"$ref": "#/definitions/attachment"
},
"url": {
"type": "string",
"title": "URL",
"description": "The URL to the SWID file.",
"format": "iri-reference"
}
}
},
"attachment": {
"type": "object",
"title": "Attachment",
"description": "Specifies the metadata and content for an attachment.",
"required": [
"content"
],
"additionalProperties": false,
"properties": {
"contentType": {
"type": "string",
"title": "Content-Type",
"description": "Specifies the content type of the text. Defaults to text/plain if not specified.",
"default": "text/plain"
},
"encoding": {
"type": "string",
"title": "Encoding",
"description": "Specifies the optional encoding the text is represented in.",
"enum": [
"base64"
]
},
"content": {
"type": "string",
"title": "Attachment Text",
"description": "The attachment data. Proactive controls such as input validation and sanitization should be employed to prevent misuse of attachment text."
}
}
},
"hash": {
"type": "object",
"title": "Hash Objects",
"required": [
"alg",
"content"
],
"additionalProperties": false,
"properties": {
"alg": {
"$ref": "#/definitions/hash-alg"
},
"content": {
"$ref": "#/definitions/hash-content"
}
}
},
"hash-alg": {
"type": "string",
"enum": [
"MD5",
"SHA-1",
"SHA-256",
"SHA-384",
"SHA-512",
"SHA3-256",
"SHA3-384",
"SHA3-512",
"BLAKE2b-256",
"BLAKE2b-384",
"BLAKE2b-512",
"BLAKE3"
],
"title": "Hash Algorithm"
},
"hash-content": {
"type": "string",
"title": "Hash Content (value)",
"examples": ["3942447fac867ae5cdb3229b658f4d48"],
"pattern": "^([a-fA-F0-9]{32}|[a-fA-F0-9]{40}|[a-fA-F0-9]{64}|[a-fA-F0-9]{96}|[a-fA-F0-9]{128})$"
},
"license": {
"type": "object",
"title": "License Object",
"oneOf": [
{
"required": ["id"]
},
{
"required": ["name"]
}
],
"additionalProperties": false,
"properties": {
"name": {
"type": "string",
"title": "License Name",
"description": "If SPDX does not define the license used, this field may be used to provide the license name",
"examples": ["Acme Software License"]
},
"text": {
"title": "License text",
"description": "An optional way to include the textual content of a license.",
"$ref": "#/definitions/attachment"
},
"url": {
"type": "string",
"title": "License URL",
"description": "The URL to the license file. If specified, a 'license' externalReference should also be specified for completeness",
"examples": ["https://www.apache.org/licenses/LICENSE-2.0.txt"],
"format": "iri-reference"
}
}
},
"licenseChoice": {
"type": "object",
"title": "License(s)",
"additionalProperties": false,
"properties": {
"license": {
"$ref": "#/definitions/license"
},
"expression": {
"type": "string",
"title": "SPDX License Expression",
"examples": [
"Apache-2.0 AND (MIT OR GPL-2.0-only)",
"GPL-3.0-only WITH Classpath-exception-2.0"
]
}
},
"oneOf":[
{
"required": ["license"]
},
{
"required": ["expression"]
}
]
},
"commit": {
"type": "object",
"title": "Commit",
"description": "Specifies an individual commit",
"additionalProperties": false,
"properties": {
"uid": {
"type": "string",
"title": "UID",
"description": "A unique identifier of the commit. This may be version control specific. For example, Subversion uses revision numbers whereas git uses commit hashes."
},
"url": {
"type": "string",
"title": "URL",
"description": "The URL to the commit. This URL will typically point to a commit in a version control system.",
"format": "iri-reference"
},
"author": {
"title": "Author",
"description": "The author who created the changes in the commit",
"$ref": "#/definitions/identifiableAction"
},
"committer": {
"title": "Committer",
"description": "The person who committed or pushed the commit",
"$ref": "#/definitions/identifiableAction"
},
"message": {
"type": "string",
"title": "Message",
"description": "The text description of the contents of the commit"
}
}
},
"patch": {
"type": "object",
"title": "Patch",
"description": "Specifies an individual patch",
"required": [
"type"
],
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"enum": [
"unofficial",
"monkey",
"backport",
"cherry-pick"
],
"title": "Type",
"description": "Specifies the purpose for the patch including the resolution of defects, security issues, or new behavior or functionality.\n\n
unofficial = A patch which is not developed by the creators or maintainers of the software being patched. Refer to https://en.wikipedia.org/wiki/Unofficial_patch\n* monkey = A patch which dynamically modifies runtime behavior. Refer to https://en.wikipedia.org/wiki/Monkey_patch\n* backport = A patch which takes code from a newer version of software and applies it to older versions of the same software. Refer to https://en.wikipedia.org/wiki/Backporting\n* cherry-pick = A patch created by selectively applying commits from other versions or branches of the same software."
},
"diff": {
"title": "Diff",
"description": "The patch file (or diff) that show changes. Refer to https://en.wikipedia.org/wiki/Diff",
"$ref": "#/definitions/diff"
},
"resolves": {
"type": "array",
"additionalItems": false,
"items": {"$ref": "#/definitions/issue"},
"title": "Resolves",
"description": "A collection of issues the patch resolves"
}
}
},
"diff": {
"type": "object",
"title": "Diff",
"description": "The patch file (or diff) that show changes. Refer to https://en.wikipedia.org/wiki/Diff",
"additionalProperties": false,
"properties": {
"text": {
"title": "Diff text",
"description": "Specifies the optional text of the diff",
"$ref": "#/definitions/attachment"
},
"url": {
"type": "string",
"title": "URL",
"description": "Specifies the URL to the diff",
"format": "iri-reference"
}
}
},
"issue": {
"type": "object",
"title": "Diff",
"description": "An individual issue that has been resolved.",
"required": [
"type"
],
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"enum": [
"defect",
"enhancement",
"security"
],
"title": "Type",
"description": "Specifies the type of issue"
},
"id": {
"type": "string",
"title": "ID",
"description": "The identifier of the issue assigned by the source of the issue"
},
"name": {
"type": "string",
"title": "Name",
"description": "The name of the issue"
},
"description": {
"type": "string",
"title": "Description",
"description": "A description of the issue"
},
"source": {
"type": "object",
"title": "Source",
"description": "The source of the issue where it is documented",
"additionalProperties": false,
"properties": {
"name": {
"type": "string",
"title": "Name",
"description": "The name of the source. For example 'National Vulnerability Database', 'NVD', and 'Apache'"
},
"url": {
"type": "string",
"title": "URL",
"description": "The url of the issue documentation as provided by the source",
"format": "iri-reference"
}
}
},
"references": {
"type": "array",
"items": {
"type": "string",
"format": "iri-reference"
},
"title": "References",
"description": "A collection of URL's for reference. Multiple URLs are allowed.",
"examples": ["https://example.com"]
}
}
},
"identifiableAction": {
"type": "object",
"title": "Identifiable Action",
"description": "Specifies an individual commit",
"additionalProperties": false,
"properties": {
"timestamp": {
"type": "string",
"format": "date-time",
"title": "Timestamp",
"description": "The timestamp in which the action occurred"
},
"name": {
"type": "string",
"title": "Name",
"description": "The name of the individual who performed the action"
},
"email": {
"type": "string",
"format": "idn-email",
"title": "E-mail",
"description": "The email address of the individual who performed the action"
}
}
},
"externalReference": {
"type": "object",
"title": "External Reference",
"description": "Specifies an individual external reference",
"required": [
"url",
"type"
],
"additionalProperties": false,
"properties": {
"url": {
"type": "string",
"title": "URL",
"description": "The URL to the external reference",
"format": "iri-reference"
},
"comment": {
"type": "string",
"title": "Comment",
"description": "An optional comment describing the external reference"
},
"type": {
"type": "string",
"title": "Type",
"description": "Specifies the type of external reference. There are built-in types to describe common references. If a type does not exist for the reference being referred to, use the "other" type.",
"enum": [
"vcs",
"issue-tracker",
"website",
"advisories",
"bom",
"mailing-list",
"social",
"chat",
"documentation",
"support",
"distribution",
"license",
"build-meta",
"build-system",
"release-notes",
"other"
]
},
"hashes": {
"type": "array",
"additionalItems": false,
"items": {"$ref": "#/definitions/hash"},
"title": "Hashes",
"description": "The hashes of the external reference (if applicable)."
}
}
},
"dependency": {
"type": "object",
"title": "Dependency",
"description": "Defines the direct dependencies of a component. Components that do not have their own dependencies MUST be declared as empty elements within the graph. Components that are not represented in the dependency graph MAY have unknown dependencies. It is RECOMMENDED that implementations assume this to be opaque and not an indicator of a component being dependency-free.",
"required": [
"ref"
],
"additionalProperties": false,
"properties": {
"ref": {
"$ref": "#/definitions/refType",
"title": "Reference",
"description": "References a component by the components bom-ref attribute"
},
"dependsOn": {
"type": "array",
"uniqueItems": true,
"additionalItems": false,
"items": {
"$ref": "#/definitions/refType"
},
"title": "Depends On",
"description": "The bom-ref identifiers of the components that are dependencies of this dependency object."
}
}
},
"service": {
"type": "object",
"title": "Service Object",
"required": [
"name"
],
"additionalProperties": false,
"properties": {
"bom-ref": {
"$ref": "#/definitions/refType",
"title": "BOM Reference",
"description": "An optional identifier which can be used to reference the service elsewhere in the BOM. Every bom-ref MUST be unique within the BOM."
},
"provider": {
"title": "Provider",
"description": "The organization that provides the service.",
"$ref": "#/definitions/organizationalEntity"
},
"group": {
"type": "string",
"title": "Service Group",
"description": "The grouping name, namespace, or identifier. This will often be a shortened, single name of the company or project that produced the service or domain name. Whitespace and special characters should be avoided.",
"examples": ["com.acme"]
},
"name": {
"type": "string",
"title": "Service Name",
"description": "The name of the service. This will often be a shortened, single name of the service.",
"examples": ["ticker-service"]
},
"version": {
"type": "string",
"title": "Service Version",
"description": "The service version.",
"examples": ["1.0.0"]
},
"description": {
"type": "string",
"title": "Service Description",
"description": "Specifies a description for the service"
},
"endpoints": {
"type": "array",
"items": {
"type": "string",
"format": "iri-reference"
},
"title": "Endpoints",
"description": "The endpoint URIs of the service. Multiple endpoints are allowed.",
"examples": ["https://example.com/api/v1/ticker"]
},
"authenticated": {
"type": "boolean",
"title": "Authentication Required",
"description": "A boolean value indicating if the service requires authentication. A value of true indicates the service requires authentication prior to use. A value of false indicates the service does not require authentication."
},
"x-trust-boundary": {
"type": "boolean",
"title": "Crosses Trust Boundary",
"description": "A boolean value indicating if use of the service crosses a trust zone or boundary. A value of true indicates that by using the service, a trust boundary is crossed. A value of false indicates that by using the service, a trust boundary is not crossed."
},
"data": {
"type": "array",
"additionalItems": false,
"items": {"$ref": "#/definitions/dataClassification"},
"title": "Data Classification",
"description": "Specifies the data classification."
},
"licenses": {
"type": "array",
"additionalItems": false,
"items": {"$ref": "#/definitions/licenseChoice"},
"title": "Component License(s)"
},
"externalReferences": {
"type": "array",
"additionalItems": false,
"items": {"$ref": "#/definitions/externalReference"},
"title": "External References",
"description": "External references provide a way to document systems, sites, and information that may be relevant but which are not included with the BOM."
},
"services": {
"type": "array",
"additionalItems": false,
"items": {"$ref": "#/definitions/service"},
"uniqueItems": true,
"title": "Services",
"description": "A list of services included or deployed behind the parent service. This is not a dependency tree. It provides a way to specify a hierarchical representation of service assemblies."
},
"releaseNotes": {
"$ref": "#/definitions/releaseNotes",
"title": "Release notes",
"description": "Specifies optional release notes."
},
"properties": {
"type": "array",
"title": "Properties",
"description": "Provides the ability to document properties in a name-value store. This provides flexibility to include data not officially supported in the standard without having to use additional namespaces or create extensions. Unlike key-value stores, properties support duplicate names, each potentially having different values. Property names of interest to the general public are encouraged to be registered in the CycloneDX Property Taxonomy. Formal registration is OPTIONAL.",
"additionalItems": false,
"items": {"$ref": "#/definitions/property"}
},
"signature": {
"$ref": "#/definitions/signature",
"title": "Signature",
"description": "Enveloped signature in JSON Signature Format (JSF)."
}
}
},
"dataClassification": {
"type": "object",
"title": "Hash Objects",
"required": [
"flow",
"classification"
],
"additionalProperties": false,
"properties": {
"flow": {
"$ref": "#/definitions/dataFlow",
"title": "Directional Flow",
"description": "Specifies the flow direction of the data. Direction is relative to the service. Inbound flow states that data enters the service. Outbound flow states that data leaves the service. Bi-directional states that data flows both ways, and unknown states that the direction is not known."
},
"classification": {
"type": "string",
"title": "Classification",
"description": "Data classification tags data according to its type, sensitivity, and value if altered, stolen, or destroyed."
}
}
},
"dataFlow": {
"type": "string",
"enum": [
"inbound",
"outbound",
"bi-directional",
"unknown"
],
"title": "Data flow direction",
"description": "Specifies the flow direction of the data. Direction is relative to the service. Inbound flow states that data enters the service. Outbound flow states that data leaves the service. Bi-directional states that data flows both ways, and unknown states that the direction is not known."
},

  "copyright": {
    "type": "object",
    "title": "Copyright",
    "required": [
      "text"
    ],
    "additionalProperties": false,
    "properties": {
      "text": {
        "type": "string",
        "title": "Copyright Text"
      }
    }
  },

  "componentEvidence": {
    "type": "object",
    "title": "Evidence",
    "description": "Provides the ability to document evidence collected through various forms of extraction or analysis.",
    "additionalProperties": false,
    "properties": {
      "licenses": {
        "type": "array",
        "additionalItems": false,
        "items": {"$ref": "#/definitions/licenseChoice"},
        "title": "Component License(s)"
      },
      "copyright": {
        "type": "array",
        "additionalItems": false,
        "items": {"$ref": "#/definitions/copyright"},
        "title": "Copyright"
      }
    }
  },
  "compositions": {
    "type": "object",
    "title": "Compositions",
    "required": [
      "aggregate"
    ],
    "additionalProperties": false,
    "properties": {
      "aggregate": {
        "$ref": "#/definitions/aggregateType",
        "title": "Aggregate",
        "description": "Specifies an aggregate type that describe how complete a relationship is."
      },
      "assemblies": {
        "type": "array",
        "uniqueItems": true,
        "items": {
          "type": "string"
        },
        "title": "BOM references",
        "description": "The bom-ref identifiers of the components or services being described. Assemblies refer to nested relationships whereby a constituent part may include other constituent parts. References do not cascade to child parts. References are explicit for the specified constituent part only."
      },
      "dependencies": {
        "type": "array",
        "uniqueItems": true,
        "items": {
          "type": "string"
        },
        "title": "BOM references",
        "description": "The bom-ref identifiers of the components or services being described. Dependencies refer to a relationship whereby an independent constituent part requires another independent constituent part. References do not cascade to transitive dependencies. References are explicit for the specified dependency only."
      },
      "signature": {
        "$ref": "#/definitions/signature",
        "title": "Signature",
        "description": "Enveloped signature in [JSON Signature Format (JSF)](https://cyberphone.github.io/doc/security/jsf.html)."
      }
    }
  },
  "aggregateType": {
    "type": "string",
    "default": "not_specified",
    "enum": [
      "complete",
      "incomplete",
      "incomplete_first_party_only",
      "incomplete_third_party_only",
      "unknown",
      "not_specified"
    ]
  },
  "property": {
    "type": "object",
    "title": "Lightweight name-value pair",
    "properties": {
      "name": {
        "type": "string",
        "title": "Name",
        "description": "The name of the property. Duplicate names are allowed, each potentially having a different value."
      },
      "value": {
        "type": "string",
        "title": "Value",
        "description": "The value of the property."
      }
    }
  },
  "localeType": {
    "type": "string",
    "pattern": "^([a-z]{2})(-[A-Z]{2})?$",
    "title": "Locale",
    "description": "Defines a syntax for representing two character language code (ISO-639) followed by an optional two character country code. The language code MUST be lower case. If the country code is specified, the country code MUST be upper case. The language code and country code MUST be separated by a minus sign. Examples: en, en-US, fr, fr-CA"
  },
  "releaseType": {
    "type": "string",
    "examples": [
      "major",
      "minor",
      "patch",
      "pre-release",
      "internal"
    ],
    "description": "The software versioning type. It is RECOMMENDED that the release type use one of 'major', 'minor', 'patch', 'pre-release', or 'internal'. Representing all possible software release types is not practical, so standardizing on the recommended values, whenever possible, is strongly encouraged.\n\n* __major__ = A major release may contain significant changes or may introduce breaking changes.\n* __minor__ = A minor release, also known as an update, may contain a smaller number of changes than major releases.\n* __patch__ = Patch releases are typically unplanned and may resolve defects or important security issues.\n* __pre-release__ = A pre-release may include alpha, beta, or release candidates and typically have limited support. They provide the ability to preview a release prior to its general availability.\n* __internal__ = Internal releases are not for public consumption and are intended to be used exclusively by the project or manufacturer that produced it."
  },
  "note": {
    "type": "object",
    "title": "Note",
    "description": "A note containing the locale and content.",
    "required": [
      "text"
    ],
    "additionalProperties": false,
    "properties": {
      "locale": {
        "$ref": "#/definitions/localeType",
        "title": "Locale",
        "description": "The ISO-639 (or higher) language code and optional ISO-3166 (or higher) country code. Examples include: \"en\", \"en-US\", \"fr\" and \"fr-CA\""
      },
      "text": {
        "title": "Release note content",
        "description": "Specifies the full content of the release note.",
        "$ref": "#/definitions/attachment"
      }
    }
  },
  "releaseNotes": {
    "type": "object",
    "title": "Release notes",
    "required": [
      "type"
    ],
    "additionalProperties": false,
    "properties": {
      "type": {
        "$ref": "#/definitions/releaseType",
        "title": "Type",
        "description": "The software versioning type the release note describes."
      },
      "title": {
        "type": "string",
        "title": "Title",
        "description": "The title of the release."
      },
      "featuredImage": {
        "type": "string",
        "format": "iri-reference",
        "title": "Featured image",
        "description": "The URL to an image that may be prominently displayed with the release note."
      },
      "socialImage": {
        "type": "string",
        "format": "iri-reference",
        "title": "Social image",
        "description": "The URL to an image that may be used in messaging on social media platforms."
      },
      "description": {
        "type": "string",
        "title": "Description",
        "description": "A short description of the release."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "Timestamp",
        "description": "The date and time (timestamp) when the release note was created."
      },
      "aliases": {
        "type": "array",
        "items": {
          "type": "string"
        },
        "title": "Aliases",
        "description": "One or more alternate names the release may be referred to. This may include unofficial terms used by development and marketing teams (e.g. code names)."
      },
      "tags": {
        "type": "array",
        "items": {
          "type": "string"
        },
        "title": "Tags",
        "description": "One or more tags that may aid in search or retrieval of the release note."
      },
      "resolves": {
        "type": "array",
        "additionalItems": false,
        "items": {"$ref": "#/definitions/issue"},
        "title": "Resolves",
        "description": "A collection of issues that have been resolved."
      },
      "notes": {
        "type": "array",
        "additionalItems": false,
        "items": {"$ref": "#/definitions/note"},
        "title": "Notes",
        "description": "Zero or more release notes containing the locale and content. Multiple note objects may be specified to support release notes in a wide variety of languages."
      },
      "properties": {
        "type": "array",
        "title": "Properties",
        "description": "Provides the ability to document properties in a name-value store. This provides flexibility to include data not officially supported in the standard without having to use additional namespaces or create extensions. Unlike key-value stores, properties support duplicate names, each potentially having different values. Property names of interest to the general public are encouraged to be registered in the [CycloneDX Property Taxonomy](https://github.com/CycloneDX/cyclonedx-property-taxonomy). Formal registration is OPTIONAL.",
        "additionalItems": false,
        "items": {"$ref": "#/definitions/property"}
      }
    }
  },
  "advisory": {
    "type": "object",
    "title": "Advisory",
    "description": "Title and location where advisory information can be obtained. An advisory is a notification of a threat to a component, service, or system.",
    "required": ["url"],
    "additionalProperties": false,
    "properties": {
      "title": {
        "type": "string",
        "title": "Title",
        "description": "An optional name of the advisory."
      },
      "url": {
        "type": "string",
        "title": "URL",
        "format": "iri-reference",
        "description": "Location where the advisory can be obtained."
      }
    }
  },
  "cwe": {
    "type": "integer",
    "minimum": 1,
    "title": "CWE",
    "description": "Integer representation of a Common Weaknesses Enumerations (CWE). For example 399 (of https://cwe.mitre.org/data/definitions/399.html)"
  },
  "severity": {
    "type": "string",
    "title": "Severity",
    "description": "Textual representation of the severity of the vulnerability adopted by the analysis method. If the analysis method uses values other than what is provided, the user is expected to translate appropriately.",
    "enum": [
      "critical",
      "high",
      "medium",
      "low",
      "info",
      "none",
      "unknown"
    ]
  },
  "scoreMethod": {
    "type": "string",
    "title": "Method",
    "description": "Specifies the severity or risk scoring methodology or standard used.\n\n* CVSSv2 - [Common Vulnerability Scoring System v2](https://www.first.org/cvss/v2/)\n* CVSSv3 - [Common Vulnerability Scoring System v3](https://www.first.org/cvss/v3-0/)\n* CVSSv31 - [Common Vulnerability Scoring System v3.1](https://www.first.org/cvss/v3-1/)\n* OWASP - [OWASP Risk Rating Methodology](https://owasp.org/www-community/OWASP_Risk_Rating_Methodology)",
    "enum": [
      "CVSSv2",
      "CVSSv3",
      "CVSSv31",
      "OWASP",
      "other"
    ]
  },
  "impactAnalysisState": {
    "type": "string",
    "title": "Impact Analysis State",
    "description": "Declares the current state of an occurrence of a vulnerability, after automated or manual analysis. \n\n* __resolved__ = the vulnerability has been remediated. \n* __resolved\\_with\\_pedigree__ = the vulnerability has been remediated and evidence of the changes are provided in the affected components pedigree containing verifiable commit history and/or diff(s). \n* __exploitable__ = the vulnerability may be directly or indirectly exploitable. \n* __in\\_triage__ = the vulnerability is being investigated. \n* __false\\_positive__ = the vulnerability is not specific to the component or service and was falsely identified or associated. \n* __not\\_affected__ = the component or service is not affected by the vulnerability. Justification should be specified for all not_affected cases.",
    "enum": [
      "resolved",
      "resolved_with_pedigree",
      "exploitable",
      "in_triage",
      "false_positive",
      "not_affected"
    ]
  },
  "impactAnalysisJustification": {
    "type": "string",
    "title": "Impact Analysis Justification",
    "description": "The rationale of why the impact analysis state was asserted. \n\n* __code\\_not\\_present__ = the code has been removed or tree-shaked. \n* __code\\_not\\_reachable__ = the vulnerable code is not invoked at runtime. \n* __requires\\_configuration__ = exploitability requires a configurable option to be set/unset. \n* __requires\\_dependency__ = exploitability requires a dependency that is not present. \n* __requires\\_environment__ = exploitability requires a certain environment which is not present. \n* __protected\\_by\\_compiler__ = exploitability requires a compiler flag to be set/unset. \n* __protected\\_at\\_runtime__ = exploits are prevented at runtime. \n* __protected\\_at\\_perimeter__ = attacks are blocked at physical, logical, or network perimeter. \n* __protected\\_by\\_mitigating\\_control__ = preventative measures have been implemented that reduce the likelihood and/or impact of the vulnerability.",
    "enum": [
      "code_not_present",
      "code_not_reachable",
      "requires_configuration",
      "requires_dependency",
      "requires_environment",
      "protected_by_compiler",
      "protected_at_runtime",
      "protected_at_perimeter",
      "protected_by_mitigating_control"
    ]
  },
  "rating": {
    "type": "object",
    "title": "Rating",
    "description": "Defines the severity or risk ratings of a vulnerability.",
    "additionalProperties": false,
    "properties": {
      "source": {
        "$ref": "#/definitions/vulnerabilitySource",
        "description": "The source that calculated the severity or risk rating of the vulnerability."
      },
      "score": {
        "type": "number",
        "title": "Score",
        "description": "The numerical score of the rating."
      },
      "severity": {
        "$ref": "#/definitions/severity",
        "description": "Textual representation of the severity that corresponds to the numerical score of the rating."
      },
      "method": {
        "$ref": "#/definitions/scoreMethod"
      },
      "vector": {
        "type": "string",
        "title": "Vector",
        "description": "Textual representation of the metric values used to score the vulnerability"
      },
      "justification": {
        "type": "string",
        "title": "Justification",
        "description": "An optional reason for rating the vulnerability as it was"
      }
    }
  },
  "vulnerabilitySource": {
    "type": "object",
    "title": "Source",
    "description": "The source of vulnerability information. This is often the organization that published the vulnerability.",
    "additionalProperties": false,
    "properties": {
      "url": {
        "type": "string",
        "title": "URL",
        "description": "The url of the vulnerability documentation as provided by the source.",
        "examples": [
          "https://nvd.nist.gov/vuln/detail/CVE-2021-39182"
        ]
      },
      "name": {
        "type": "string",
        "title": "Name",
        "description": "The name of the source.",
        "examples": [
          "NVD",
          "National Vulnerability Database",
          "OSS Index",
          "VulnDB",
          "GitHub Advisories"
        ]
      }
    }
  },
  "vulnerability": {
    "type": "object",
    "title": "Vulnerability",
    "description": "Defines a weakness in an component or service that could be exploited or triggered by a threat source.",
    "additionalProperties": false,
    "properties": {
      "bom-ref": {
        "$ref": "#/definitions/refType",
        "title": "BOM Reference",
        "description": "An optional identifier which can be used to reference the vulnerability elsewhere in the BOM. Every bom-ref MUST be unique within the BOM."
      },
      "id": {
        "type": "string",
        "title": "ID",
        "description": "The identifier that uniquely identifies the vulnerability.",
        "examples": [
          "CVE-2021-39182",
          "GHSA-35m5-8cvj-8783",
          "SNYK-PYTHON-ENROCRYPT-1912876"
        ]
      },
      "source": {
        "$ref": "#/definitions/vulnerabilitySource",
        "description": "The source that published the vulnerability."
      },
      "references": {
        "type": "array",
        "title": "References",
        "description": "Zero or more pointers to vulnerabilities that are the equivalent of the vulnerability specified. Often times, the same vulnerability may exist in multiple sources of vulnerability intelligence, but have different identifiers. References provide a way to correlate vulnerabilities across multiple sources of vulnerability intelligence.",
        "additionalItems": false,
        "items": {
          "required": [
            "id",
            "source"
          ],
          "additionalProperties": false,
          "properties": {
            "id": {
              "type": "string",
              "title": "ID",
              "description": "An identifier that uniquely identifies the vulnerability.",
              "examples": [
                "CVE-2021-39182",
                "GHSA-35m5-8cvj-8783",
                "SNYK-PYTHON-ENROCRYPT-1912876"
              ]
            },
            "source": {
              "$ref": "#/definitions/vulnerabilitySource",
              "description": "The source that published the vulnerability."
            }
          }
        }
      },
      "ratings": {
        "type": "array",
        "title": "Ratings",
        "description": "List of vulnerability ratings",
        "additionalItems": false,
        "items": {
          "$ref": "#/definitions/rating"
        }
      },
      "cwes": {
        "type": "array",
        "title": "CWEs",
        "description": "List of Common Weaknesses Enumerations (CWEs) codes that describes this vulnerability. For example 399 (of https://cwe.mitre.org/data/definitions/399.html)",
        "examples": ["399"],
        "additionalItems": false,
        "items": {
          "$ref": "#/definitions/cwe"
        }
      },
      "description": {
        "type": "string",
        "title": "Description",
        "description": "A description of the vulnerability as provided by the source."
      },
      "detail": {
        "type": "string",
        "title": "Details",
        "description": "If available, an in-depth description of the vulnerability as provided by the source organization. Details often include examples, proof-of-concepts, and other information useful in understanding root cause."
      },
      "recommendation": {
        "type": "string",
        "title": "Details",
        "description": "Recommendations of how the vulnerability can be remediated or mitigated."
      },
      "advisories": {
        "type": "array",
        "title": "Advisories",
        "description": "Published advisories of the vulnerability if provided.",
        "additionalItems": false,
        "items": {
          "$ref": "#/definitions/advisory"
        }
      },
      "created": {
        "type": "string",
        "format": "date-time",
        "title": "Created",
        "description": "The date and time (timestamp) when the vulnerability record was created in the vulnerability database."
      },
      "published": {
        "type": "string",
        "format": "date-time",
        "title": "Published",
        "description": "The date and time (timestamp) when the vulnerability record was first published."
      },
      "updated": {
        "type": "string",
        "format": "date-time",
        "title": "Updated",
        "description": "The date and time (timestamp) when the vulnerability record was last updated."
      },
      "credits": {
        "type": "object",
        "title": "Credits",
        "description": "Individuals or organizations credited with the discovery of the vulnerability.",
        "additionalProperties": false,
        "properties": {
          "organizations": {
            "type": "array",
            "title": "Organizations",
            "description": "The organizations credited with vulnerability discovery.",
            "additionalItems": false,
            "items": {
              "$ref": "#/definitions/organizationalEntity"
            }
          },
          "individuals": {
            "type": "array",
            "title": "Individuals",
            "description": "The individuals, not associated with organizations, that are credited with vulnerability discovery.",
            "additionalItems": false,
            "items": {
              "$ref": "#/definitions/organizationalContact"
            }
          }
        }
      },
      "tools": {
        "type": "array",
        "title": "Creation Tools",
        "description": "The tool(s) used to identify, confirm, or score the vulnerability.",
        "additionalItems": false,
        "items": {"$ref": "#/definitions/tool"}
      },
      "analysis": {
        "type": "object",
        "title": "Impact Analysis",
        "description": "An assessment of the impact and exploitability of the vulnerability.",
        "additionalProperties": false,
        "properties": {
          "state": {
            "$ref": "#/definitions/impactAnalysisState"
          },
          "justification": {
            "$ref": "#/definitions/impactAnalysisJustification"
          },
          "response": {
            "type": "array",
            "title": "Response",
            "description": "A response to the vulnerability by the manufacturer, supplier, or project responsible for the affected component or service. More than one response is allowed. Responses are strongly encouraged for vulnerabilities where the analysis state is exploitable.",
            "additionalItems": false,
            "items": {
              "type": "string",
              "enum": [
                "can_not_fix",
                "will_not_fix",
                "update",
                "rollback",
                "workaround_available"
              ]
            }
          },
          "detail": {
            "type": "string",
            "title": "Detail",
            "description": "Detailed description of the impact including methods used during assessment. If a vulnerability is not exploitable, this field should include specific details on why the component or service is not impacted by this vulnerability."
          }
        }
      },
      "affects": {
        "type": "array",
        "uniqueItems": true,
        "additionalItems": false,
        "items": {
          "required": [
            "ref"
          ],
          "additionalProperties": false,
          "properties": {
            "ref": {
              "$ref": "#/definitions/refType",
              "title": "Reference",
              "description": "References a component or service by the objects bom-ref"
            },
            "versions": {
              "type": "array",
              "title": "Versions",
              "description": "Zero or more individual versions or range of versions.",
              "additionalItems": false,
              "items": {
                "oneOf": [
                  {
                    "required": ["version"]
                  },
                  {
                    "required": ["range"]
                  }
                ],
                "additionalProperties": false,
                "properties": {
                  "version": {
                    "description": "A single version of a component or service.",
                    "$ref": "#/definitions/version"
                  },
                  "range": {
                    "description": "A version range specified in Package URL Version Range syntax (vers) which is defined at https://github.com/package-url/purl-spec/VERSION-RANGE-SPEC.rst",
                    "$ref": "#/definitions/version"
                  },
                  "status": {
                    "description": "The vulnerability status for the version or range of versions.",
                    "$ref": "#/definitions/affectedStatus",
                    "default": "affected"
                  }
                }
              }
            }
          }
        },
        "title": "Affects",
        "description": "The components or services that are affected by the vulnerability."
      },
      "properties": {
        "type": "array",
        "title": "Properties",
        "description": "Provides the ability to document properties in a name-value store. This provides flexibility to include data not officially supported in the standard without having to use additional namespaces or create extensions. Unlike key-value stores, properties support duplicate names, each potentially having different values. Property names of interest to the general public are encouraged to be registered in the [CycloneDX Property Taxonomy](https://github.com/CycloneDX/cyclonedx-property-taxonomy). Formal registration is OPTIONAL.",
        "additionalItems": false,
        "items": {
          "$ref": "#/definitions/property"
        }
      }
    }
  },
  "affectedStatus": {
    "description": "The vulnerability status of a given version or range of versions of a product. The statuses 'affected' and 'unaffected' indicate that the version is affected or unaffected by the vulnerability. The status 'unknown' indicates that it is unknown or unspecified whether the given version is affected. There can be many reasons for an 'unknown' status, including that an investigation has not been undertaken or that a vendor has not disclosed the status.",
    "type": "string",
    "enum": [
      "affected",
      "unaffected",
      "unknown"
    ]
  },
  "version": {
    "description": "A single version of a component or service.",
    "type": "string",
    "minLength": 1,
    "maxLength": 1024
  },
  "range": {
    "description": "A version range specified in Package URL Version Range syntax (vers) which is defined at https://github.com/package-url/purl-spec/VERSION-RANGE-SPEC.rst",
    "type": "string",
    "minLength": 1,
    "maxLength": 1024
  },
  "signature": {
    "title": "Signature",
    "description": "Enveloped signature in [JSON Signature Format (JSF)](https://cyberphone.github.io/doc/security/jsf.html)."
  }
}

}

from jsonschema.

awwright avatar awwright commented on May 25, 2024

@makdataproj That post is too long for me to know where to start. Can you please post a code example, along with expected and actual output? It would be best if you can make the example as small as possible.

from jsonschema.

makdataproj avatar makdataproj commented on May 25, 2024

Please see attached the error I am getting. I dont know if it is the schema: https://github.com/CycloneDX/specification/blob/master/schema/bom-1.4.schema.json or the if the json: https://pastebin.com/pfsv4BDe is not valid? Just want to make sure it is not the schema.

This is the code snippet for the validation:

const jsonvalidator = (file, schemafile) => {
  let schemaStr = fs.readFileSync(schemafile, "utf8");
  let schema = JSON.parse(schemaStr);
  fs.readFile(file, function (err, fileContents) {
    let data = JSON.parse(fileContents);
    let validatorResult = jsonvalidate(data, schema);

Capture

from jsonschema.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.