1// Copyright (C) 2019 Storj Labs, Inc.
2// See LICENSE for copying information.
3
4syntax = "proto3";
5option go_package = "storj.io/common/pb";
6
7package objects;
8
9// SerializableMeta is the object metadata that will be stored serialized.
10message SerializableMeta {
11	string content_type = 1;
12	map<string, string> user_defined = 2;
13}