cdx-proto
    Preparing search index...

    Type Alias Event

    Event: Message<"cyclonedx.v1_6.Event"> & {
        data?: AttachedText;
        description?: string;
        properties: Property[];
        source?: ResourceReferenceChoice;
        target?: ResourceReferenceChoice;
        timeReceived?: Timestamp;
        uid?: string;
    }

    Represents something that happened that may trigger a response.

    Type declaration

    • Optionaldata?: AttachedText

      Encoding of the raw event data.

      from field: optional cyclonedx.v1_6.AttachedText data = 4;

    • Optionaldescription?: string

      A description of the event.

      from field: optional string description = 2;

    • properties: Property[]

      Additional properties of the event.

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

    • Optionalsource?: ResourceReferenceChoice

      References the component or service that was the source of the event

      from field: optional cyclonedx.v1_6.ResourceReferenceChoice source = 5;

    • Optionaltarget?: ResourceReferenceChoice

      References the component or service that was the target of the event

      from field: optional cyclonedx.v1_6.ResourceReferenceChoice target = 6;

    • OptionaltimeReceived?: Timestamp

      The date and time (timestamp) when the event was received.

      from field: optional google.protobuf.Timestamp timeReceived = 3;

    • Optionaluid?: string

      The unique identifier of the event.

      from field: optional string uid = 1;

    from message cyclonedx.v1_6.Event