github.com/s7techlab/cckit@v0.10.5/identity/schema.proto (about)

     1  syntax = "proto3";
     2  
     3  option go_package = "github.com/s7techlab/cckit/identity";
     4  package s7techlab.cckit.identity;
     5  
     6  import "google/protobuf/timestamp.proto";
     7  
     8  message Identity {
     9      string msp_id = 1; // MSP identifier
    10      bytes pem = 2; // certificate
    11  }
    12  
    13  message ActionInfo {
    14      google.protobuf.Timestamp at = 1; //  time of action
    15      Identity by = 2; // identity, initiates action
    16  }