Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions license.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ import (
type License struct {
UUID uuid.UUID `json:"uuid"`
Name string `json:"name"`
Text string `json:"text"`
Template string `json:"template"`
Header string `json:"header"`
Comment string `json:"comment"`
Text string `json:"licenseText,omitempty"`
Template string `json:"standardLicenseTemplate,omitempty"`
Header string `json:"standardLicenseHeader,omitempty"`
Comment string `json:"licenseComments,omitempty"`
LicenseID string `json:"licenseId"`
OSIApproved bool `json:"isOsiApproved"`
FSFLibre bool `json:"isFsfLibre"`
DeprecatedLicenseID bool `json:"isDeprecatedLicenseId"`
SeeAlso []string `json:"seeAlso"`
SeeAlso []string `json:"seeAlso,omitempty"`
}

type LicenseService struct {
Expand Down
Loading