-
Matevz Erzen authoredMatevz Erzen authored
evidence.proto 1.91 KiB
/*
* Copyright 2016-2022 Fraunhofer AISEC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* $$\ $$\ $$\ $$\
* $$ | $$ |\__| $$ |
* $$$$$$$\ $$ | $$$$$$\ $$\ $$\ $$$$$$$ |$$\ $$$$$$\ $$$$$$\ $$$$$$\
* $$ _____|$$ |$$ __$$\ $$ | $$ |$$ __$$ |$$ |\_$$ _| $$ __$$\ $$ __$$\
* $$ / $$ |$$ / $$ |$$ | $$ |$$ / $$ |$$ | $$ | $$ / $$ |$$ | \__|
* $$ | $$ |$$ | $$ |$$ | $$ |$$ | $$ |$$ | $$ |$$\ $$ | $$ |$$ |
* \$$$$$$\ $$ |\$$$$$ |\$$$$$ |\$$$$$$ |$$ | \$$$ |\$$$$$ |$$ |
* \_______|\__| \______/ \______/ \_______|\__| \____/ \______/ \__|
*
* This file is part of Clouditor Community Edition.
*/
syntax = "proto3";
package clouditor;
import "google/protobuf/struct.proto";
import "google/protobuf/timestamp.proto";
// An evidence resource
message Evidence {
// the ID in a uuid format
string id = 1;
// time of evidence creation
google.protobuf.Timestamp timestamp = 2;
// Reference to a service this evidence was gathered from
string service_id = 3;
// Reference to the tool which provided the evidence
string tool_id = 4;
// Contains the evidence in its original form without following a defined
// schema, e.g. the raw JSON
string raw = 5;
// Semantic representation of the Cloud resource according to our defined
// ontology
google.protobuf.Value resource = 6;
}