cdx-proto
    Preparing search index...

    Type Alias Service

    Service: Message<"cyclonedx.v1_6.Service"> & {
        authenticated?: boolean;
        bomRef?: string;
        data: DataFlow[];
        description?: string;
        endpoints: string[];
        externalReferences: ExternalReference[];
        group?: string;
        licenses: LicenseChoice[];
        name: string;
        properties: Property[];
        provider?: OrganizationalEntity;
        releaseNotes?: ReleaseNotes;
        services: Service[];
        tags: string[];
        trustZone?: string;
        version?: string;
        xTrustBoundary?: boolean;
    }

    Type declaration

    • Optionalauthenticated?: boolean

      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.

      from field: optional bool authenticated = 8;

    • OptionalbomRef?: string

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

      from field: optional string bom_ref = 1;

    • data: DataFlow[]

      from field: repeated cyclonedx.v1_6.DataFlow data = 10;

    • Optionaldescription?: string

      Specifies a description for the service.

      from field: optional string description = 6;

    • endpoints: string[]

      from field: repeated string endpoints = 7;

    • externalReferences: ExternalReference[]

      Provides the ability to document external references related to the service.

      from field: repeated cyclonedx.v1_6.ExternalReference external_references = 12;

    • Optionalgroup?: string

      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.

      from field: optional string group = 3;

    • licenses: LicenseChoice[]

      from field: repeated cyclonedx.v1_6.LicenseChoice licenses = 11;

    • name: string

      The name of the service. This will often be a shortened, single name of the service.

      from field: string name = 4;

    • properties: Property[]

      Specifies optional, custom, properties

      from field: repeated cyclonedx.v1_6.Property properties = 14;

    • Optionalprovider?: OrganizationalEntity

      The organization that provides the service.

      from field: optional cyclonedx.v1_6.OrganizationalEntity provider = 2;

    • OptionalreleaseNotes?: ReleaseNotes

      Specifies optional release notes.

      from field: optional cyclonedx.v1_6.ReleaseNotes releaseNotes = 15;

    • services: Service[]

      Specifies optional sub-service. This is not a dependency tree. It provides a way to specify a hierarchical representation of service assemblies, similar to system -> subsystem -> parts assembly in physical supply chains.

      from field: repeated cyclonedx.v1_6.Service services = 13;

    • tags: string[]

      Textual strings that aid in the discovery, search, and retrieval of the associated object. Tags often serve as a way to group or categorize similar or related objects by various attributes. Examples include "json-parser", "object-persistence", "text-to-image", "translation", and "object-detection".

      from field: repeated string tags = 17;

    • OptionaltrustZone?: string

      The name of the trust zone the service resides in.

      from field: optional string trustZone = 16;

    • Optionalversion?: string

      The service version.

      from field: optional string version = 5;

    • OptionalxTrustBoundary?: boolean

      A boolean value indicating if the 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.

      from field: optional bool x_trust_boundary = 9;

    from message cyclonedx.v1_6.Service