syntax = "proto3"; package myblog.proto.blog; // Label attached to the post for the purpose of identification or classification. message Taxonomy { // Identifier of the taxonomy string id = 1; // Name of the taxonomy string name = 2; // Valid url string composes with name and id string slug = 3; // Type of the term e.g. category or tag string type = 4; }