github.com/cosmos/cosmos-sdk@v0.50.10/x/gov/types/metadata.go (about)

     1  package types
     2  
     3  // ProposalMetadata is the metadata of a proposal
     4  // This metadata is supposed to live off-chain when submitted in a proposal
     5  type ProposalMetadata struct {
     6  	Title             string   `json:"title"`
     7  	Authors           []string `json:"authors"`
     8  	Summary           string   `json:"summary"`
     9  	Details           string   `json:"details"`
    10  	ProposalForumUrl  string   `json:"proposal_forum_url"` //nolint:revive // named 'Url' instead of 'URL' for avoiding the camel case split
    11  	VoteOptionContext string   `json:"vote_option_context"`
    12  }