Public Access
24 lines
472 B
Protocol Buffer
24 lines
472 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package charybdis.plugins.dependencytrack;
|
|
|
|
// Dependency-Track plugin metadata
|
|
message DependencytrackMetadata {
|
|
string name = 1;
|
|
string description = 2;
|
|
|
|
// Resource type (project)
|
|
string resource_type = 3;
|
|
}
|
|
|
|
// Dependency-Track plugin spec
|
|
message DependencytrackSpec {
|
|
// Sync status information
|
|
string sync_status = 1;
|
|
string last_sync = 2;
|
|
string error_message = 3;
|
|
|
|
// Configuration stored as JSON
|
|
string config_json = 4;
|
|
}
|