cdx-proto
    Preparing search index...

    Type Alias DataFlow

    DataFlow: Message<"cyclonedx.v1_6.DataFlow"> & {
        description?: string;
        destination: string[];
        flow: DataFlowDirection;
        governance?: DataGovernance;
        name?: string;
        source: string[];
        value: string;
    }

    Specifies the data flow.

    Type declaration

    • Optionaldescription?: string

      Short description of the data content and usage

      from field: optional string description = 4;

    • destination: string[]

      The URI, URL, or BOM-Link of the components or services the data is sent to

      from field: repeated string destination = 6;

    • flow: DataFlowDirection

      Specifies the flow direction of the data.

      from field: cyclonedx.v1_6.DataFlowDirection flow = 1;

    • Optionalgovernance?: DataGovernance

      Data Governance

      from field: optional cyclonedx.v1_6.DataGovernance governance = 7;

    • Optionalname?: string

      Name for the defined data

      from field: optional string name = 3;

    • source: string[]

      The URI, URL, or BOM-Link of the components or services the data came in from

      from field: repeated string source = 5;

    • value: string

      Data classification tags data according to its type, sensitivity, and value if altered, stolen, or destroyed.

      from field: string value = 2;

    from message cyclonedx.v1_6.DataFlow