cdx-proto
    Preparing search index...

    Type Alias LicenseExpressionDetailed

    LicenseExpressionDetailed: Message<"cyclonedx.v1_7.LicenseExpressionDetailed"> & {
        acknowledgement?: LicenseAcknowledgementEnumeration;
        bomRef?: string;
        details: LicenseExpressionDetailed_ExpressionDetails[];
        expression: string;
        licensing?: Licensing;
        properties: Property[];
    }

    Specifies the details and attributes related to a software license. It must be a valid SPDX license expression, along with additional properties such as license acknowledgment.

    Type Declaration

    • Optionalacknowledgement?: LicenseAcknowledgementEnumeration

      Declared licenses and concluded licenses represent two different stages in the licensing process within software development. Declared licenses refer to the initial intention of the software authors regarding the licensing terms under which their code is released. On the other hand, concluded licenses are the result of a comprehensive analysis of the project's codebase to identify and confirm the actual licenses of the components used, which may differ from the initially declared licenses. While declared licenses provide an upfront indication of the licensing intentions, concluded licenses offer a more thorough understanding of the actual licensing within a project, facilitating proper compliance and risk management. Observed licenses are defined in @.evidence.licenses. Observed licenses form the evidence necessary to substantiate a concluded license.

      from field: optional cyclonedx.v1_7.LicenseAcknowledgementEnumeration acknowledgement = 4;

    • OptionalbomRef?: string

      A identifier which can be used to reference the license elsewhere in the BOM. Uniqueness is enforced within all elements and children of the root-level bom element.

      from field: optional string bom_ref = 3;

    • details: LicenseExpressionDetailed_ExpressionDetails[]

      Licensing details describing the licensor/licensee, license type, renewal and expiration dates, and other important metadata Details for parts of the expression.

      from field: repeated cyclonedx.v1_7.LicenseExpressionDetailed.ExpressionDetails details = 2;

    • expression: string

      A valid SPDX license expression. Refer to https://spdx.org/specifications for syntax requirements. Example values:

      • "Apache-2.0 AND (MIT OR GPL-2.0-only)",
      • "GPL-3.0-only WITH Classpath-exception-2.0"

      from field: string expression = 1;

    • Optionallicensing?: Licensing

      Licensing details describing the licensor/licensee, license type, renewal and expiration dates, and other important metadata

      from field: optional cyclonedx.v1_7.Licensing licensing = 5;

    • properties: Property[]

      Specifies custom properties.

      from field: repeated cyclonedx.v1_7.Property properties = 6;

    from message cyclonedx.v1_7.LicenseExpressionDetailed