From 99a9a64bc6e173638be3678449a29d739c02b054 Mon Sep 17 00:00:00 2001 From: "ritesh.noronha" Date: Fri, 16 Aug 2024 17:49:30 -0700 Subject: [PATCH 1/4] Edit for spdx and cdx sboms --- cmd/assemble.go | 1 - cmd/edit.go | 164 + cmd/root.go | 1 + go.mod | 1 + go.sum | 2 + pkg/edit/cdx.go | 284 + pkg/edit/cdx_edit.go | 528 + pkg/edit/config.go | 287 + pkg/edit/interface.go | 86 + pkg/edit/spdx.go | 206 + pkg/edit/spdx_edit.go | 543 + pkg/edit/utils.go | 33 + pkg/licenses/embed_licenses.go | 198 + pkg/licenses/files/licenses_aboutcode.json | 28119 ++++++++++++++++ pkg/licenses/files/licenses_spdx.json | 7997 +++++ .../files/licenses_spdx_exception.json | 772 + pkg/licenses/license.go | 215 + 17 files changed, 39436 insertions(+), 1 deletion(-) create mode 100644 cmd/edit.go create mode 100644 pkg/edit/cdx.go create mode 100644 pkg/edit/cdx_edit.go create mode 100644 pkg/edit/config.go create mode 100644 pkg/edit/interface.go create mode 100644 pkg/edit/spdx.go create mode 100644 pkg/edit/spdx_edit.go create mode 100644 pkg/edit/utils.go create mode 100644 pkg/licenses/embed_licenses.go create mode 100644 pkg/licenses/files/licenses_aboutcode.json create mode 100644 pkg/licenses/files/licenses_spdx.json create mode 100644 pkg/licenses/files/licenses_spdx_exception.json create mode 100644 pkg/licenses/license.go diff --git a/cmd/assemble.go b/cmd/assemble.go index 0e2283d..4c1e5be 100644 --- a/cmd/assemble.go +++ b/cmd/assemble.go @@ -89,7 +89,6 @@ func init() { assembleCmd.Flags().BoolP("json", "j", true, "output in json format") assembleCmd.MarkFlagsMutuallyExclusive("xml", "json") - assembleCmd.PersistentFlags().BoolP("debug", "d", false, "debug output") } func validatePath(path string) error { diff --git a/cmd/edit.go b/cmd/edit.go new file mode 100644 index 0000000..92f12de --- /dev/null +++ b/cmd/edit.go @@ -0,0 +1,164 @@ +/* +Copyright © 2024 NAME HERE +*/ +package cmd + +import ( + "context" + + "github.com/interlynk-io/sbomasm/pkg/edit" + "github.com/interlynk-io/sbomasm/pkg/logger" + "github.com/spf13/cobra" +) + +// editCmd represents the edit command +var editCmd = &cobra.Command{ + Use: "edit", + Short: "helps editing an sbom", + Long: `The edit command allows you to modify an existing Software Bill of Materials (SBOM) by filling in gaps or adding information that may have been missed during the generation process. This command operates by first locating the entity to edit and then adding the required information. The goal of edit is not to provide a full editing experience but to help fill in filling in missing information useful for compliance and security purposes. + +Usage + sbomasm edit [flags] + +Basic Example: + # Edit's an sbom to add app-name and version to the primary component + $ sbomasm edit --subject primary-component --name "my-cool-app" --version "1.0.0" in-sbom-2.json + + # Edit's an sbom to add created-at timestamp and supplier information only for missing fields + $ sbomasm edit --missing --subject document --timestamp --supplier "interlynk (support@interlynk.io)" in-sbom-1.json + + # Edit's an sbom add a new author to the primary component preserving the existing authors in the doc + # if append is not provided the default behavior is to replace. + $ sbomasm edit --append --subject primary-component --author "abc (abc@gmail.com)" in-sbom-2.json + +Advanced Example: + # Edit's an sbom to add purl to a component by search it by name and version + $ sbomasm edit --subject component-name-version --search "abc (v1.0.0)" --purl "pkg:deb/debian/abc@1.0.0" in-sbom-3.json + + # Edit's an sbom to add multiple authors to the document + $ sbomasm edit --subject document --author "abc (abc@gmail.com)" --author "def (def@gmail.com)" in-sbom-4.json + + # Edit's an sbom to add multiple hashes to the primary component + $ sbomasm edit --subject primary-component --hash "MD5 (hash1)" --hash "SHA256 (hash2)" in-sbom-5.json + `, + SilenceUsage: true, + Args: cobra.ExactArgs(1), + RunE: func(cmd *cobra.Command, args []string) error { + debug, _ := cmd.Flags().GetBool("debug") + if debug { + logger.InitDebugLogger() + } else { + logger.InitProdLogger() + } + + ctx := logger.WithLogger(context.Background()) + + editParams, err := extractEditArgs(cmd, args) + + if err != nil { + return err + } + + editParams.Ctx = &ctx + return edit.Edit(editParams) + }, +} + +func init() { + rootCmd.AddCommand(editCmd) + // Output controls + editCmd.Flags().StringP("output", "o", "", "path to edited sbom, defaults to stdout") + + // Edit locations + editCmd.Flags().String("subject", "document", "subject to edit (document, primary-component, component-name-version)") + editCmd.MarkFlagRequired("subject") + editCmd.Flags().String("search", "", "search string to find the entity") + + // Edit controls + editCmd.Flags().BoolP("missing", "m", false, "edit only missing fields") + editCmd.Flags().BoolP("append", "a", false, "append to field instead of replacing") + + // Edit fields + editCmd.Flags().String("name", "", "name of the entity") + editCmd.Flags().String("version", "", "version of the entity") + editCmd.Flags().String("supplier", "", "supplier to add e.g 'name (email)'") + editCmd.Flags().StringSlice("author", []string{}, "author to add e.g 'name (email)'") + editCmd.Flags().String("purl", "", "purl to add e.g 'pkg:deb/debian/abc@1.0.0'") + editCmd.Flags().String("cpe", "", "cpe to add e.g 'cpe:2.3:a:microsoft:internet_explorer:8.*:sp?:*:*:*:*:*:*'") + editCmd.Flags().StringSlice("license", []string{}, "license to add e.g 'MIT'") + editCmd.Flags().StringSlice("hash", []string{}, "checksum to add e.g 'MD5 (hash'") + editCmd.Flags().StringSlice("tool", []string{}, "tool to add e.g 'sbomasm (v1.0.0)'") + editCmd.Flags().String("copyright", "", "copyright to add e.g 'Copyright © 2024'") + editCmd.Flags().StringSlice("lifecycle", []string{}, "lifecycle to add e.g 'build'") + editCmd.Flags().String("description", "", "description to add e.g 'this is a cool app'") + editCmd.Flags().String("repository", "", "repository to add e.g 'github.com/interlynk-io/sbomasm'") + editCmd.Flags().String("type", "", "type to add e.g 'application'") + + editCmd.Flags().Bool("timestamp", false, "add created-at timestamp") +} + +func extractEditArgs(cmd *cobra.Command, args []string) (*edit.EditParams, error) { + editParams := edit.NewEditParams() + + editParams.Input = args[0] + editParams.Output, _ = cmd.Flags().GetString("output") + + subject, _ := cmd.Flags().GetString("subject") + editParams.Subject = subject + + search, _ := cmd.Flags().GetString("search") + editParams.Search = search + + missing, _ := cmd.Flags().GetBool("missing") + editParams.Missing = missing + + append, _ := cmd.Flags().GetBool("append") + editParams.Append = append + + name, _ := cmd.Flags().GetString("name") + editParams.Name = name + + version, _ := cmd.Flags().GetString("version") + editParams.Version = version + + supplier, _ := cmd.Flags().GetString("supplier") + editParams.Supplier = supplier + + authors, _ := cmd.Flags().GetStringSlice("author") + editParams.Authors = authors + + purl, _ := cmd.Flags().GetString("purl") + editParams.Purl = purl + + cpe, _ := cmd.Flags().GetString("cpe") + editParams.Cpe = cpe + + licenses, _ := cmd.Flags().GetStringSlice("license") + editParams.Licenses = licenses + + hashes, _ := cmd.Flags().GetStringSlice("hash") + editParams.Hashes = hashes + + tools, _ := cmd.Flags().GetStringSlice("tool") + editParams.Tools = tools + + copyright, _ := cmd.Flags().GetString("copyright") + editParams.CopyRight = copyright + + lifecycles, _ := cmd.Flags().GetStringSlice("lifecycle") + editParams.Lifecycles = lifecycles + + description, _ := cmd.Flags().GetString("description") + editParams.Description = description + + repository, _ := cmd.Flags().GetString("repository") + editParams.Repository = repository + + typ, _ := cmd.Flags().GetString("type") + editParams.Type = typ + + timestamp, _ := cmd.Flags().GetBool("timestamp") + editParams.Timestamp = timestamp + + return editParams, nil +} diff --git a/cmd/root.go b/cmd/root.go index c8f0047..0f2ec5e 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -60,6 +60,7 @@ func init() { // Cobra also supports local flags, which will only run // when this action is called directly. rootCmd.Flags().BoolP("toggle", "t", false, "Help message for toggle") + rootCmd.PersistentFlags().BoolP("debug", "d", false, "debug output") } func checkIfLatestRelease() { diff --git a/go.mod b/go.mod index 4c29c3b..362f42f 100644 --- a/go.mod +++ b/go.mod @@ -7,6 +7,7 @@ toolchain go1.21.5 require ( github.com/CycloneDX/cyclonedx-go v0.9.0 github.com/Masterminds/semver/v3 v3.2.1 + github.com/github/go-spdx/v2 v2.3.1 github.com/google/go-github/v52 v52.0.0 github.com/google/uuid v1.6.0 github.com/mitchellh/copystructure v1.2.0 diff --git a/go.sum b/go.sum index 982f0cb..a891a21 100644 --- a/go.sum +++ b/go.sum @@ -21,6 +21,8 @@ github.com/cpuguy83/go-md2man/v2 v2.0.4/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46t github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/github/go-spdx/v2 v2.3.1 h1:ffGuHTbHuHzWPt53n8f9o8clGutuLPObo3zB4JAjxU8= +github.com/github/go-spdx/v2 v2.3.1/go.mod h1:2ZxKsOhvBp+OYBDlsGnUMcchLeo2mrpEBn2L1C+U3IQ= github.com/google/go-cmp v0.5.2/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI= diff --git a/pkg/edit/cdx.go b/pkg/edit/cdx.go new file mode 100644 index 0000000..2a8077c --- /dev/null +++ b/pkg/edit/cdx.go @@ -0,0 +1,284 @@ +package edit + +import ( + "context" + "errors" + "fmt" + "io" + "os" + + cydx "github.com/CycloneDX/cyclonedx-go" + "github.com/google/uuid" + + "github.com/interlynk-io/sbomasm/pkg/detect" + liclib "github.com/interlynk-io/sbomasm/pkg/licenses" + "github.com/interlynk-io/sbomasm/pkg/logger" +) + +var cdx_strings_to_types = map[string]cydx.ComponentType{ + "application": cydx.ComponentTypeApplication, + "container": cydx.ComponentTypeContainer, + "device": cydx.ComponentTypeDevice, + "file": cydx.ComponentTypeFile, + "framework": cydx.ComponentTypeFramework, + "library": cydx.ComponentTypeLibrary, + "firmware": cydx.ComponentTypeFirmware, + "operating-system": cydx.ComponentTypeOS, +} + +var cdx_hash_algos = map[string]cydx.HashAlgorithm{ + "MD5": cydx.HashAlgoMD5, + "SHA-1": cydx.HashAlgoSHA1, + "SHA-256": cydx.HashAlgoSHA256, + "SHA-384": cydx.HashAlgoSHA384, + "SHA-512": cydx.HashAlgoSHA512, + "SHA3-256": cydx.HashAlgoSHA3_256, + "SHA3-384": cydx.HashAlgoSHA3_384, + "SHA3-512": cydx.HashAlgoSHA3_512, + "BLAKE2b-256": cydx.HashAlgoBlake2b_256, + "BLAKE2b-384": cydx.HashAlgoBlake2b_384, + "BLAKE2b-512": cydx.HashAlgoBlake2b_512, + "BLAKE3": cydx.HashAlgoBlake3, +} + +var cdx_lifecycle_phases = map[string]cydx.LifecyclePhase{ + "design": cydx.LifecyclePhaseDesign, + "pre-build": cydx.LifecyclePhasePreBuild, + "build": cydx.LifecyclePhaseBuild, + "post-build": cydx.LifecyclePhasePostBuild, + "operations": cydx.LifecyclePhaseOperations, + "discovery": cydx.LifecyclePhaseDiscovery, + "decommission": cydx.LifecyclePhaseDecommission, +} + +func cdxEdit(c *configParams) error { + log := logger.FromContext(*c.ctx) + + bom, err := loadCdxBom(*c.ctx, c.inputFilePath) + if err != nil { + return err + } + + doc := NewCdxEditDoc(bom, c) + if doc == nil { + return errors.New("failed to create edit document") + } + + if c.shouldSearch() && doc.comp == nil { + return errors.New(fmt.Sprintf("component not found: %s, %s", c.search.name, c.search.version)) + } + + if doc.comp != nil { + log.Debugf("Component found %s, %s", doc.comp.Name, doc.comp.Version) + } + + doc.update() + + return writeCdxBom(doc.bom, c) +} + +func loadCdxBom(ctx context.Context, path string) (*cydx.BOM, error) { + log := logger.FromContext(ctx) + + var err error + var bom *cydx.BOM + + f, err := os.Open(path) + if err != nil { + return nil, err + } + defer f.Close() + + spec, format, err := detect.Detect(f) + if err != nil { + return nil, err + } + + log.Debugf("loading bom:%s spec:%s format:%s", path, spec, format) + + switch format { + case detect.FileFormatJSON: + bom = new(cydx.BOM) + decoder := cydx.NewBOMDecoder(f, cydx.BOMFileFormatJSON) + if err = decoder.Decode(bom); err != nil { + return nil, err + } + case detect.FileFormatXML: + bom = new(cydx.BOM) + decoder := cydx.NewBOMDecoder(f, cydx.BOMFileFormatXML) + if err = decoder.Decode(bom); err != nil { + return nil, err + } + default: + panic("unsupported file format") // TODO: return error instead of panic + } + + return bom, nil +} + +func writeCdxBom(bom *cydx.BOM, c *configParams) error { + var f io.Writer + + //Always generate a new serial number on edit + bom.SerialNumber = newCdxSerialNumber() + + if c.outputFilePath == "" { + f = os.Stdout + } else { + var err error + f, err = os.Create(c.outputFilePath) + if err != nil { + return err + } + } + + inf, err := os.Open(c.inputFilePath) + if err != nil { + return err + } + defer inf.Close() + + _, format, err := detect.Detect(inf) + if err != nil { + return err + } + + var encoder cydx.BOMEncoder + + switch format { + case detect.FileFormatJSON: + encoder = cydx.NewBOMEncoder(f, cydx.BOMFileFormatJSON) + case detect.FileFormatXML: + encoder = cydx.NewBOMEncoder(f, cydx.BOMFileFormatXML) + } + + encoder.SetPretty(true) + encoder.SetEscapeHTML(true) + + if err := encoder.Encode(bom); err != nil { + return err + } + + return nil +} + +func cdxFindComponent(b *cydx.BOM, c *configParams) *cydx.Component { + if c.search.subject != "component-name-version" { + return nil + } + + for i := range *b.Components { + comp := &(*b.Components)[i] + if comp.Name == c.search.name && comp.Version == c.search.version { + return comp + } + } + + return nil +} + +func cdxConstructTools(b *cydx.BOM, c *configParams) *cydx.ToolsChoice { + choice := cydx.ToolsChoice{} + + for _, tool := range c.tools { + if b.SpecVersion > cydx.SpecVersion1_4 { + choice.Components = new([]cydx.Component) + *choice.Components = append(*choice.Components, cydx.Component{ + Type: cydx.ComponentTypeApplication, + Name: tool.name, + Version: tool.value, + }) + } else { + choice.Tools = new([]cydx.Tool) + *choice.Tools = append(*choice.Tools, cydx.Tool{ + Name: tool.name, + Version: tool.value, + }) + } + } + + return &choice +} + +func cdxConstructHashes(_ *cydx.BOM, c *configParams) *[]cydx.Hash { + hashes := []cydx.Hash{} + + for _, hash := range c.hashes { + hashes = append(hashes, cydx.Hash{ + Algorithm: cydx.HashAlgorithm(hash.name), + Value: hash.value, + }) + } + + return &hashes +} + +func cdxConstructLicenses(b *cydx.BOM, c *configParams) cydx.Licenses { + licenses := cydx.Licenses{} + + for _, license := range c.licenses { + if liclib.IsSpdxExpression(license.name) { + licenses = append(licenses, cydx.LicenseChoice{ + Expression: license.name, + }) + } else { + lic, err := liclib.LookupSpdxLicense(license.name) + if err != nil { + licenses = append(licenses, cydx.LicenseChoice{ + License: &cydx.License{ + BOMRef: newBomRef(), + Name: license.name, + URL: license.value, + }, + }) + } else { + licenses = append(licenses, cydx.LicenseChoice{ + License: &cydx.License{ + BOMRef: newBomRef(), + ID: lic.ShortID(), + Name: lic.Name(), + URL: license.value, + }, + }) + } + } + } + return licenses +} + +func cdxConstructSupplier(_ *cydx.BOM, c *configParams) *cydx.OrganizationalEntity { + entity := cydx.OrganizationalEntity{ + BOMRef: newBomRef(), + Name: c.supplier.name, + URL: &[]string{ + c.supplier.value, + }, + } + return &entity +} + +func cdxConstructAuthors(_ *cydx.BOM, c *configParams) *[]cydx.OrganizationalContact { + authors := []cydx.OrganizationalContact{} + + for _, author := range c.authors { + authors = append(authors, cydx.OrganizationalContact{ + BOMRef: newBomRef(), + Name: author.name, + Email: author.value, + }) + } + + return &authors +} + +func newCdxSerialNumber() string { + u := uuid.New().String() + + return fmt.Sprintf("urn:uuid:%s", u) +} + +func newBomRef() string { + u := uuid.New().String() + + return fmt.Sprintf("sbomasm:%s", u) +} diff --git a/pkg/edit/cdx_edit.go b/pkg/edit/cdx_edit.go new file mode 100644 index 0000000..3a32ed0 --- /dev/null +++ b/pkg/edit/cdx_edit.go @@ -0,0 +1,528 @@ +package edit + +import ( + "fmt" + + cydx "github.com/CycloneDX/cyclonedx-go" + "github.com/interlynk-io/sbomasm/pkg/logger" + "github.com/samber/lo" +) + +type cdxEditDoc struct { + bom *cydx.BOM + comp *cydx.Component + c *configParams +} + +func NewCdxEditDoc(b *cydx.BOM, c *configParams) *cdxEditDoc { + doc := &cdxEditDoc{} + + doc.bom = b + doc.c = c + + if c.search.subject == "primary-component" { + doc.comp = b.Metadata.Component + } + + if c.search.subject == "component-name-version" { + doc.comp = cdxFindComponent(b, c) + } + + return doc +} + +func (d *cdxEditDoc) update() { + log := logger.FromContext(*d.c.ctx) + log.Debug("CDX updating sbom") + + updateFuncs := []struct { + name string + f func() error + }{ + {"name", d.name}, + {"version", d.version}, + {"supplier", d.supplier}, + {"authors", d.authors}, + {"purl", d.purl}, + {"cpe", d.cpe}, + {"licenses", d.licenses}, + {"hashes", d.hashes}, + {"tools", d.tools}, + {"copyright", d.copyright}, + {"lifeCycles", d.lifeCycles}, + {"description", d.description}, + {"repository", d.repository}, + {"type", d.typ}, + {"timeStamp", d.timeStamp}, + } + + for _, item := range updateFuncs { + if err := item.f(); err != nil { + if err == errNotSupported { + log.Infof(fmt.Sprintf("CDX error updating %s: %s", item.name, err)) + } + } + } + +} + +func (d *cdxEditDoc) timeStamp() error { + if !d.c.shouldTimeStamp() { + return errNoConfiguration + } + + if d.c.search.subject != "document" { + return errNotSupported + } + + if d.c.onMissing() { + if d.bom.Metadata.Timestamp == "" { + d.bom.Metadata.Timestamp = utcNowTime() + } + } else { + d.bom.Metadata.Timestamp = utcNowTime() + } + + return nil +} + +func (d *cdxEditDoc) lifeCycles() error { + if !d.c.shouldLifeCycle() { + return errNoConfiguration + } + + if d.c.search.subject != "document" { + return errNotSupported + } + + lc := []cydx.Lifecycle{} + + for _, phase := range d.c.lifecycles { + lc = append(lc, cydx.Lifecycle{ + Phase: cydx.LifecyclePhase(phase), + }) + } + + if d.c.onMissing() { + if d.bom.Metadata.Lifecycles == nil { + d.bom.Metadata.Lifecycles = &lc + } + } else if d.c.onAppend() { + if d.bom.Metadata.Lifecycles == nil { + d.bom.Metadata.Lifecycles = &lc + } else { + *d.bom.Metadata.Lifecycles = append(*d.bom.Metadata.Lifecycles, lc...) + } + } else { + d.bom.Metadata.Lifecycles = &lc + } + + return nil +} + +func (d *cdxEditDoc) typ() error { + if !d.c.shouldTyp() { + return errNoConfiguration + } + + if d.c.search.subject == "document" { + return errNotSupported + } + + if d.c.onMissing() { + if d.comp.Type == "" { + d.comp.Type = cydx.ComponentType(d.c.typ) + } + } else { + d.comp.Type = cydx.ComponentType(d.c.typ) + } + + return nil +} + +func (d *cdxEditDoc) repository() error { + if !d.c.shouldRepository() { + return errNoConfiguration + } + + vcs := cydx.ExternalReference{ + Type: cydx.ERTypeVCS, + URL: d.c.repository, + } + + var foundVcs *cydx.ExternalReference + + if d.c.search.subject != "document" { + if d.comp.ExternalReferences != nil { + for _, ref := range *d.comp.ExternalReferences { + if ref.Type == cydx.ERTypeVCS { + foundVcs = &ref + break + } + } + } + } else { + if d.bom.ExternalReferences != nil { + for _, ref := range *d.bom.ExternalReferences { + if ref.Type == cydx.ERTypeVCS { + foundVcs = &ref + break + } + } + } + } + + if d.c.onMissing() { + if foundVcs == nil { + if d.c.search.subject != "document" { + if d.comp.ExternalReferences == nil { + d.comp.ExternalReferences = &[]cydx.ExternalReference{} + } + *d.comp.ExternalReferences = append(*d.comp.ExternalReferences, vcs) + } else { + if d.bom.ExternalReferences == nil { + d.bom.ExternalReferences = &[]cydx.ExternalReference{} + } + *d.bom.ExternalReferences = append(*d.bom.ExternalReferences, vcs) + } + } + } else if d.c.onAppend() { + if d.c.search.subject != "document" { + if d.comp.ExternalReferences == nil { + d.comp.ExternalReferences = &[]cydx.ExternalReference{} + } + *d.comp.ExternalReferences = append(*d.comp.ExternalReferences, vcs) + } else { + if d.bom.ExternalReferences == nil { + d.bom.ExternalReferences = &[]cydx.ExternalReference{} + } + *d.bom.ExternalReferences = append(*d.bom.ExternalReferences, vcs) + } + } else { + if foundVcs != nil { + if d.c.search.subject != "document" { + extRef := lo.Reject(*d.comp.ExternalReferences, func(x cydx.ExternalReference, _ int) bool { + return x.Type == vcs.Type && x.URL == vcs.URL + }) + *d.comp.ExternalReferences = extRef + } else { + extRef := lo.Reject(*d.bom.ExternalReferences, func(x cydx.ExternalReference, _ int) bool { + return x.Type == vcs.Type && x.URL == vcs.URL + }) + *d.bom.ExternalReferences = extRef + } + } + + if d.c.search.subject != "document" { + if d.comp.ExternalReferences == nil { + d.comp.ExternalReferences = &[]cydx.ExternalReference{} + } + *d.comp.ExternalReferences = append(*d.comp.ExternalReferences, vcs) + } else { + if d.bom.ExternalReferences == nil { + d.bom.ExternalReferences = &[]cydx.ExternalReference{} + } + *d.bom.ExternalReferences = append(*d.bom.ExternalReferences, vcs) + } + } + return nil +} + +func (d *cdxEditDoc) description() error { + if !d.c.shouldDescription() { + return errNoConfiguration + } + + if d.c.search.subject == "document" { + return errNotSupported + } + + if d.c.onMissing() { + if d.comp.Description == "" { + d.comp.Description = d.c.description + } + } else { + d.comp.Description = d.c.description + } + + return nil +} + +func (d *cdxEditDoc) copyright() error { + if !d.c.shouldCopyRight() { + return errNoConfiguration + } + + if d.c.search.subject == "document" { + return errNotSupported + } + + if d.c.onMissing() { + if d.comp.Copyright == "" { + d.comp.Copyright = d.c.copyright + } + } else { + d.comp.Copyright = d.c.copyright + } + + return nil +} + +func (d *cdxEditDoc) tools() error { + if !d.c.shouldTools() { + return errNoConfiguration + } + + if d.c.search.subject != "document" { + return errNotSupported + } + + choice := cdxConstructTools(d.bom, d.c) + + if d.c.onMissing() { + if d.bom.Metadata.Tools == nil { + d.bom.Metadata.Tools = choice + } + } else if d.c.onAppend() { + if d.bom.Metadata.Tools != nil { + if d.bom.SpecVersion > cydx.SpecVersion1_4 { + if d.bom.Metadata.Tools.Components == nil { + d.bom.Metadata.Tools.Components = &[]cydx.Component{} + } + + *d.bom.Metadata.Tools.Components = append(*d.bom.Metadata.Tools.Components, *choice.Components...) + } else { + if d.bom.Metadata.Tools.Tools == nil { + d.bom.Metadata.Tools.Tools = &[]cydx.Tool{} + } + *d.bom.Metadata.Tools.Tools = append(*d.bom.Metadata.Tools.Tools, *choice.Tools...) + } + } else { + d.bom.Metadata.Tools = choice + } + } else { + d.bom.Metadata.Tools = choice + } + + return nil +} + +func (d *cdxEditDoc) hashes() error { + if !d.c.shouldHashes() { + return errNoConfiguration + } + + if d.c.search.subject == "document" { + return errNotSupported + } + + h := cdxConstructHashes(d.bom, d.c) + + if d.c.onMissing() { + if d.comp.Hashes == nil { + d.comp.Hashes = h + } + } else if d.c.onAppend() { + if d.comp.Hashes != nil { + *d.comp.Hashes = append(*d.comp.Hashes, *h...) + } else { + d.comp.Hashes = h + } + } else { + d.comp.Hashes = h + } + + return nil +} + +func (d *cdxEditDoc) licenses() error { + if !d.c.shouldLicenses() { + return errNoConfiguration + } + + lics := cdxConstructLicenses(d.bom, d.c) + + if d.c.onMissing() { + if d.c.search.subject == "document" { + if d.bom.Metadata.Licenses == nil { + d.bom.Metadata.Licenses = &lics + } + } else { + d.comp.Licenses = &lics + } + } else if d.c.onAppend() { + if d.c.search.subject == "document" { + if d.bom.Metadata.Licenses != nil { + *d.bom.Metadata.Licenses = append(*d.bom.Metadata.Licenses, lics...) + } else { + d.bom.Metadata.Licenses = &lics + } + } else { + if d.comp.Licenses != nil { + *d.comp.Licenses = append(*d.comp.Licenses, lics...) + } else { + d.comp.Licenses = &lics + } + } + } else { + if d.c.search.subject == "document" { + d.bom.Metadata.Licenses = &lics + } else { + d.comp.Licenses = &lics + } + } + return nil +} + +func (d *cdxEditDoc) purl() error { + if !d.c.shouldPurl() { + return errNoConfiguration + } + + if d.c.search.subject == "document" { + return errNotSupported + } + + if d.c.onMissing() { + if d.comp.PackageURL == "" { + d.comp.PackageURL = d.c.purl + } + } else { + d.comp.PackageURL = d.c.purl + } + + return nil +} + +func (d *cdxEditDoc) cpe() error { + if !d.c.shouldCpe() { + return errNoConfiguration + } + + if d.c.search.subject == "document" { + return errNotSupported + } + + if d.c.onMissing() { + if d.comp.CPE == "" { + d.comp.CPE = d.c.cpe + } + } else { + d.comp.CPE = d.c.cpe + } + return nil +} + +func (d *cdxEditDoc) name() error { + if !d.c.shouldName() { + return errNoConfiguration + } + + if d.c.search.subject == "document" { + return errNotSupported + } + + if d.c.onMissing() { + if d.comp.Name == "" { + d.comp.Name = d.c.name + } + } else { + d.comp.Name = d.c.name + } + return nil +} + +func (d *cdxEditDoc) version() error { + if !d.c.shouldVersion() { + return errNoConfiguration + } + + if d.c.search.subject == "document" { + return errNotSupported + } + + if d.c.onMissing() { + if d.comp.Version == "" { + d.comp.Version = d.c.version + } + } else { + d.comp.Version = d.c.version + } + return nil +} + +func (d *cdxEditDoc) supplier() error { + if !d.c.shouldSupplier() { + return errNoConfiguration + } + + supplier := cdxConstructSupplier(d.bom, d.c) + + if d.c.onMissing() { + if d.c.search.subject == "document" { + if d.bom.Metadata.Supplier == nil { + d.bom.Metadata.Supplier = supplier + } + } else { + if d.comp.Supplier == nil { + d.comp.Supplier = supplier + } + } + } else { + if d.c.search.subject == "document" { + d.bom.Metadata.Supplier = supplier + } else { + d.comp.Supplier = supplier + } + } + + return nil +} + +func (d *cdxEditDoc) authors() error { + if !d.c.shouldAuthors() { + return errNoConfiguration + } + + authors := cdxConstructAuthors(d.bom, d.c) + + if d.c.onMissing() { + if d.c.search.subject == "document" { + if d.bom.Metadata.Authors == nil { + d.bom.Metadata.Authors = authors + } + } else { + if d.bom.SpecVersion <= cydx.SpecVersion1_5 { + if d.comp.Author == "" { + d.comp.Author = d.c.getFormattedAuthors() + } + } else { + if d.comp.Authors == nil { + d.comp.Authors = authors + } + } + } + } else if d.c.onAppend() { + if d.c.search.subject == "document" { + *d.bom.Metadata.Authors = append(*d.bom.Metadata.Authors, *authors...) + } else { + if d.bom.SpecVersion <= cydx.SpecVersion1_5 { + d.comp.Author = d.c.getFormattedAuthors() + d.comp.Author = fmt.Sprintf("%s, %s", d.comp.Author, d.c.getFormattedAuthors()) + } else { + *d.comp.Authors = append(*d.comp.Authors, *authors...) + } + } + } else { + if d.c.search.subject == "document" { + d.bom.Metadata.Authors = authors + } else { + if d.bom.SpecVersion <= cydx.SpecVersion1_5 { + d.comp.Author = d.c.getFormattedAuthors() + } else { + d.comp.Authors = authors + } + } + } + return nil +} diff --git a/pkg/edit/config.go b/pkg/edit/config.go new file mode 100644 index 0000000..e1ff68f --- /dev/null +++ b/pkg/edit/config.go @@ -0,0 +1,287 @@ +// Copyright 2024 Interlynk.io +// +// 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 +// +// https://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. + +package edit + +import ( + "context" + "fmt" + "os" + "regexp" + "strings" +) + +var supportedSubjects map[string]bool = map[string]bool{ + "document": true, + "primary-component": true, + "component-name-version": true, +} + +type SearchParams struct { + subject string + name string + version string + missing bool + append bool +} + +type paramTuple struct { + name string + value string +} + +type configParams struct { + ctx *context.Context + + inputFilePath string + outputFilePath string + + search SearchParams + + name string + version string + supplier paramTuple + authors []paramTuple + purl string + cpe string + licenses []paramTuple + hashes []paramTuple + tools []paramTuple + copyright string + lifecycles []string + description string + repository string + typ string + + timestamp bool +} + +func (c *configParams) shouldTimeStamp() bool { + return c.timestamp +} + +func (c *configParams) shouldTyp() bool { + return c.typ != "" +} + +func (c *configParams) shouldRepository() bool { + return c.repository != "" +} + +func (c *configParams) shouldDescription() bool { + return c.description != "" +} + +func (c *configParams) shouldCopyRight() bool { + return c.copyright != "" +} + +func (c *configParams) shouldTools() bool { + return len(c.tools) > 0 +} + +func (c *configParams) shouldHashes() bool { + return len(c.hashes) > 0 +} + +func (c *configParams) shouldLicenses() bool { + return len(c.licenses) > 0 +} + +func (c *configParams) shouldCpe() bool { + return c.cpe != "" +} + +func (c *configParams) shouldPurl() bool { + return c.purl != "" +} + +func (c *configParams) shouldAuthors() bool { + return len(c.authors) > 0 +} + +func (c *configParams) shouldSupplier() bool { + return c.supplier.value != "" +} + +func (c *configParams) shouldVersion() bool { + return c.version != "" +} + +func (c *configParams) shouldName() bool { + return c.name != "" +} + +func (c *configParams) shouldOutput() bool { + return c.outputFilePath != "" +} + +func (c *configParams) shouldLifeCycle() bool { + return len(c.lifecycles) > 0 +} + +func (c *configParams) onMissing() bool { + return c.search.missing +} + +func (c *configParams) onAppend() bool { + return c.search.append +} + +func (c *configParams) shouldSearch() bool { + return c.search.subject == "component-name-version" +} + +func (c *configParams) getFormattedAuthors() string { + + authors := []string{} + for _, author := range c.authors { + authors = append(authors, fmt.Sprintf("%s <%s>", author.name, author.value)) + } + + return strings.Join(authors, ",") +} + +func convertToConfigParams(eParams *EditParams) (*configParams, error) { + p := &configParams{} + + //log := logger.FromContext(*eParams.Ctx) + + p.ctx = eParams.Ctx + + if err := validatePath(eParams.Input); err != nil { + return nil, err + } + + p.inputFilePath = eParams.Input + + if eParams.Output != "" { + p.outputFilePath = eParams.Output + } + + p.search = SearchParams{} + + if eParams.Subject != "" { + p.search.subject = eParams.Subject + } + + p.search = SearchParams{} + + if eParams.Subject != "" && supportedSubjects[strings.ToLower(eParams.Subject)] { + p.search.subject = strings.ToLower(eParams.Subject) + } else { + return nil, fmt.Errorf("unsupported subject %s", eParams.Subject) + } + + if p.search.subject == "component-name-version" { + name, version := parseInputFormat(eParams.Search) + if name == "" || version == "" { + return nil, fmt.Errorf("invalid component-name-version format both name and version must be provided") + } + p.search.name = name + p.search.version = version + } + + p.search.missing = eParams.Missing + p.search.append = eParams.Append + + p.name = eParams.Name + p.version = eParams.Version + + if eParams.Supplier != "" { + name, email := parseInputFormat(eParams.Supplier) + + p.supplier = paramTuple{ + name: name, + value: email, + } + } + + for _, author := range eParams.Authors { + name, email := parseInputFormat(author) + p.authors = append(p.authors, paramTuple{ + name: name, + value: email, + }) + } + + p.purl = eParams.Purl + p.cpe = eParams.Cpe + + for _, license := range eParams.Licenses { + name, url := parseInputFormat(license) + p.licenses = append(p.licenses, paramTuple{ + name: name, + value: url, + }) + } + + for _, hash := range eParams.Hashes { + algorithm, value := parseInputFormat(hash) + p.hashes = append(p.hashes, paramTuple{ + name: algorithm, + value: value, + }) + } + + for _, tool := range eParams.Tools { + name, version := parseInputFormat(tool) + p.tools = append(p.tools, paramTuple{ + name: name, + value: version, + }) + } + + p.copyright = eParams.CopyRight + p.lifecycles = eParams.Lifecycles + p.description = eParams.Description + p.repository = eParams.Repository + p.typ = eParams.Type + + p.timestamp = eParams.Timestamp + + return p, nil +} +func parseInputFormat(s string) (name string, version string) { + // Trim any leading/trailing whitespace + s = strings.TrimSpace(s) + + // Regular expression to match the pattern + re := regexp.MustCompile(`^(.+?)\s*(?:\(([^)]+)\))?$`) + + matches := re.FindStringSubmatch(s) + if len(matches) > 1 { + name = strings.TrimSpace(matches[1]) + if len(matches) > 2 { + version = strings.TrimSpace(matches[2]) + } + } else { + name = s + } + + return name, version +} +func validatePath(path string) error { + stat, err := os.Stat(path) + + if err != nil { + return err + } + + if stat.IsDir() { + return fmt.Errorf("path %s is a directory include only files", path) + } + + return nil +} diff --git a/pkg/edit/interface.go b/pkg/edit/interface.go new file mode 100644 index 0000000..7f709c9 --- /dev/null +++ b/pkg/edit/interface.go @@ -0,0 +1,86 @@ +// Copyright 2024 Interlynk.io +// +// 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 +// +// https://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. + +package edit + +import ( + "context" + + "github.com/interlynk-io/sbomasm/pkg/logger" +) + +// EditParams represents the parameters for the edit command +type EditParams struct { + Ctx *context.Context + + Input string + Output string + + Subject string + Search string + + Append bool + Missing bool + + Name string + Version string + Supplier string + Timestamp bool + Authors []string + Purl string + Cpe string + Licenses []string + Hashes []string + Tools []string + CopyRight string + Lifecycles []string + Description string + Repository string + Type string +} + +func NewEditParams() *EditParams { + return &EditParams{} +} + +func Edit(eParams *EditParams) error { + + log := logger.FromContext(*eParams.Ctx) + + c, err := convertToConfigParams(eParams) + if err != nil { + return err + } + log.Debugf("config %+v", c) + + spec, format, err := detectSbom(eParams.Input) + if err != nil { + return err + } + log.Debugf("input sbom spec: %s format: %s", spec, format) + + if spec == "cyclonedx" { + if err = cdxEdit(c); err != nil { + return err + } + } + + if spec == "spdx" { + if err = spdxEdit(c); err != nil { + return err + } + } + + return nil +} diff --git a/pkg/edit/spdx.go b/pkg/edit/spdx.go new file mode 100644 index 0000000..dc44ae0 --- /dev/null +++ b/pkg/edit/spdx.go @@ -0,0 +1,206 @@ +package edit + +import ( + "context" + "errors" + "io" + "os" + "strings" + + "github.com/interlynk-io/sbomasm/pkg/detect" + "github.com/interlynk-io/sbomasm/pkg/logger" + "github.com/spdx/tools-golang/spdx" + + spdx_json "github.com/spdx/tools-golang/json" + spdx_rdf "github.com/spdx/tools-golang/rdf" + "github.com/spdx/tools-golang/spdx/common" + spdx_tv "github.com/spdx/tools-golang/tagvalue" + spdx_yaml "github.com/spdx/tools-golang/yaml" +) + +var spdx_hash_algos = map[string]spdx.ChecksumAlgorithm{ + "MD5": spdx.MD5, + "SHA-1": spdx.SHA1, + "SHA-256": spdx.SHA256, + "SHA-384": spdx.SHA384, + "SHA-512": spdx.SHA512, + "SHA3-256": spdx.SHA256, + "SHA3-384": spdx.SHA384, + "SHA3-512": spdx.SHA512, + "BLAKE2b-256": spdx.BLAKE2b_256, + "BLAKE2b-384": spdx.BLAKE2b_384, + "BLAKE2b-512": spdx.BLAKE2b_512, + "BLAKE3": spdx.BLAKE3, +} + +var spdx_strings_to_types = map[string]string{ + "application": "APPLICATION", + "framework": "FRAMEWORK", + "library": "LIBRARY", + "container": "CONTAINER", + "operating-system": "OPERATING-SYSTEM", + "device": "DEVICE", + "firmware": "FIRMWARE", + "source": "SOURCE", + "archive": "ARCHIVE", + "file": "FILE", + "install": "INSTALL", + "other": "OTHER", +} + +func spdxEdit(c *configParams) error { + //log := logger.FromContext(*c.ctx) + + bom, err := loadSpdxSbom(*c.ctx, c.inputFilePath) + if err != nil { + return err + } + + doc := NewSpdxEditDoc(bom, c) + if doc == nil { + return errors.New("failed to create spdx edit document") + } + + doc.update() + + return writeSpdxSbom(doc.bom, c) +} + +func loadSpdxSbom(ctx context.Context, path string) (*spdx.Document, error) { + log := logger.FromContext(ctx) + + var d common.AnyDocument + var err error + + f, err := os.Open(path) + if err != nil { + return nil, err + } + defer f.Close() + + spec, format, err := detect.Detect(f) + if err != nil { + return nil, err + } + + log.Debugf("loading bom:%s spec:%s format:%s", path, spec, format) + + switch format { + case detect.FileFormatJSON: + d, err = spdx_json.Read(f) + case detect.FileFormatTagValue: + d, err = spdx_tv.Read(f) + case detect.FileFormatYAML: + d, err = spdx_yaml.Read(f) + case detect.FileFormatRDF: + d, err = spdx_rdf.Read(f) + default: + panic("unsupported spdx format") + + } + + if err != nil { + return nil, err + } + + return d.(*spdx.Document), nil +} + +func writeSpdxSbom(doc common.AnyDocument, m *configParams) error { + var f io.Writer + + if m.outputFilePath == "" { + f = os.Stdout + } else { + var err error + f, err = os.Create(m.outputFilePath) + if err != nil { + return err + } + } + + inf, err := os.Open(m.inputFilePath) + if err != nil { + return err + } + defer inf.Close() + + _, format, err := detect.Detect(inf) + if err != nil { + return err + } + + switch format { + case detect.FileFormatJSON: + var opt []spdx_json.WriteOption + opt = append(opt, spdx_json.Indent(" ")) // to create multiline json + opt = append(opt, spdx_json.EscapeHTML(true)) // to escape HTML characters + spdx_json.Write(doc, f, opt...) + case detect.FileFormatTagValue: + spdx_tv.Write(doc, f) + case detect.FileFormatYAML: + spdx_yaml.Write(doc, f) + case detect.FileFormatRDF: + panic("write rdf format not supported") + case detect.FileFormatXML: + panic("write xml format not supported") + } + + return nil +} + +func spdxFindPkg(doc *spdx.Document, c *configParams, primaryPackage bool) (*spdx.Package, error) { + pkgIDs := make(map[string]int) + + for index, pkg := range doc.Packages { + pkgIDs[string(pkg.PackageSPDXIdentifier)] = index + + if primaryPackage == false { + if pkg.PackageName == c.search.name && pkg.PackageVersion == c.search.version { + return doc.Packages[index], nil + } + } + } + + if primaryPackage { + for _, r := range doc.Relationships { + if strings.ToUpper(r.Relationship) == spdx.RelationshipDescribes { + i, ok := pkgIDs[string(r.RefB.ElementRefID)] + if ok { + return doc.Packages[i], nil + } + } + } + } + + return nil, errors.New("package not found") +} + +func spdxConstructLicenses(_ *spdx.Document, c *configParams) string { + licenses := []string{} + + for _, l := range c.licenses { + name := strings.ToLower(l.name) + if name == "noassertion" || name == "none" { + name = strings.ToUpper(l.name) + } else { + name = l.name + } + licenses = append(licenses, name) + } + + return strings.Join(licenses, "OR") +} + +func spdxConstructHashes(_ *spdx.Document, c *configParams) []spdx.Checksum { + hashes := []spdx.Checksum{} + + for _, h := range c.hashes { + hashes = append(hashes, spdx.Checksum{ + Algorithm: spdx.ChecksumAlgorithm(h.name), + Value: h.value, + }) + } + + return hashes +} diff --git a/pkg/edit/spdx_edit.go b/pkg/edit/spdx_edit.go new file mode 100644 index 0000000..ce79bd1 --- /dev/null +++ b/pkg/edit/spdx_edit.go @@ -0,0 +1,543 @@ +package edit + +import ( + "fmt" + "strings" + + "github.com/interlynk-io/sbomasm/pkg/logger" + "github.com/samber/lo" + "github.com/spdx/tools-golang/spdx" +) + +type spdxEditDoc struct { + bom *spdx.Document + pkg *spdx.Package + c *configParams +} + +func NewSpdxEditDoc(bom *spdx.Document, c *configParams) *spdxEditDoc { + doc := &spdxEditDoc{} + + doc.bom = bom + doc.c = c + + if c.search.subject == "primary-component" { + pkg, err := spdxFindPkg(bom, c, true) + if err == nil { + doc.pkg = pkg + } + } + + if c.search.subject == "component-name-version" { + pkg, err := spdxFindPkg(bom, c, false) + if err == nil { + doc.pkg = pkg + } + } + return doc +} + +func (d *spdxEditDoc) update() { + log := logger.FromContext(*d.c.ctx) + log.Debug("SPDX updating sbom") + + updateFuncs := []struct { + name string + f func() error + }{ + {"name", d.name}, + {"version", d.version}, + {"supplier", d.supplier}, + {"authors", d.authors}, + {"purl", d.purl}, + {"cpe", d.cpe}, + {"licenses", d.licenses}, + {"hashes", d.hashes}, + {"tools", d.tools}, + {"copyright", d.copyright}, + {"lifeCycles", d.lifeCycles}, + {"description", d.description}, + {"repository", d.repository}, + {"type", d.typ}, + {"timeStamp", d.timeStamp}, + } + + for _, item := range updateFuncs { + if err := item.f(); err != nil { + if err == errNotSupported { + log.Infof(fmt.Sprintf("SPDX error updating %s: %s", item.name, err)) + } + } + } +} + +func (d *spdxEditDoc) name() error { + if !d.c.shouldName() { + return errNoConfiguration + } + + if d.c.search.subject == "document" { + return errNotSupported + } + + if d.c.onMissing() { + if d.pkg.PackageName == "" { + d.pkg.PackageName = d.c.name + } + } else { + d.pkg.PackageName = d.c.name + } + + return nil +} + +func (d *spdxEditDoc) version() error { + if !d.c.shouldVersion() { + return errNoConfiguration + } + + if d.c.search.subject == "document" { + return errNotSupported + } + + if d.c.onMissing() { + if d.pkg.PackageVersion == "" { + d.pkg.PackageVersion = d.c.version + } + } else { + d.pkg.PackageVersion = d.c.version + } + return nil +} + +func (d *spdxEditDoc) supplier() error { + if !d.c.shouldSupplier() { + return errNoConfiguration + } + + if d.c.search.subject == "document" { + return errNotSupported + } + + supplier := spdx.Supplier{ + SupplierType: "Organization", + Supplier: fmt.Sprintf("%s (%s)", d.c.supplier.name, d.c.supplier.value), + } + + if d.c.onMissing() { + if d.pkg.PackageSupplier == nil { + d.pkg.PackageSupplier = &supplier + } + } else { + d.pkg.PackageSupplier = &supplier + } + + return nil +} + +func (d *spdxEditDoc) authors() error { + if !d.c.shouldAuthors() { + return errNoConfiguration + } + + if d.c.search.subject != "document" { + return errNotSupported + } + + authors := []spdx.Creator{} + + for _, author := range d.c.authors { + authors = append(authors, spdx.Creator{ + CreatorType: "Person", + Creator: fmt.Sprintf("%s (%s)", author.name, author.value), + }) + } + + if d.c.onMissing() { + if d.bom.CreationInfo == nil { + d.bom.CreationInfo = &spdx.CreationInfo{ + Creators: authors, + } + } else if d.bom.CreationInfo.Creators == nil { + d.bom.CreationInfo.Creators = authors + } + } else if d.c.onAppend() { + if d.bom.CreationInfo == nil { + d.bom.CreationInfo = &spdx.CreationInfo{ + Creators: authors, + } + } else if d.bom.CreationInfo.Creators == nil { + d.bom.CreationInfo.Creators = authors + } else { + d.bom.CreationInfo.Creators = append(d.bom.CreationInfo.Creators, authors...) + } + } else { + if d.bom.CreationInfo == nil { + d.bom.CreationInfo = &spdx.CreationInfo{ + Creators: authors, + } + } else { + d.bom.CreationInfo.Creators = authors + } + } + return nil +} + +func (d *spdxEditDoc) purl() error { + if !d.c.shouldPurl() { + return errNoConfiguration + } + + if d.c.search.subject == "document" { + return errNotSupported + } + + purl := spdx.PackageExternalReference{ + Category: "PACKAGE-MANAGER", + RefType: "purl", + Locator: d.c.purl, + } + + foundPurl := false + for _, ref := range d.pkg.PackageExternalReferences { + if ref.RefType == "purl" { + foundPurl = true + } + } + + if d.c.onMissing() { + if !foundPurl { + if d.pkg.PackageExternalReferences == nil { + d.pkg.PackageExternalReferences = []*spdx.PackageExternalReference{} + } + d.pkg.PackageExternalReferences = append(d.pkg.PackageExternalReferences, &purl) + } + } else if d.c.onAppend() { + if !foundPurl { + if d.pkg.PackageExternalReferences == nil { + d.pkg.PackageExternalReferences = []*spdx.PackageExternalReference{} + } + d.pkg.PackageExternalReferences = append(d.pkg.PackageExternalReferences, &purl) + } else { + d.pkg.PackageExternalReferences = append(d.pkg.PackageExternalReferences, &purl) + } + } else { + if d.pkg.PackageExternalReferences == nil { + d.pkg.PackageExternalReferences = []*spdx.PackageExternalReference{} + d.pkg.PackageExternalReferences = append(d.pkg.PackageExternalReferences, &purl) + } else { + extRef := lo.Reject(d.pkg.PackageExternalReferences, func(x *spdx.PackageExternalReference, _ int) bool { + return strings.ToLower(x.RefType) == "purl" + }) + + if extRef == nil { + extRef = []*spdx.PackageExternalReference{} + } + + d.pkg.PackageExternalReferences = append(extRef, &purl) + } + } + return nil +} + +func (d *spdxEditDoc) cpe() error { + if !d.c.shouldCpe() { + return errNoConfiguration + } + + if d.c.search.subject == "document" { + return errNotSupported + } + + cpe := spdx.PackageExternalReference{ + Category: "SECURITY", + RefType: "cpe23Type", + Locator: d.c.cpe, + } + + foundCpe := false + for _, ref := range d.pkg.PackageExternalReferences { + if ref.RefType == "cpe23Type" { + foundCpe = true + } + } + + if d.c.onMissing() { + if !foundCpe { + if d.pkg.PackageExternalReferences == nil { + d.pkg.PackageExternalReferences = []*spdx.PackageExternalReference{} + } + d.pkg.PackageExternalReferences = append(d.pkg.PackageExternalReferences, &cpe) + } + } else if d.c.onAppend() { + if !foundCpe { + if d.pkg.PackageExternalReferences == nil { + d.pkg.PackageExternalReferences = []*spdx.PackageExternalReference{} + } + d.pkg.PackageExternalReferences = append(d.pkg.PackageExternalReferences, &cpe) + } else { + d.pkg.PackageExternalReferences = append(d.pkg.PackageExternalReferences, &cpe) + } + } else { + if d.pkg.PackageExternalReferences == nil { + d.pkg.PackageExternalReferences = []*spdx.PackageExternalReference{} + d.pkg.PackageExternalReferences = append(d.pkg.PackageExternalReferences, &cpe) + } else { + extRef := lo.Reject(d.pkg.PackageExternalReferences, func(x *spdx.PackageExternalReference, _ int) bool { + return strings.ToLower(x.RefType) == "cpe23Type" + }) + + if extRef == nil { + extRef = []*spdx.PackageExternalReference{} + } + + d.pkg.PackageExternalReferences = append(extRef, &cpe) + } + } + return nil +} + +func (d *spdxEditDoc) licenses() error { + if !d.c.shouldLicenses() { + return errNoConfiguration + } + + license := spdxConstructLicenses(d.bom, d.c) + + if d.c.onMissing() { + if d.c.search.subject == "document" { + if d.bom.DataLicense == "" { + d.bom.DataLicense = license + } + } else { + if d.pkg.PackageLicenseConcluded == "" { + d.pkg.PackageLicenseConcluded = license + } + } + } else { + if d.c.search.subject == "document" { + d.bom.DataLicense = license + } else { + d.pkg.PackageLicenseConcluded = license + } + } + return nil +} + +func (d *spdxEditDoc) hashes() error { + if !d.c.shouldHashes() { + return errNoConfiguration + } + + if d.c.search.subject == "document" { + return errNotSupported + } + + hashes := spdxConstructHashes(d.bom, d.c) + + if d.c.onMissing() { + if d.pkg.PackageChecksums == nil { + d.pkg.PackageChecksums = hashes + } + } else if d.c.onAppend() { + if d.pkg.PackageChecksums == nil { + d.pkg.PackageChecksums = hashes + } else { + d.pkg.PackageChecksums = append(d.pkg.PackageChecksums, hashes...) + } + } else { + d.pkg.PackageChecksums = hashes + } + + return nil +} + +func (d *spdxEditDoc) tools() error { + if !d.c.shouldTools() { + return errNoConfiguration + } + + if d.c.search.subject != "document" { + return errNotSupported + } + + tools := []spdx.Creator{} + + for _, tool := range d.c.tools { + tools = append(tools, spdx.Creator{ + CreatorType: "Tool", + Creator: fmt.Sprintf("%s (%s)", tool.name, tool.value), + }) + } + + if d.c.onMissing() { + if d.bom.CreationInfo == nil { + d.bom.CreationInfo = &spdx.CreationInfo{ + Creators: tools, + } + } else if d.bom.CreationInfo.Creators == nil { + d.bom.CreationInfo.Creators = tools + } else { + d.bom.CreationInfo.Creators = append(d.bom.CreationInfo.Creators, tools...) + } + } else if d.c.onAppend() { + if d.bom.CreationInfo == nil { + d.bom.CreationInfo = &spdx.CreationInfo{ + Creators: tools, + } + } else if d.bom.CreationInfo.Creators == nil { + d.bom.CreationInfo.Creators = tools + } else { + d.bom.CreationInfo.Creators = append(d.bom.CreationInfo.Creators, tools...) + } + } else { + if d.bom.CreationInfo == nil { + d.bom.CreationInfo = &spdx.CreationInfo{ + Creators: tools, + } + } else { + d.bom.CreationInfo.Creators = tools + } + } + return nil +} + +func (d *spdxEditDoc) copyright() error { + if !d.c.shouldCopyRight() { + return errNoConfiguration + } + + if d.c.search.subject == "document" { + return errNotSupported + } + + if d.c.onMissing() { + if d.pkg.PackageCopyrightText == "" { + d.pkg.PackageCopyrightText = d.c.copyright + } + } else { + d.pkg.PackageCopyrightText = d.c.copyright + } + + return nil +} + +func (d *spdxEditDoc) description() error { + if !d.c.shouldDescription() { + return errNoConfiguration + } + + if d.c.search.subject == "document" { + return errNotSupported + } + + if d.c.onMissing() { + if d.pkg.PackageDescription == "" { + d.pkg.PackageDescription = d.c.description + } + } else { + d.pkg.PackageDescription = d.c.description + } + + return nil +} + +func (d *spdxEditDoc) repository() error { + if !d.c.shouldRepository() { + return errNoConfiguration + } + + if d.c.search.subject == "document" { + return errNotSupported + } + + if d.c.onMissing() { + if d.pkg.PackageDownloadLocation == "" { + d.pkg.PackageDownloadLocation = d.c.repository + } + } else { + d.pkg.PackageDownloadLocation = d.c.repository + } + + return nil +} + +func (d *spdxEditDoc) typ() error { + if !d.c.shouldTyp() { + return errNoConfiguration + } + + if d.c.search.subject == "document" { + return errNotSupported + } + + purpose := spdx_strings_to_types[strings.ToLower(d.c.typ)] + + if purpose == "" { + return errInvalidInput + } + + if d.c.onMissing() { + if d.pkg.PrimaryPackagePurpose == "" { + d.pkg.PrimaryPackagePurpose = purpose + } + } else { + d.pkg.PrimaryPackagePurpose = purpose + } + + return nil +} + +func (d *spdxEditDoc) timeStamp() error { + if !d.c.shouldTimeStamp() { + return errNoConfiguration + } + + if d.c.search.subject != "document" { + return errNotSupported + } + + if d.c.onMissing() { + if d.bom.CreationInfo == nil { + d.bom.CreationInfo = &spdx.CreationInfo{} + } + + if d.bom.CreationInfo.Created == "" { + d.bom.CreationInfo.Created = utcNowTime() + } + } else { + if d.bom.CreationInfo == nil { + d.bom.CreationInfo = &spdx.CreationInfo{} + } + + d.bom.CreationInfo.Created = utcNowTime() + } + return nil +} + +func (d *spdxEditDoc) lifeCycles() error { + if !d.c.shouldLifeCycle() { + return errNoConfiguration + } + + if d.c.search.subject != "document" { + return errNotSupported + } + + lifecycles := fmt.Sprintf("lifecycle: %s", strings.Join(d.c.lifecycles, ",")) + + if d.c.onMissing() { + if d.bom.CreationInfo == nil { + d.bom.CreationInfo = &spdx.CreationInfo{} + } + if d.bom.CreationInfo.CreatorComment == "" { + d.bom.CreationInfo.CreatorComment = lifecycles + } + } else { + if d.bom.CreationInfo == nil { + d.bom.CreationInfo = &spdx.CreationInfo{} + } + d.bom.CreationInfo.CreatorComment = lifecycles + } + return nil +} diff --git a/pkg/edit/utils.go b/pkg/edit/utils.go new file mode 100644 index 0000000..1b9d34d --- /dev/null +++ b/pkg/edit/utils.go @@ -0,0 +1,33 @@ +package edit + +import ( + "errors" + "os" + "time" + + "github.com/interlynk-io/sbomasm/pkg/detect" +) + +var errNoConfiguration = errors.New("no configuration provided") +var errNotSupported = errors.New("not supported") +var errInvalidInput = errors.New("invalid input data") + +func detectSbom(path string) (string, string, error) { + f, err := os.Open(path) + if err != nil { + return "", "", err + } + defer f.Close() + + spec, format, err := detect.Detect(f) + if err != nil { + return "", "", err + } + return string(spec), string(format), nil +} + +func utcNowTime() string { + location, _ := time.LoadLocation("UTC") + locationTime := time.Now().In(location) + return locationTime.Format(time.RFC3339) +} diff --git a/pkg/licenses/embed_licenses.go b/pkg/licenses/embed_licenses.go new file mode 100644 index 0000000..47b1d48 --- /dev/null +++ b/pkg/licenses/embed_licenses.go @@ -0,0 +1,198 @@ +package licenses + +import ( + "embed" + "encoding/json" + "fmt" + "log" + "strings" +) + +var ( + //go:embed files + res embed.FS + + licenses = map[string]string{ + "spdx": "files/licenses_spdx.json", + "spdxException": "files/licenses_spdx_exception.json", + "aboutcode": "files/licenses_aboutcode.json", + } +) + +type spdxLicense struct { + Version string `json:"licenseListVersion"` + Licenses []spdxLicenseDetail `json:"licenses"` + Exceptions []spdxLicenseDetail `json:"exceptions"` +} + +type spdxLicenseDetail struct { + Reference string `json:"reference"` + IsDeprecated bool `json:"isDeprecatedLicenseId"` + DetailsURL string `json:"detailsUrl"` + ReferenceNumber int `json:"referenceNumber"` + Name string `json:"name"` + LicenseID string `json:"licenseId"` + LicenseExceptionID string `json:"licenseExceptionId"` + SeeAlso []string `json:"seeAlso"` + IsOsiApproved bool `json:"isOsiApproved"` + IsFsfLibre bool `json:"isFsfLibre"` +} + +type aboutCodeLicenseDetail struct { + LicenseKey string `json:"license_key"` + Category string `json:"category"` + SpdxLicenseKey string `json:"spdx_license_key"` + OtherSpdxLicenseKeys []string `json:"other_spdx_license_keys"` + Exception bool `json:"is_exception"` + Deprecated bool `json:"is_deprecated"` + JSON string `json:"json"` + Yaml string `json:"yaml"` + HTML string `json:"html"` + License string `json:"license"` +} + +var ( + licenseList = map[string]meta{} + LicenseListAboutCode = map[string]meta{} +) + +func loadSpdxLicense() error { + licData, err := res.ReadFile(licenses["spdx"]) + if err != nil { + fmt.Printf("error: %v\n", err) + return err + } + + var sl spdxLicense + if err := json.Unmarshal(licData, &sl); err != nil { + fmt.Printf("error: %v\n", err) + return err + } + + for _, l := range sl.Licenses { + licenseList[l.LicenseID] = meta{ + name: l.Name, + short: l.LicenseID, + deprecated: l.IsDeprecated, + osiApproved: l.IsOsiApproved, + fsfLibre: l.IsFsfLibre, + restrictive: false, + exception: false, + freeAnyUse: false, + source: "spdx", + } + } + // fmt.Printf("loaded %d licenses\n", len(licenseList)) + return nil +} + +func loadSpdxExceptions() error { + licData, err := res.ReadFile(licenses["spdxException"]) + if err != nil { + fmt.Printf("error: %v\n", err) + return err + } + + var sl spdxLicense + if err := json.Unmarshal(licData, &sl); err != nil { + fmt.Printf("error: %v\n", err) + return err + } + + for _, l := range sl.Exceptions { + licenseList[l.LicenseExceptionID] = meta{ + name: l.Name, + short: l.LicenseExceptionID, + deprecated: l.IsDeprecated, + osiApproved: l.IsOsiApproved, + fsfLibre: l.IsFsfLibre, + restrictive: false, + exception: true, + freeAnyUse: false, + source: "spdx", + } + } + // fmt.Printf("loaded %d licenses\n", len(licenseList)) + + return nil +} + +func loadAboutCodeLicense() error { + licData, err := res.ReadFile(licenses["aboutcode"]) + if err != nil { + fmt.Printf("error: %v\n", err) + return err + } + + var acl []aboutCodeLicenseDetail + + if err := json.Unmarshal(licData, &acl); err != nil { + fmt.Printf("error: %v\n", err) + return err + } + + isRestrictive := func(category string) bool { + lowerCategory := strings.ToLower(category) + + if strings.Contains(lowerCategory, "copyleft") { + return true + } + + if strings.Contains(lowerCategory, "restricted") { + return true + } + + return false + } + + isFreeAnyUse := func(category string) bool { + lowerCategory := strings.ToLower(category) + return strings.Contains(lowerCategory, "public") + } + + for _, l := range acl { + for _, otherKey := range l.OtherSpdxLicenseKeys { + LicenseListAboutCode[otherKey] = meta{ + name: l.LicenseKey, + short: otherKey, + deprecated: l.Deprecated, + osiApproved: false, + fsfLibre: false, + restrictive: isRestrictive(l.Category), + exception: l.Exception, + freeAnyUse: isFreeAnyUse(l.Category), + source: "aboutcode", + } + } + + LicenseListAboutCode[l.SpdxLicenseKey] = meta{ + name: l.LicenseKey, + short: l.SpdxLicenseKey, + deprecated: l.Deprecated, + osiApproved: false, + fsfLibre: false, + restrictive: isRestrictive(l.Category), + exception: l.Exception, + freeAnyUse: isFreeAnyUse(l.Category), + source: "aboutcode", + } + } + // fmt.Printf("loaded %d licenses\n", len(LicenseListAboutCode)) + + return nil +} + +func init() { + err := loadSpdxLicense() + if err != nil { + log.Printf("Failed to load spdx license: %v", err) + } + err = loadSpdxExceptions() + if err != nil { + log.Printf("Failed to load spdx exceptions: %v", err) + } + err = loadAboutCodeLicense() + if err != nil { + log.Printf("Failed to load about code license: %v", err) + } +} diff --git a/pkg/licenses/files/licenses_aboutcode.json b/pkg/licenses/files/licenses_aboutcode.json new file mode 100644 index 0000000..f3c0b4a --- /dev/null +++ b/pkg/licenses/files/licenses_aboutcode.json @@ -0,0 +1,28119 @@ +[ + { + "license_key": "389-exception", + "category": "Copyleft Limited", + "spdx_license_key": "389-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "389-exception.json", + "yaml": "389-exception.yml", + "html": "389-exception.html", + "license": "389-exception.LICENSE" + }, + { + "license_key": "3com-microcode", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-3com-microcode", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "3com-microcode.json", + "yaml": "3com-microcode.yml", + "html": "3com-microcode.html", + "license": "3com-microcode.LICENSE" + }, + { + "license_key": "3dslicer-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-3dslicer-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "3dslicer-1.0.json", + "yaml": "3dslicer-1.0.yml", + "html": "3dslicer-1.0.html", + "license": "3dslicer-1.0.LICENSE" + }, + { + "license_key": "4suite-1.1", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-4suite-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "4suite-1.1.json", + "yaml": "4suite-1.1.yml", + "html": "4suite-1.1.html", + "license": "4suite-1.1.LICENSE" + }, + { + "license_key": "996-icu-1.0", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-996-icu-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "996-icu-1.0.json", + "yaml": "996-icu-1.0.yml", + "html": "996-icu-1.0.html", + "license": "996-icu-1.0.LICENSE" + }, + { + "license_key": "aardvark-py-2014", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-aardvark-py-2014", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "aardvark-py-2014.json", + "yaml": "aardvark-py-2014.yml", + "html": "aardvark-py-2014.html", + "license": "aardvark-py-2014.LICENSE" + }, + { + "license_key": "abrms", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-abrms", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "abrms.json", + "yaml": "abrms.yml", + "html": "abrms.html", + "license": "abrms.LICENSE" + }, + { + "license_key": "abstyles", + "category": "Permissive", + "spdx_license_key": "Abstyles", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "abstyles.json", + "yaml": "abstyles.yml", + "html": "abstyles.html", + "license": "abstyles.LICENSE" + }, + { + "license_key": "ac3filter", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-ac3filter", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ac3filter.json", + "yaml": "ac3filter.yml", + "html": "ac3filter.html", + "license": "ac3filter.LICENSE" + }, + { + "license_key": "accellera-systemc", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-accellera-systemc", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "accellera-systemc.json", + "yaml": "accellera-systemc.yml", + "html": "accellera-systemc.html", + "license": "accellera-systemc.LICENSE" + }, + { + "license_key": "acdl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "CDL-1.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-acdl-1.0" + ], + "is_exception": false, + "is_deprecated": false, + "json": "acdl-1.0.json", + "yaml": "acdl-1.0.yml", + "html": "acdl-1.0.html", + "license": "acdl-1.0.LICENSE" + }, + { + "license_key": "ace-tao", + "category": "Permissive", + "spdx_license_key": "DOC", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ace-tao.json", + "yaml": "ace-tao.yml", + "html": "ace-tao.html", + "license": "ace-tao.LICENSE" + }, + { + "license_key": "acm-sla", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-acm-sla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "acm-sla.json", + "yaml": "acm-sla.yml", + "html": "acm-sla.html", + "license": "acm-sla.LICENSE" + }, + { + "license_key": "acroname-bdk", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-acroname-bdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "acroname-bdk.json", + "yaml": "acroname-bdk.yml", + "html": "acroname-bdk.html", + "license": "acroname-bdk.LICENSE" + }, + { + "license_key": "activestate-community", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-activestate-community", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "activestate-community.json", + "yaml": "activestate-community.yml", + "html": "activestate-community.html", + "license": "activestate-community.LICENSE" + }, + { + "license_key": "activestate-community-2012", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-activestate-community-2012", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "activestate-community-2012.json", + "yaml": "activestate-community-2012.yml", + "html": "activestate-community-2012.html", + "license": "activestate-community-2012.LICENSE" + }, + { + "license_key": "activestate-komodo-edit", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-activestate-komodo-edit", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "activestate-komodo-edit.json", + "yaml": "activestate-komodo-edit.yml", + "html": "activestate-komodo-edit.html", + "license": "activestate-komodo-edit.LICENSE" + }, + { + "license_key": "actuate-birt-ihub-ftype-sla", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-actuate-birt-ihub-ftype-sla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "actuate-birt-ihub-ftype-sla.json", + "yaml": "actuate-birt-ihub-ftype-sla.yml", + "html": "actuate-birt-ihub-ftype-sla.html", + "license": "actuate-birt-ihub-ftype-sla.LICENSE" + }, + { + "license_key": "ada-linking-exception", + "category": "Copyleft Limited", + "spdx_license_key": "GNAT-exception", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ada-linking-exception" + ], + "is_exception": true, + "is_deprecated": false, + "json": "ada-linking-exception.json", + "yaml": "ada-linking-exception.yml", + "html": "ada-linking-exception.html", + "license": "ada-linking-exception.LICENSE" + }, + { + "license_key": "adacore-doc", + "category": "Permissive", + "spdx_license_key": "AdaCore-doc", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adacore-doc.json", + "yaml": "adacore-doc.yml", + "html": "adacore-doc.html", + "license": "adacore-doc.LICENSE" + }, + { + "license_key": "adapt-1.0", + "category": "Copyleft", + "spdx_license_key": "APL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adapt-1.0.json", + "yaml": "adapt-1.0.yml", + "html": "adapt-1.0.html", + "license": "adapt-1.0.LICENSE" + }, + { + "license_key": "adaptec-downloadable", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-adaptec-downloadable", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adaptec-downloadable.json", + "yaml": "adaptec-downloadable.yml", + "html": "adaptec-downloadable.html", + "license": "adaptec-downloadable.LICENSE" + }, + { + "license_key": "adaptec-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-adaptec-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adaptec-eula.json", + "yaml": "adaptec-eula.yml", + "html": "adaptec-eula.html", + "license": "adaptec-eula.LICENSE" + }, + { + "license_key": "adcolony-tos-2022", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-adcolony-tos-2022", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adcolony-tos-2022.json", + "yaml": "adcolony-tos-2022.yml", + "html": "adcolony-tos-2022.html", + "license": "adcolony-tos-2022.LICENSE" + }, + { + "license_key": "addthis-mobile-sdk-1.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-addthis-mobile-sdk-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "addthis-mobile-sdk-1.0.json", + "yaml": "addthis-mobile-sdk-1.0.yml", + "html": "addthis-mobile-sdk-1.0.html", + "license": "addthis-mobile-sdk-1.0.LICENSE" + }, + { + "license_key": "adi-bsd", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-adi-bsd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adi-bsd.json", + "yaml": "adi-bsd.yml", + "html": "adi-bsd.html", + "license": "adi-bsd.LICENSE" + }, + { + "license_key": "adobe-acrobat-reader-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-adobe-acrobat-reader-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adobe-acrobat-reader-eula.json", + "yaml": "adobe-acrobat-reader-eula.yml", + "html": "adobe-acrobat-reader-eula.html", + "license": "adobe-acrobat-reader-eula.LICENSE" + }, + { + "license_key": "adobe-air-sdk", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-adobe-air-sdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adobe-air-sdk.json", + "yaml": "adobe-air-sdk.yml", + "html": "adobe-air-sdk.html", + "license": "adobe-air-sdk.LICENSE" + }, + { + "license_key": "adobe-air-sdk-2014", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-adobe-air-sdk-2014", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adobe-air-sdk-2014.json", + "yaml": "adobe-air-sdk-2014.yml", + "html": "adobe-air-sdk-2014.html", + "license": "adobe-air-sdk-2014.LICENSE" + }, + { + "license_key": "adobe-color-profile-bundling", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-adobe-color-profile-bundling", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adobe-color-profile-bundling.json", + "yaml": "adobe-color-profile-bundling.yml", + "html": "adobe-color-profile-bundling.html", + "license": "adobe-color-profile-bundling.LICENSE" + }, + { + "license_key": "adobe-color-profile-license", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-adobe-color-profile-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adobe-color-profile-license.json", + "yaml": "adobe-color-profile-license.yml", + "html": "adobe-color-profile-license.html", + "license": "adobe-color-profile-license.LICENSE" + }, + { + "license_key": "adobe-dng-sdk", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-adobe-dng-sdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adobe-dng-sdk.json", + "yaml": "adobe-dng-sdk.yml", + "html": "adobe-dng-sdk.html", + "license": "adobe-dng-sdk.LICENSE" + }, + { + "license_key": "adobe-dng-spec-patent", + "category": "Patent License", + "spdx_license_key": "LicenseRef-scancode-adobe-dng-spec-patent", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adobe-dng-spec-patent.json", + "yaml": "adobe-dng-spec-patent.yml", + "html": "adobe-dng-spec-patent.html", + "license": "adobe-dng-spec-patent.LICENSE" + }, + { + "license_key": "adobe-eula", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-adobe-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adobe-eula.json", + "yaml": "adobe-eula.yml", + "html": "adobe-eula.html", + "license": "adobe-eula.LICENSE" + }, + { + "license_key": "adobe-flash-player-eula-21.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-adobe-flash-player-eula-21.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adobe-flash-player-eula-21.0.json", + "yaml": "adobe-flash-player-eula-21.0.yml", + "html": "adobe-flash-player-eula-21.0.html", + "license": "adobe-flash-player-eula-21.0.LICENSE" + }, + { + "license_key": "adobe-flex-4-sdk", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-adobe-flex-4-sdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adobe-flex-4-sdk.json", + "yaml": "adobe-flex-4-sdk.yml", + "html": "adobe-flex-4-sdk.html", + "license": "adobe-flex-4-sdk.LICENSE" + }, + { + "license_key": "adobe-flex-sdk", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-adobe-flex-sdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adobe-flex-sdk.json", + "yaml": "adobe-flex-sdk.yml", + "html": "adobe-flex-sdk.html", + "license": "adobe-flex-sdk.LICENSE" + }, + { + "license_key": "adobe-general-tou", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-adobe-general-tou", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adobe-general-tou.json", + "yaml": "adobe-general-tou.yml", + "html": "adobe-general-tou.html", + "license": "adobe-general-tou.LICENSE" + }, + { + "license_key": "adobe-glyph", + "category": "Permissive", + "spdx_license_key": "Adobe-Glyph", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adobe-glyph.json", + "yaml": "adobe-glyph.yml", + "html": "adobe-glyph.html", + "license": "adobe-glyph.LICENSE" + }, + { + "license_key": "adobe-indesign-sdk", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-adobe-indesign-sdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adobe-indesign-sdk.json", + "yaml": "adobe-indesign-sdk.yml", + "html": "adobe-indesign-sdk.html", + "license": "adobe-indesign-sdk.LICENSE" + }, + { + "license_key": "adobe-postscript", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-adobe-postscript", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adobe-postscript.json", + "yaml": "adobe-postscript.yml", + "html": "adobe-postscript.html", + "license": "adobe-postscript.LICENSE" + }, + { + "license_key": "adobe-scl", + "category": "Permissive", + "spdx_license_key": "Adobe-2006", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adobe-scl.json", + "yaml": "adobe-scl.yml", + "html": "adobe-scl.html", + "license": "adobe-scl.LICENSE" + }, + { + "license_key": "adobe-utopia", + "category": "Permissive", + "spdx_license_key": "Adobe-Utopia", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adobe-utopia.json", + "yaml": "adobe-utopia.yml", + "html": "adobe-utopia.html", + "license": "adobe-utopia.LICENSE" + }, + { + "license_key": "adrian", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-adrian", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adrian.json", + "yaml": "adrian.yml", + "html": "adrian.html", + "license": "adrian.LICENSE" + }, + { + "license_key": "adsl", + "category": "Permissive", + "spdx_license_key": "ADSL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adsl.json", + "yaml": "adsl.yml", + "html": "adsl.html", + "license": "adsl.LICENSE" + }, + { + "license_key": "aes-128-3.0", + "category": "Public Domain", + "spdx_license_key": "LicenseRef-scancode-aes-128-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "aes-128-3.0.json", + "yaml": "aes-128-3.0.yml", + "html": "aes-128-3.0.html", + "license": "aes-128-3.0.LICENSE" + }, + { + "license_key": "afl-1.1", + "category": "Permissive", + "spdx_license_key": "AFL-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "afl-1.1.json", + "yaml": "afl-1.1.yml", + "html": "afl-1.1.html", + "license": "afl-1.1.LICENSE" + }, + { + "license_key": "afl-1.2", + "category": "Permissive", + "spdx_license_key": "AFL-1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "afl-1.2.json", + "yaml": "afl-1.2.yml", + "html": "afl-1.2.html", + "license": "afl-1.2.LICENSE" + }, + { + "license_key": "afl-2.0", + "category": "Permissive", + "spdx_license_key": "AFL-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "afl-2.0.json", + "yaml": "afl-2.0.yml", + "html": "afl-2.0.html", + "license": "afl-2.0.LICENSE" + }, + { + "license_key": "afl-2.1", + "category": "Permissive", + "spdx_license_key": "AFL-2.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "afl-2.1.json", + "yaml": "afl-2.1.yml", + "html": "afl-2.1.html", + "license": "afl-2.1.LICENSE" + }, + { + "license_key": "afl-3.0", + "category": "Permissive", + "spdx_license_key": "AFL-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "afl-3.0.json", + "yaml": "afl-3.0.yml", + "html": "afl-3.0.html", + "license": "afl-3.0.LICENSE" + }, + { + "license_key": "afmparse", + "category": "Permissive", + "spdx_license_key": "Afmparse", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "afmparse.json", + "yaml": "afmparse.yml", + "html": "afmparse.html", + "license": "afmparse.LICENSE" + }, + { + "license_key": "afpl-8.0", + "category": "Copyleft", + "spdx_license_key": "Aladdin", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "afpl-8.0.json", + "yaml": "afpl-8.0.yml", + "html": "afpl-8.0.html", + "license": "afpl-8.0.LICENSE" + }, + { + "license_key": "afpl-9.0", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-afpl-9.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "afpl-9.0.json", + "yaml": "afpl-9.0.yml", + "html": "afpl-9.0.html", + "license": "afpl-9.0.LICENSE" + }, + { + "license_key": "agentxpp", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-agentxpp", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "agentxpp.json", + "yaml": "agentxpp.yml", + "html": "agentxpp.html", + "license": "agentxpp.LICENSE" + }, + { + "license_key": "agere-bsd", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-agere-bsd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "agere-bsd.json", + "yaml": "agere-bsd.yml", + "html": "agere-bsd.html", + "license": "agere-bsd.LICENSE" + }, + { + "license_key": "agere-sla", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-agere-sla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "agere-sla.json", + "yaml": "agere-sla.yml", + "html": "agere-sla.html", + "license": "agere-sla.LICENSE" + }, + { + "license_key": "ago-private-1.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ago-private-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ago-private-1.0.json", + "yaml": "ago-private-1.0.yml", + "html": "ago-private-1.0.html", + "license": "ago-private-1.0.LICENSE" + }, + { + "license_key": "agpl-1.0", + "category": "Copyleft", + "spdx_license_key": "AGPL-1.0-only", + "other_spdx_license_keys": [ + "AGPL-1.0" + ], + "is_exception": false, + "is_deprecated": false, + "json": "agpl-1.0.json", + "yaml": "agpl-1.0.yml", + "html": "agpl-1.0.html", + "license": "agpl-1.0.LICENSE" + }, + { + "license_key": "agpl-1.0-plus", + "category": "Copyleft", + "spdx_license_key": "AGPL-1.0-or-later", + "other_spdx_license_keys": [ + "AGPL-1.0+" + ], + "is_exception": false, + "is_deprecated": false, + "json": "agpl-1.0-plus.json", + "yaml": "agpl-1.0-plus.yml", + "html": "agpl-1.0-plus.html", + "license": "agpl-1.0-plus.LICENSE" + }, + { + "license_key": "agpl-2.0", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-agpl-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "agpl-2.0.json", + "yaml": "agpl-2.0.yml", + "html": "agpl-2.0.html", + "license": "agpl-2.0.LICENSE" + }, + { + "license_key": "agpl-3.0", + "category": "Copyleft", + "spdx_license_key": "AGPL-3.0-only", + "other_spdx_license_keys": [ + "AGPL-3.0", + "LicenseRef-AGPL-3.0" + ], + "is_exception": false, + "is_deprecated": false, + "json": "agpl-3.0.json", + "yaml": "agpl-3.0.yml", + "html": "agpl-3.0.html", + "license": "agpl-3.0.LICENSE" + }, + { + "license_key": "agpl-3.0-bacula", + "category": "Copyleft", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "agpl-3.0-bacula.json", + "yaml": "agpl-3.0-bacula.yml", + "html": "agpl-3.0-bacula.html", + "license": "agpl-3.0-bacula.LICENSE" + }, + { + "license_key": "agpl-3.0-linking-exception", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "agpl-3.0-linking-exception.json", + "yaml": "agpl-3.0-linking-exception.yml", + "html": "agpl-3.0-linking-exception.html", + "license": "agpl-3.0-linking-exception.LICENSE" + }, + { + "license_key": "agpl-3.0-openssl", + "category": "Copyleft", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "agpl-3.0-openssl.json", + "yaml": "agpl-3.0-openssl.yml", + "html": "agpl-3.0-openssl.html", + "license": "agpl-3.0-openssl.LICENSE" + }, + { + "license_key": "agpl-3.0-plus", + "category": "Copyleft", + "spdx_license_key": "AGPL-3.0-or-later", + "other_spdx_license_keys": [ + "AGPL-3.0+", + "LicenseRef-AGPL" + ], + "is_exception": false, + "is_deprecated": false, + "json": "agpl-3.0-plus.json", + "yaml": "agpl-3.0-plus.yml", + "html": "agpl-3.0-plus.html", + "license": "agpl-3.0-plus.LICENSE" + }, + { + "license_key": "agpl-generic-additional-terms", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-agpl-generic-additional-terms", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "agpl-generic-additional-terms.json", + "yaml": "agpl-generic-additional-terms.yml", + "html": "agpl-generic-additional-terms.html", + "license": "agpl-generic-additional-terms.LICENSE" + }, + { + "license_key": "agtpl", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-agtpl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "agtpl.json", + "yaml": "agtpl.yml", + "html": "agtpl.html", + "license": "agtpl.LICENSE" + }, + { + "license_key": "aladdin-md5", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "aladdin-md5.json", + "yaml": "aladdin-md5.yml", + "html": "aladdin-md5.html", + "license": "aladdin-md5.LICENSE" + }, + { + "license_key": "alasir", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-alasir", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "alasir.json", + "yaml": "alasir.yml", + "html": "alasir.html", + "license": "alasir.LICENSE" + }, + { + "license_key": "aldor-public-2.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-aldor-public-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "aldor-public-2.0.json", + "yaml": "aldor-public-2.0.yml", + "html": "aldor-public-2.0.html", + "license": "aldor-public-2.0.LICENSE" + }, + { + "license_key": "alexisisaac-freeware", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-alexisisaac-freeware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "alexisisaac-freeware.json", + "yaml": "alexisisaac-freeware.yml", + "html": "alexisisaac-freeware.html", + "license": "alexisisaac-freeware.LICENSE" + }, + { + "license_key": "alfresco-exception-0.5", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-alfresco-exception-0.5", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "alfresco-exception-0.5.json", + "yaml": "alfresco-exception-0.5.yml", + "html": "alfresco-exception-0.5.html", + "license": "alfresco-exception-0.5.LICENSE" + }, + { + "license_key": "allegro-4", + "category": "Permissive", + "spdx_license_key": "Giftware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "allegro-4.json", + "yaml": "allegro-4.yml", + "html": "allegro-4.html", + "license": "allegro-4.LICENSE" + }, + { + "license_key": "allen-institute-software-2018", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-allen-institute-software-2018", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "allen-institute-software-2018.json", + "yaml": "allen-institute-software-2018.yml", + "html": "allen-institute-software-2018.html", + "license": "allen-institute-software-2018.LICENSE" + }, + { + "license_key": "alliance-open-media-patent-1.0", + "category": "Patent License", + "spdx_license_key": "LicenseRef-scancode-alliance-open-media-patent-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "alliance-open-media-patent-1.0.json", + "yaml": "alliance-open-media-patent-1.0.yml", + "html": "alliance-open-media-patent-1.0.html", + "license": "alliance-open-media-patent-1.0.LICENSE" + }, + { + "license_key": "altermime", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-altermime", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "altermime.json", + "yaml": "altermime.yml", + "html": "altermime.html", + "license": "altermime.LICENSE" + }, + { + "license_key": "altova-eula", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-altova-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "altova-eula.json", + "yaml": "altova-eula.yml", + "html": "altova-eula.html", + "license": "altova-eula.LICENSE" + }, + { + "license_key": "amazon-redshift-jdbc", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-amazon-redshift-jdbc", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "amazon-redshift-jdbc.json", + "yaml": "amazon-redshift-jdbc.yml", + "html": "amazon-redshift-jdbc.html", + "license": "amazon-redshift-jdbc.LICENSE" + }, + { + "license_key": "amazon-sl", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-.amazon.com.-AmznSL-1.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-amazon-sl" + ], + "is_exception": false, + "is_deprecated": false, + "json": "amazon-sl.json", + "yaml": "amazon-sl.yml", + "html": "amazon-sl.html", + "license": "amazon-sl.LICENSE" + }, + { + "license_key": "amd-aspf-2023", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-amd-aspf-2023", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "amd-aspf-2023.json", + "yaml": "amd-aspf-2023.yml", + "html": "amd-aspf-2023.html", + "license": "amd-aspf-2023.LICENSE" + }, + { + "license_key": "amd-historical", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-amd-historical", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "amd-historical.json", + "yaml": "amd-historical.yml", + "html": "amd-historical.html", + "license": "amd-historical.LICENSE" + }, + { + "license_key": "amd-linux-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-amd-linux-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "amd-linux-firmware.json", + "yaml": "amd-linux-firmware.yml", + "html": "amd-linux-firmware.html", + "license": "amd-linux-firmware.LICENSE" + }, + { + "license_key": "amd-linux-firmware-export", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-amd-linux-firmware-export", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "amd-linux-firmware-export.json", + "yaml": "amd-linux-firmware-export.yml", + "html": "amd-linux-firmware-export.html", + "license": "amd-linux-firmware-export.LICENSE" + }, + { + "license_key": "amdplpa", + "category": "Permissive", + "spdx_license_key": "AMDPLPA", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "amdplpa.json", + "yaml": "amdplpa.yml", + "html": "amdplpa.html", + "license": "amdplpa.LICENSE" + }, + { + "license_key": "aml", + "category": "Permissive", + "spdx_license_key": "AML", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "aml.json", + "yaml": "aml.yml", + "html": "aml.html", + "license": "aml.LICENSE" + }, + { + "license_key": "amlogic-linux-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-amlogic-linux-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "amlogic-linux-firmware.json", + "yaml": "amlogic-linux-firmware.yml", + "html": "amlogic-linux-firmware.html", + "license": "amlogic-linux-firmware.LICENSE" + }, + { + "license_key": "ampas", + "category": "Permissive", + "spdx_license_key": "AMPAS", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ampas.json", + "yaml": "ampas.yml", + "html": "ampas.html", + "license": "ampas.LICENSE" + }, + { + "license_key": "ams-fonts", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ams-fonts", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ams-fonts.json", + "yaml": "ams-fonts.yml", + "html": "ams-fonts.html", + "license": "ams-fonts.LICENSE" + }, + { + "license_key": "android-sdk-2009", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-android-sdk-2009", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "android-sdk-2009.json", + "yaml": "android-sdk-2009.yml", + "html": "android-sdk-2009.html", + "license": "android-sdk-2009.LICENSE" + }, + { + "license_key": "android-sdk-2012", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-android-sdk-2012", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "android-sdk-2012.json", + "yaml": "android-sdk-2012.yml", + "html": "android-sdk-2012.html", + "license": "android-sdk-2012.LICENSE" + }, + { + "license_key": "android-sdk-2021", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-android-sdk-2021", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "android-sdk-2021.json", + "yaml": "android-sdk-2021.yml", + "html": "android-sdk-2021.html", + "license": "android-sdk-2021.LICENSE" + }, + { + "license_key": "android-sdk-license", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-android-sdk-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "android-sdk-license.json", + "yaml": "android-sdk-license.yml", + "html": "android-sdk-license.html", + "license": "android-sdk-license.LICENSE" + }, + { + "license_key": "android-sdk-preview-2015", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-android-sdk-preview-2015", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "android-sdk-preview-2015.json", + "yaml": "android-sdk-preview-2015.yml", + "html": "android-sdk-preview-2015.html", + "license": "android-sdk-preview-2015.LICENSE" + }, + { + "license_key": "anepokis-1.0", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-anepokis-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "anepokis-1.0.json", + "yaml": "anepokis-1.0.yml", + "html": "anepokis-1.0.html", + "license": "anepokis-1.0.LICENSE" + }, + { + "license_key": "anti-capitalist-1.4", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-anti-capitalist-1.4", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "anti-capitalist-1.4.json", + "yaml": "anti-capitalist-1.4.yml", + "html": "anti-capitalist-1.4.html", + "license": "anti-capitalist-1.4.LICENSE" + }, + { + "license_key": "antlr-pd", + "category": "Permissive", + "spdx_license_key": "ANTLR-PD", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "antlr-pd.json", + "yaml": "antlr-pd.yml", + "html": "antlr-pd.html", + "license": "antlr-pd.LICENSE" + }, + { + "license_key": "antlr-pd-fallback", + "category": "Public Domain", + "spdx_license_key": "ANTLR-PD-fallback", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "antlr-pd-fallback.json", + "yaml": "antlr-pd-fallback.yml", + "html": "antlr-pd-fallback.html", + "license": "antlr-pd-fallback.LICENSE" + }, + { + "license_key": "anu-license", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-anu-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "anu-license.json", + "yaml": "anu-license.yml", + "html": "anu-license.html", + "license": "anu-license.LICENSE" + }, + { + "license_key": "aop-pd", + "category": "Public Domain", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "aop-pd.json", + "yaml": "aop-pd.yml", + "html": "aop-pd.html", + "license": "aop-pd.LICENSE" + }, + { + "license_key": "apache-1.0", + "category": "Permissive", + "spdx_license_key": "Apache-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "apache-1.0.json", + "yaml": "apache-1.0.yml", + "html": "apache-1.0.html", + "license": "apache-1.0.LICENSE" + }, + { + "license_key": "apache-1.1", + "category": "Permissive", + "spdx_license_key": "Apache-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "apache-1.1.json", + "yaml": "apache-1.1.yml", + "html": "apache-1.1.html", + "license": "apache-1.1.LICENSE" + }, + { + "license_key": "apache-2.0", + "category": "Permissive", + "spdx_license_key": "Apache-2.0", + "other_spdx_license_keys": [ + "LicenseRef-Apache", + "LicenseRef-Apache-2.0" + ], + "is_exception": false, + "is_deprecated": false, + "json": "apache-2.0.json", + "yaml": "apache-2.0.yml", + "html": "apache-2.0.html", + "license": "apache-2.0.LICENSE" + }, + { + "license_key": "apache-2.0-linking-exception", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "apache-2.0-linking-exception.json", + "yaml": "apache-2.0-linking-exception.yml", + "html": "apache-2.0-linking-exception.html", + "license": "apache-2.0-linking-exception.LICENSE" + }, + { + "license_key": "apache-2.0-runtime-library-exception", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "apache-2.0-runtime-library-exception.json", + "yaml": "apache-2.0-runtime-library-exception.yml", + "html": "apache-2.0-runtime-library-exception.html", + "license": "apache-2.0-runtime-library-exception.LICENSE" + }, + { + "license_key": "apache-due-credit", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "apache-due-credit.json", + "yaml": "apache-due-credit.yml", + "html": "apache-due-credit.html", + "license": "apache-due-credit.LICENSE" + }, + { + "license_key": "apache-exception-llvm", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "apache-exception-llvm.json", + "yaml": "apache-exception-llvm.yml", + "html": "apache-exception-llvm.html", + "license": "apache-exception-llvm.LICENSE" + }, + { + "license_key": "apache-patent-exception", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-apache-patent-exception", + "other_spdx_license_keys": [ + "LicenseRef-scancode-apache-patent-provision-exception" + ], + "is_exception": true, + "is_deprecated": false, + "json": "apache-patent-exception.json", + "yaml": "apache-patent-exception.yml", + "html": "apache-patent-exception.html", + "license": "apache-patent-exception.LICENSE" + }, + { + "license_key": "apache-patent-provision-exception", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "apache-patent-provision-exception.json", + "yaml": "apache-patent-provision-exception.yml", + "html": "apache-patent-provision-exception.html", + "license": "apache-patent-provision-exception.LICENSE" + }, + { + "license_key": "apafml", + "category": "Permissive", + "spdx_license_key": "APAFML", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "apafml.json", + "yaml": "apafml.yml", + "html": "apafml.html", + "license": "apafml.LICENSE" + }, + { + "license_key": "apl-1.1", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-apl-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "apl-1.1.json", + "yaml": "apl-1.1.yml", + "html": "apl-1.1.html", + "license": "apl-1.1.LICENSE" + }, + { + "license_key": "app-s2p", + "category": "Permissive", + "spdx_license_key": "App-s2p", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "app-s2p.json", + "yaml": "app-s2p.yml", + "html": "app-s2p.html", + "license": "app-s2p.LICENSE" + }, + { + "license_key": "appfire-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-appfire-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "appfire-eula.json", + "yaml": "appfire-eula.yml", + "html": "appfire-eula.html", + "license": "appfire-eula.LICENSE" + }, + { + "license_key": "apple-academic-lisa-os-3.1", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-apple-academic-lisa-os-3.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "apple-academic-lisa-os-3.1.json", + "yaml": "apple-academic-lisa-os-3.1.yml", + "html": "apple-academic-lisa-os-3.1.html", + "license": "apple-academic-lisa-os-3.1.LICENSE" + }, + { + "license_key": "apple-attribution", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-apple-attribution", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "apple-attribution.json", + "yaml": "apple-attribution.yml", + "html": "apple-attribution.html", + "license": "apple-attribution.LICENSE" + }, + { + "license_key": "apple-attribution-1997", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-apple-attribution-1997", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "apple-attribution-1997.json", + "yaml": "apple-attribution-1997.yml", + "html": "apple-attribution-1997.html", + "license": "apple-attribution-1997.LICENSE" + }, + { + "license_key": "apple-excl", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-apple-excl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "apple-excl.json", + "yaml": "apple-excl.yml", + "html": "apple-excl.html", + "license": "apple-excl.LICENSE" + }, + { + "license_key": "apple-mfi-license", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-apple-mfi-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "apple-mfi-license.json", + "yaml": "apple-mfi-license.yml", + "html": "apple-mfi-license.html", + "license": "apple-mfi-license.LICENSE" + }, + { + "license_key": "apple-ml-ferret-2023", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-apple-ml-ferret-2023", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "apple-ml-ferret-2023.json", + "yaml": "apple-ml-ferret-2023.yml", + "html": "apple-ml-ferret-2023.html", + "license": "apple-ml-ferret-2023.LICENSE" + }, + { + "license_key": "apple-mpeg-4", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-apple-mpeg-4", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "apple-mpeg-4.json", + "yaml": "apple-mpeg-4.yml", + "html": "apple-mpeg-4.html", + "license": "apple-mpeg-4.LICENSE" + }, + { + "license_key": "apple-runtime-library-exception", + "category": "Permissive", + "spdx_license_key": "Swift-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "apple-runtime-library-exception.json", + "yaml": "apple-runtime-library-exception.yml", + "html": "apple-runtime-library-exception.html", + "license": "apple-runtime-library-exception.LICENSE" + }, + { + "license_key": "apple-sscl", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-apple-sscl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "apple-sscl.json", + "yaml": "apple-sscl.yml", + "html": "apple-sscl.html", + "license": "apple-sscl.LICENSE" + }, + { + "license_key": "appsflyer-framework", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-appsflyer-framework", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "appsflyer-framework.json", + "yaml": "appsflyer-framework.yml", + "html": "appsflyer-framework.html", + "license": "appsflyer-framework.LICENSE" + }, + { + "license_key": "apsl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "APSL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "apsl-1.0.json", + "yaml": "apsl-1.0.yml", + "html": "apsl-1.0.html", + "license": "apsl-1.0.LICENSE" + }, + { + "license_key": "apsl-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "APSL-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "apsl-1.1.json", + "yaml": "apsl-1.1.yml", + "html": "apsl-1.1.html", + "license": "apsl-1.1.LICENSE" + }, + { + "license_key": "apsl-1.2", + "category": "Copyleft Limited", + "spdx_license_key": "APSL-1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "apsl-1.2.json", + "yaml": "apsl-1.2.yml", + "html": "apsl-1.2.html", + "license": "apsl-1.2.LICENSE" + }, + { + "license_key": "apsl-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "APSL-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "apsl-2.0.json", + "yaml": "apsl-2.0.yml", + "html": "apsl-2.0.html", + "license": "apsl-2.0.LICENSE" + }, + { + "license_key": "aptana-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-aptana-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "aptana-1.0.json", + "yaml": "aptana-1.0.yml", + "html": "aptana-1.0.html", + "license": "aptana-1.0.LICENSE" + }, + { + "license_key": "aptana-exception-3.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-aptana-exception-3.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "aptana-exception-3.0.json", + "yaml": "aptana-exception-3.0.yml", + "html": "aptana-exception-3.0.html", + "license": "aptana-exception-3.0.LICENSE" + }, + { + "license_key": "arachni-psl-1.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-arachni-psl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "arachni-psl-1.0.json", + "yaml": "arachni-psl-1.0.yml", + "html": "arachni-psl-1.0.html", + "license": "arachni-psl-1.0.LICENSE" + }, + { + "license_key": "aravindan-premkumar", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-aravindan-premkumar", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "aravindan-premkumar.json", + "yaml": "aravindan-premkumar.yml", + "html": "aravindan-premkumar.html", + "license": "aravindan-premkumar.LICENSE" + }, + { + "license_key": "argouml", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-argouml", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "argouml.json", + "yaml": "argouml.yml", + "html": "argouml.html", + "license": "argouml.LICENSE" + }, + { + "license_key": "arm-cortex-mx", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-arm-cortex-mx", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "arm-cortex-mx.json", + "yaml": "arm-cortex-mx.yml", + "html": "arm-cortex-mx.html", + "license": "arm-cortex-mx.LICENSE" + }, + { + "license_key": "arm-llvm-sga", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-arm-llvm-sga", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "arm-llvm-sga.json", + "yaml": "arm-llvm-sga.yml", + "html": "arm-llvm-sga.html", + "license": "arm-llvm-sga.LICENSE" + }, + { + "license_key": "arphic-public", + "category": "Copyleft", + "spdx_license_key": "Arphic-1999", + "other_spdx_license_keys": [ + "LicenseRef-scancode-arphic-public" + ], + "is_exception": false, + "is_deprecated": false, + "json": "arphic-public.json", + "yaml": "arphic-public.yml", + "html": "arphic-public.html", + "license": "arphic-public.LICENSE" + }, + { + "license_key": "array-input-method-pl", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-array-input-method-pl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "array-input-method-pl.json", + "yaml": "array-input-method-pl.yml", + "html": "array-input-method-pl.html", + "license": "array-input-method-pl.LICENSE" + }, + { + "license_key": "artistic-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "Artistic-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "artistic-1.0.json", + "yaml": "artistic-1.0.yml", + "html": "artistic-1.0.html", + "license": "artistic-1.0.LICENSE" + }, + { + "license_key": "artistic-1.0-cl8", + "category": "Copyleft Limited", + "spdx_license_key": "Artistic-1.0-cl8", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "artistic-1.0-cl8.json", + "yaml": "artistic-1.0-cl8.yml", + "html": "artistic-1.0-cl8.html", + "license": "artistic-1.0-cl8.LICENSE" + }, + { + "license_key": "artistic-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "Artistic-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "artistic-2.0.json", + "yaml": "artistic-2.0.yml", + "html": "artistic-2.0.html", + "license": "artistic-2.0.LICENSE" + }, + { + "license_key": "artistic-clarified", + "category": "Copyleft Limited", + "spdx_license_key": "ClArtistic", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "artistic-clarified.json", + "yaml": "artistic-clarified.yml", + "html": "artistic-clarified.html", + "license": "artistic-clarified.LICENSE" + }, + { + "license_key": "artistic-dist-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-artistic-1988-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "artistic-dist-1.0.json", + "yaml": "artistic-dist-1.0.yml", + "html": "artistic-dist-1.0.html", + "license": "artistic-dist-1.0.LICENSE" + }, + { + "license_key": "artistic-perl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "Artistic-1.0-Perl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "artistic-perl-1.0.json", + "yaml": "artistic-perl-1.0.yml", + "html": "artistic-perl-1.0.html", + "license": "artistic-perl-1.0.LICENSE" + }, + { + "license_key": "asal-1.0", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-asal-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "asal-1.0.json", + "yaml": "asal-1.0.yml", + "html": "asal-1.0.html", + "license": "asal-1.0.LICENSE" + }, + { + "license_key": "ascender-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ascender-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ascender-eula.json", + "yaml": "ascender-eula.yml", + "html": "ascender-eula.html", + "license": "ascender-eula.LICENSE" + }, + { + "license_key": "ascender-web-fonts", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-ascender-web-fonts", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ascender-web-fonts.json", + "yaml": "ascender-web-fonts.yml", + "html": "ascender-web-fonts.html", + "license": "ascender-web-fonts.LICENSE" + }, + { + "license_key": "aslp", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-aslp", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "aslp.json", + "yaml": "aslp.yml", + "html": "aslp.html", + "license": "aslp.LICENSE" + }, + { + "license_key": "aslr", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-aslr", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "aslr.json", + "yaml": "aslr.yml", + "html": "aslr.html", + "license": "aslr.LICENSE" + }, + { + "license_key": "asmus", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-asmus", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "asmus.json", + "yaml": "asmus.yml", + "html": "asmus.html", + "license": "asmus.LICENSE" + }, + { + "license_key": "asn1", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-asn1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "asn1.json", + "yaml": "asn1.yml", + "html": "asn1.html", + "license": "asn1.LICENSE" + }, + { + "license_key": "asterisk-exception", + "category": "Copyleft", + "spdx_license_key": "Asterisk-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "asterisk-exception.json", + "yaml": "asterisk-exception.yml", + "html": "asterisk-exception.html", + "license": "asterisk-exception.LICENSE" + }, + { + "license_key": "aswf-digital-assets-1.0", + "category": "Free Restricted", + "spdx_license_key": "ASWF-Digital-Assets-1.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-aswf-digital-assets-1.0" + ], + "is_exception": false, + "is_deprecated": false, + "json": "aswf-digital-assets-1.0.json", + "yaml": "aswf-digital-assets-1.0.yml", + "html": "aswf-digital-assets-1.0.html", + "license": "aswf-digital-assets-1.0.LICENSE" + }, + { + "license_key": "aswf-digital-assets-1.1", + "category": "Free Restricted", + "spdx_license_key": "ASWF-Digital-Assets-1.1", + "other_spdx_license_keys": [ + "LicenseRef-scancode-aswf-digital-assets-1.1" + ], + "is_exception": false, + "is_deprecated": false, + "json": "aswf-digital-assets-1.1.json", + "yaml": "aswf-digital-assets-1.1.yml", + "html": "aswf-digital-assets-1.1.html", + "license": "aswf-digital-assets-1.1.LICENSE" + }, + { + "license_key": "ati-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ati-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ati-eula.json", + "yaml": "ati-eula.yml", + "html": "ati-eula.html", + "license": "ati-eula.LICENSE" + }, + { + "license_key": "atkinson-hyperlegible-font", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-atkinson-hyperlegible-font", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "atkinson-hyperlegible-font.json", + "yaml": "atkinson-hyperlegible-font.yml", + "html": "atkinson-hyperlegible-font.html", + "license": "atkinson-hyperlegible-font.LICENSE" + }, + { + "license_key": "atlassian-marketplace-tou", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-atlassian-marketplace-tou", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "atlassian-marketplace-tou.json", + "yaml": "atlassian-marketplace-tou.yml", + "html": "atlassian-marketplace-tou.html", + "license": "atlassian-marketplace-tou.LICENSE" + }, + { + "license_key": "atmel-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-atmel-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "atmel-firmware.json", + "yaml": "atmel-firmware.yml", + "html": "atmel-firmware.html", + "license": "atmel-firmware.LICENSE" + }, + { + "license_key": "atmel-linux-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-atmel-linux-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "atmel-linux-firmware.json", + "yaml": "atmel-linux-firmware.yml", + "html": "atmel-linux-firmware.html", + "license": "atmel-linux-firmware.LICENSE" + }, + { + "license_key": "atmel-microcontroller", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-atmel-microcontroller", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "atmel-microcontroller.json", + "yaml": "atmel-microcontroller.yml", + "html": "atmel-microcontroller.html", + "license": "atmel-microcontroller.LICENSE" + }, + { + "license_key": "atmosphere-0.4", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-atmosphere-0.4", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "atmosphere-0.4.json", + "yaml": "atmosphere-0.4.yml", + "html": "atmosphere-0.4.html", + "license": "atmosphere-0.4.LICENSE" + }, + { + "license_key": "attribution", + "category": "Permissive", + "spdx_license_key": "AAL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "attribution.json", + "yaml": "attribution.yml", + "html": "attribution.html", + "license": "attribution.LICENSE" + }, + { + "license_key": "authorizenet-sdk", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-authorizenet-sdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "authorizenet-sdk.json", + "yaml": "authorizenet-sdk.yml", + "html": "authorizenet-sdk.html", + "license": "authorizenet-sdk.LICENSE" + }, + { + "license_key": "autoconf-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "Autoconf-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "autoconf-exception-2.0.json", + "yaml": "autoconf-exception-2.0.yml", + "html": "autoconf-exception-2.0.html", + "license": "autoconf-exception-2.0.LICENSE" + }, + { + "license_key": "autoconf-exception-3.0", + "category": "Copyleft Limited", + "spdx_license_key": "Autoconf-exception-3.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "autoconf-exception-3.0.json", + "yaml": "autoconf-exception-3.0.yml", + "html": "autoconf-exception-3.0.html", + "license": "autoconf-exception-3.0.LICENSE" + }, + { + "license_key": "autoconf-macro-exception", + "category": "Copyleft Limited", + "spdx_license_key": "Autoconf-exception-macro", + "other_spdx_license_keys": [ + "LicenseRef-scancode-autoconf-macro-exception" + ], + "is_exception": true, + "is_deprecated": false, + "json": "autoconf-macro-exception.json", + "yaml": "autoconf-macro-exception.yml", + "html": "autoconf-macro-exception.html", + "license": "autoconf-macro-exception.LICENSE" + }, + { + "license_key": "autoconf-simple-exception", + "category": "Copyleft Limited", + "spdx_license_key": "Autoconf-exception-generic-3.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-autoconf-simple-exception" + ], + "is_exception": true, + "is_deprecated": false, + "json": "autoconf-simple-exception.json", + "yaml": "autoconf-simple-exception.yml", + "html": "autoconf-simple-exception.html", + "license": "autoconf-simple-exception.LICENSE" + }, + { + "license_key": "autoconf-simple-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "Autoconf-exception-generic", + "other_spdx_license_keys": [ + "LicenseRef-scancode-autoconf-simple-exception-2.0" + ], + "is_exception": true, + "is_deprecated": false, + "json": "autoconf-simple-exception-2.0.json", + "yaml": "autoconf-simple-exception-2.0.yml", + "html": "autoconf-simple-exception-2.0.html", + "license": "autoconf-simple-exception-2.0.LICENSE" + }, + { + "license_key": "autodesk-3d-sft-3.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-autodesk-3d-sft-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "autodesk-3d-sft-3.0.json", + "yaml": "autodesk-3d-sft-3.0.yml", + "html": "autodesk-3d-sft-3.0.html", + "license": "autodesk-3d-sft-3.0.LICENSE" + }, + { + "license_key": "autoit-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-autoit-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "autoit-eula.json", + "yaml": "autoit-eula.yml", + "html": "autoit-eula.html", + "license": "autoit-eula.LICENSE" + }, + { + "license_key": "autoopts-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-autoopts-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "autoopts-exception-2.0.json", + "yaml": "autoopts-exception-2.0.yml", + "html": "autoopts-exception-2.0.html", + "license": "autoopts-exception-2.0.LICENSE" + }, + { + "license_key": "avisynth-c-interface-exception", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-avisynth-c-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "avisynth-c-interface-exception.json", + "yaml": "avisynth-c-interface-exception.yml", + "html": "avisynth-c-interface-exception.html", + "license": "avisynth-c-interface-exception.LICENSE" + }, + { + "license_key": "avisynth-linking-exception", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-avisynth-linking-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "avisynth-linking-exception.json", + "yaml": "avisynth-linking-exception.yml", + "html": "avisynth-linking-exception.html", + "license": "avisynth-linking-exception.LICENSE" + }, + { + "license_key": "avsystem-5-clause", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-avsystem-5-clause", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "avsystem-5-clause.json", + "yaml": "avsystem-5-clause.yml", + "html": "avsystem-5-clause.html", + "license": "avsystem-5-clause.LICENSE" + }, + { + "license_key": "bacula-exception", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-bacula-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "bacula-exception.json", + "yaml": "bacula-exception.yml", + "html": "bacula-exception.html", + "license": "bacula-exception.LICENSE" + }, + { + "license_key": "baekmuk-fonts", + "category": "Permissive", + "spdx_license_key": "Baekmuk", + "other_spdx_license_keys": [ + "LicenseRef-scancode-baekmuk-fonts" + ], + "is_exception": false, + "is_deprecated": false, + "json": "baekmuk-fonts.json", + "yaml": "baekmuk-fonts.yml", + "html": "baekmuk-fonts.html", + "license": "baekmuk-fonts.LICENSE" + }, + { + "license_key": "bahyph", + "category": "Permissive", + "spdx_license_key": "Bahyph", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bahyph.json", + "yaml": "bahyph.yml", + "html": "bahyph.html", + "license": "bahyph.LICENSE" + }, + { + "license_key": "bakoma-fonts-1995", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bakoma-fonts-1995", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bakoma-fonts-1995.json", + "yaml": "bakoma-fonts-1995.yml", + "html": "bakoma-fonts-1995.html", + "license": "bakoma-fonts-1995.LICENSE" + }, + { + "license_key": "bapl-1.0", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-bapl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bapl-1.0.json", + "yaml": "bapl-1.0.yml", + "html": "bapl-1.0.html", + "license": "bapl-1.0.LICENSE" + }, + { + "license_key": "barr-tex", + "category": "Permissive", + "spdx_license_key": "Barr", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "barr-tex.json", + "yaml": "barr-tex.yml", + "html": "barr-tex.html", + "license": "barr-tex.LICENSE" + }, + { + "license_key": "bash-exception-gpl", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-bash-exception-gpl-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "bash-exception-gpl.json", + "yaml": "bash-exception-gpl.yml", + "html": "bash-exception-gpl.html", + "license": "bash-exception-gpl.LICENSE" + }, + { + "license_key": "bcrypt-solar-designer", + "category": "Permissive", + "spdx_license_key": "bcrypt-Solar-Designer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bcrypt-solar-designer.json", + "yaml": "bcrypt-solar-designer.yml", + "html": "bcrypt-solar-designer.html", + "license": "bcrypt-solar-designer.LICENSE" + }, + { + "license_key": "bea-2.1", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bea-2.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bea-2.1.json", + "yaml": "bea-2.1.yml", + "html": "bea-2.1.html", + "license": "bea-2.1.LICENSE" + }, + { + "license_key": "beal-screamer", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-beal-screamer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "beal-screamer.json", + "yaml": "beal-screamer.yml", + "html": "beal-screamer.html", + "license": "beal-screamer.LICENSE" + }, + { + "license_key": "beerware", + "category": "Permissive", + "spdx_license_key": "Beerware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "beerware.json", + "yaml": "beerware.yml", + "html": "beerware.html", + "license": "beerware.LICENSE" + }, + { + "license_key": "beri-hw-sw-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-beri-hw-sw-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "beri-hw-sw-1.0.json", + "yaml": "beri-hw-sw-1.0.yml", + "html": "beri-hw-sw-1.0.html", + "license": "beri-hw-sw-1.0.LICENSE" + }, + { + "license_key": "bigcode-open-rail-m-v1", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-bigcode-open-rail-m-v1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bigcode-open-rail-m-v1.json", + "yaml": "bigcode-open-rail-m-v1.yml", + "html": "bigcode-open-rail-m-v1.html", + "license": "bigcode-open-rail-m-v1.LICENSE" + }, + { + "license_key": "bigdigits", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bigdigits", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bigdigits.json", + "yaml": "bigdigits.yml", + "html": "bigdigits.html", + "license": "bigdigits.LICENSE" + }, + { + "license_key": "bigelow-holmes", + "category": "Permissive", + "spdx_license_key": "Lucida-Bitmap-Fonts", + "other_spdx_license_keys": [ + "LicenseRef-scancode-bigelow-holmes" + ], + "is_exception": false, + "is_deprecated": false, + "json": "bigelow-holmes.json", + "yaml": "bigelow-holmes.yml", + "html": "bigelow-holmes.html", + "license": "bigelow-holmes.LICENSE" + }, + { + "license_key": "bigscience-open-rail-m", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-bigscience-open-rail-m", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bigscience-open-rail-m.json", + "yaml": "bigscience-open-rail-m.yml", + "html": "bigscience-open-rail-m.html", + "license": "bigscience-open-rail-m.LICENSE" + }, + { + "license_key": "bigscience-rail-1.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-bigscience-rail-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bigscience-rail-1.0.json", + "yaml": "bigscience-rail-1.0.yml", + "html": "bigscience-rail-1.0.html", + "license": "bigscience-rail-1.0.LICENSE" + }, + { + "license_key": "binary-linux-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-binary-linux-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "binary-linux-firmware.json", + "yaml": "binary-linux-firmware.yml", + "html": "binary-linux-firmware.html", + "license": "binary-linux-firmware.LICENSE" + }, + { + "license_key": "binary-linux-firmware-patent", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-binary-linux-firmware-patent", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "binary-linux-firmware-patent.json", + "yaml": "binary-linux-firmware-patent.yml", + "html": "binary-linux-firmware-patent.html", + "license": "binary-linux-firmware-patent.LICENSE" + }, + { + "license_key": "biopython", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-biopython", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "biopython.json", + "yaml": "biopython.yml", + "html": "biopython.html", + "license": "biopython.LICENSE" + }, + { + "license_key": "biosl-4.0", + "category": "Unstated License", + "spdx_license_key": "LicenseRef-scancode-biosl-4.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "biosl-4.0.json", + "yaml": "biosl-4.0.yml", + "html": "biosl-4.0.html", + "license": "biosl-4.0.LICENSE" + }, + { + "license_key": "bison-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "Bison-exception-1.24", + "other_spdx_license_keys": [ + "LicenseRef-scancode-bison-exception-2.0" + ], + "is_exception": true, + "is_deprecated": false, + "json": "bison-exception-2.0.json", + "yaml": "bison-exception-2.0.yml", + "html": "bison-exception-2.0.html", + "license": "bison-exception-2.0.LICENSE" + }, + { + "license_key": "bison-exception-2.2", + "category": "Copyleft Limited", + "spdx_license_key": "Bison-exception-2.2", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "bison-exception-2.2.json", + "yaml": "bison-exception-2.2.yml", + "html": "bison-exception-2.2.html", + "license": "bison-exception-2.2.LICENSE" + }, + { + "license_key": "bitstream", + "category": "Permissive", + "spdx_license_key": "Bitstream-Vera", + "other_spdx_license_keys": [ + "LicenseRef-scancode-bitstream" + ], + "is_exception": false, + "is_deprecated": false, + "json": "bitstream.json", + "yaml": "bitstream.yml", + "html": "bitstream.html", + "license": "bitstream.LICENSE" + }, + { + "license_key": "bittorrent-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "BitTorrent-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bittorrent-1.0.json", + "yaml": "bittorrent-1.0.yml", + "html": "bittorrent-1.0.html", + "license": "bittorrent-1.0.LICENSE" + }, + { + "license_key": "bittorrent-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "BitTorrent-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bittorrent-1.1.json", + "yaml": "bittorrent-1.1.yml", + "html": "bittorrent-1.1.html", + "license": "bittorrent-1.1.LICENSE" + }, + { + "license_key": "bittorrent-1.2", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-bittorrent-1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bittorrent-1.2.json", + "yaml": "bittorrent-1.2.yml", + "html": "bittorrent-1.2.html", + "license": "bittorrent-1.2.LICENSE" + }, + { + "license_key": "bittorrent-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-bittorrent-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bittorrent-eula.json", + "yaml": "bittorrent-eula.yml", + "html": "bittorrent-eula.html", + "license": "bittorrent-eula.LICENSE" + }, + { + "license_key": "bitwarden-1.0", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-bitwarden-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bitwarden-1.0.json", + "yaml": "bitwarden-1.0.yml", + "html": "bitwarden-1.0.html", + "license": "bitwarden-1.0.LICENSE" + }, + { + "license_key": "bitzi-pd", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bitzi-pd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bitzi-pd.json", + "yaml": "bitzi-pd.yml", + "html": "bitzi-pd.html", + "license": "bitzi-pd.LICENSE" + }, + { + "license_key": "blas-2017", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-blas-2017", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "blas-2017.json", + "yaml": "blas-2017.yml", + "html": "blas-2017.html", + "license": "blas-2017.LICENSE" + }, + { + "license_key": "blender-2010", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-blender-2010", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "blender-2010.json", + "yaml": "blender-2010.yml", + "html": "blender-2010.html", + "license": "blender-2010.LICENSE" + }, + { + "license_key": "blessing", + "category": "Public Domain", + "spdx_license_key": "blessing", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "blessing.json", + "yaml": "blessing.yml", + "html": "blessing.html", + "license": "blessing.LICENSE" + }, + { + "license_key": "blitz-artistic", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-blitz-artistic", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "blitz-artistic.json", + "yaml": "blitz-artistic.yml", + "html": "blitz-artistic.html", + "license": "blitz-artistic.LICENSE" + }, + { + "license_key": "bloomberg-blpapi", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-bloomberg-blpapi", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bloomberg-blpapi.json", + "yaml": "bloomberg-blpapi.yml", + "html": "bloomberg-blpapi.html", + "license": "bloomberg-blpapi.LICENSE" + }, + { + "license_key": "blueoak-1.0.0", + "category": "Permissive", + "spdx_license_key": "BlueOak-1.0.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "blueoak-1.0.0.json", + "yaml": "blueoak-1.0.0.yml", + "html": "blueoak-1.0.0.html", + "license": "blueoak-1.0.0.LICENSE" + }, + { + "license_key": "bohl-0.2", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bohl-0.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bohl-0.2.json", + "yaml": "bohl-0.2.yml", + "html": "bohl-0.2.html", + "license": "bohl-0.2.LICENSE" + }, + { + "license_key": "boost-1.0", + "category": "Permissive", + "spdx_license_key": "BSL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "boost-1.0.json", + "yaml": "boost-1.0.yml", + "html": "boost-1.0.html", + "license": "boost-1.0.LICENSE" + }, + { + "license_key": "boost-original", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-boost-original", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "boost-original.json", + "yaml": "boost-original.yml", + "html": "boost-original.html", + "license": "boost-original.LICENSE" + }, + { + "license_key": "bootloader-exception", + "category": "Copyleft Limited", + "spdx_license_key": "Bootloader-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "bootloader-exception.json", + "yaml": "bootloader-exception.yml", + "html": "bootloader-exception.html", + "license": "bootloader-exception.LICENSE" + }, + { + "license_key": "borceux", + "category": "Permissive", + "spdx_license_key": "Borceux", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "borceux.json", + "yaml": "borceux.yml", + "html": "borceux.html", + "license": "borceux.LICENSE" + }, + { + "license_key": "boutell-libgd-2021", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-boutell-libgd-2021", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "boutell-libgd-2021.json", + "yaml": "boutell-libgd-2021.yml", + "html": "boutell-libgd-2021.html", + "license": "boutell-libgd-2021.LICENSE" + }, + { + "license_key": "bpel4ws-spec", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-bpel4ws-spec", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bpel4ws-spec.json", + "yaml": "bpel4ws-spec.yml", + "html": "bpel4ws-spec.html", + "license": "bpel4ws-spec.LICENSE" + }, + { + "license_key": "bpmn-io", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bpmn-io", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bpmn-io.json", + "yaml": "bpmn-io.yml", + "html": "bpmn-io.html", + "license": "bpmn-io.LICENSE" + }, + { + "license_key": "brad-martinez-vb-32", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-brad-martinez-vb-32", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "brad-martinez-vb-32.json", + "yaml": "brad-martinez-vb-32.yml", + "html": "brad-martinez-vb-32.html", + "license": "brad-martinez-vb-32.LICENSE" + }, + { + "license_key": "brankas-open-license-1.0", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-brankas-open-license-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "brankas-open-license-1.0.json", + "yaml": "brankas-open-license-1.0.yml", + "html": "brankas-open-license-1.0.html", + "license": "brankas-open-license-1.0.LICENSE" + }, + { + "license_key": "brent-corkum", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-brent-corkum", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "brent-corkum.json", + "yaml": "brent-corkum.yml", + "html": "brent-corkum.html", + "license": "brent-corkum.LICENSE" + }, + { + "license_key": "brian-clapper", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-brian-clapper", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "brian-clapper.json", + "yaml": "brian-clapper.yml", + "html": "brian-clapper.html", + "license": "brian-clapper.LICENSE" + }, + { + "license_key": "brian-gladman", + "category": "Permissive", + "spdx_license_key": "Brian-Gladman-2-Clause", + "other_spdx_license_keys": [ + "LicenseRef-scancode-brian-gladman" + ], + "is_exception": false, + "is_deprecated": false, + "json": "brian-gladman.json", + "yaml": "brian-gladman.yml", + "html": "brian-gladman.html", + "license": "brian-gladman.LICENSE" + }, + { + "license_key": "brian-gladman-3-clause", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-brian-gladman-3-clause", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "brian-gladman-3-clause.json", + "yaml": "brian-gladman-3-clause.yml", + "html": "brian-gladman-3-clause.html", + "license": "brian-gladman-3-clause.LICENSE" + }, + { + "license_key": "brian-gladman-dual", + "category": "Permissive", + "spdx_license_key": "Brian-Gladman-3-Clause", + "other_spdx_license_keys": [ + "LicenseRef-scancode-brian-gladman-dual" + ], + "is_exception": false, + "is_deprecated": false, + "json": "brian-gladman-dual.json", + "yaml": "brian-gladman-dual.yml", + "html": "brian-gladman-dual.html", + "license": "brian-gladman-dual.LICENSE" + }, + { + "license_key": "broadcom-cfe", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-broadcom-cfe", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "broadcom-cfe.json", + "yaml": "broadcom-cfe.yml", + "html": "broadcom-cfe.html", + "license": "broadcom-cfe.LICENSE" + }, + { + "license_key": "broadcom-commercial", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-broadcom-commercial", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "broadcom-commercial.json", + "yaml": "broadcom-commercial.yml", + "html": "broadcom-commercial.html", + "license": "broadcom-commercial.LICENSE" + }, + { + "license_key": "broadcom-confidential", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-broadcom-confidential", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "broadcom-confidential.json", + "yaml": "broadcom-confidential.yml", + "html": "broadcom-confidential.html", + "license": "broadcom-confidential.LICENSE" + }, + { + "license_key": "broadcom-dual", + "category": "Copyleft", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "broadcom-dual.json", + "yaml": "broadcom-dual.yml", + "html": "broadcom-dual.html", + "license": "broadcom-dual.LICENSE" + }, + { + "license_key": "broadcom-linking-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-bcm-linking-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "broadcom-linking-exception-2.0.json", + "yaml": "broadcom-linking-exception-2.0.yml", + "html": "broadcom-linking-exception-2.0.html", + "license": "broadcom-linking-exception-2.0.LICENSE" + }, + { + "license_key": "broadcom-linking-unmodified", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-broadcom-linking-unmodified", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "broadcom-linking-unmodified.json", + "yaml": "broadcom-linking-unmodified.yml", + "html": "broadcom-linking-unmodified.html", + "license": "broadcom-linking-unmodified.LICENSE" + }, + { + "license_key": "broadcom-linux-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-broadcom-linux-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "broadcom-linux-firmware.json", + "yaml": "broadcom-linux-firmware.yml", + "html": "broadcom-linux-firmware.html", + "license": "broadcom-linux-firmware.LICENSE" + }, + { + "license_key": "broadcom-linux-timer", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-broadcom-linux-timer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "broadcom-linux-timer.json", + "yaml": "broadcom-linux-timer.yml", + "html": "broadcom-linux-timer.html", + "license": "broadcom-linux-timer.LICENSE" + }, + { + "license_key": "broadcom-opus-patent", + "category": "Patent License", + "spdx_license_key": "LicenseRef-scancode-broadcom-opus-patent", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "broadcom-opus-patent.json", + "yaml": "broadcom-opus-patent.yml", + "html": "broadcom-opus-patent.html", + "license": "broadcom-opus-patent.LICENSE" + }, + { + "license_key": "broadcom-proprietary", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-broadcom-proprietary", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "broadcom-proprietary.json", + "yaml": "broadcom-proprietary.yml", + "html": "broadcom-proprietary.html", + "license": "broadcom-proprietary.LICENSE" + }, + { + "license_key": "broadcom-raspberry-pi", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-broadcom-raspberry-pi", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "broadcom-raspberry-pi.json", + "yaml": "broadcom-raspberry-pi.yml", + "html": "broadcom-raspberry-pi.html", + "license": "broadcom-raspberry-pi.LICENSE" + }, + { + "license_key": "broadcom-standard-terms", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-broadcom-standard-terms", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "broadcom-standard-terms.json", + "yaml": "broadcom-standard-terms.yml", + "html": "broadcom-standard-terms.html", + "license": "broadcom-standard-terms.LICENSE" + }, + { + "license_key": "broadcom-unmodified-exception", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-broadcom-unmodified-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "broadcom-unmodified-exception.json", + "yaml": "broadcom-unmodified-exception.yml", + "html": "broadcom-unmodified-exception.html", + "license": "broadcom-unmodified-exception.LICENSE" + }, + { + "license_key": "broadcom-unpublished-source", + "category": "Commercial", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "broadcom-unpublished-source.json", + "yaml": "broadcom-unpublished-source.yml", + "html": "broadcom-unpublished-source.html", + "license": "broadcom-unpublished-source.LICENSE" + }, + { + "license_key": "broadcom-wiced", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-broadcom-wiced", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "broadcom-wiced.json", + "yaml": "broadcom-wiced.yml", + "html": "broadcom-wiced.html", + "license": "broadcom-wiced.LICENSE" + }, + { + "license_key": "broadleaf-fair-use", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-broadleaf-fair-use", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "broadleaf-fair-use.json", + "yaml": "broadleaf-fair-use.yml", + "html": "broadleaf-fair-use.html", + "license": "broadleaf-fair-use.LICENSE" + }, + { + "license_key": "brocade-firmware", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-brocade-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "brocade-firmware.json", + "yaml": "brocade-firmware.yml", + "html": "brocade-firmware.html", + "license": "brocade-firmware.LICENSE" + }, + { + "license_key": "bruno-podetti", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bruno-podetti", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bruno-podetti.json", + "yaml": "bruno-podetti.yml", + "html": "bruno-podetti.html", + "license": "bruno-podetti.LICENSE" + }, + { + "license_key": "bsd-1-clause", + "category": "Permissive", + "spdx_license_key": "BSD-1-Clause", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-1-clause.json", + "yaml": "bsd-1-clause.yml", + "html": "bsd-1-clause.html", + "license": "bsd-1-clause.LICENSE" + }, + { + "license_key": "bsd-1-clause-build", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-1-clause-build", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-1-clause-build.json", + "yaml": "bsd-1-clause-build.yml", + "html": "bsd-1-clause-build.html", + "license": "bsd-1-clause-build.LICENSE" + }, + { + "license_key": "bsd-1988", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-1988", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-1988.json", + "yaml": "bsd-1988.yml", + "html": "bsd-1988.html", + "license": "bsd-1988.LICENSE" + }, + { + "license_key": "bsd-2-clause-freebsd", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "bsd-2-clause-freebsd.json", + "yaml": "bsd-2-clause-freebsd.yml", + "html": "bsd-2-clause-freebsd.html", + "license": "bsd-2-clause-freebsd.LICENSE" + }, + { + "license_key": "bsd-2-clause-netbsd", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "bsd-2-clause-netbsd.json", + "yaml": "bsd-2-clause-netbsd.yml", + "html": "bsd-2-clause-netbsd.html", + "license": "bsd-2-clause-netbsd.LICENSE" + }, + { + "license_key": "bsd-2-clause-plus-advertizing", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-2-clause-plus-advertizing", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-2-clause-plus-advertizing.json", + "yaml": "bsd-2-clause-plus-advertizing.yml", + "html": "bsd-2-clause-plus-advertizing.html", + "license": "bsd-2-clause-plus-advertizing.LICENSE" + }, + { + "license_key": "bsd-2-clause-views", + "category": "Permissive", + "spdx_license_key": "BSD-2-Clause-Views", + "other_spdx_license_keys": [ + "BSD-2-Clause-FreeBSD" + ], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-2-clause-views.json", + "yaml": "bsd-2-clause-views.yml", + "html": "bsd-2-clause-views.html", + "license": "bsd-2-clause-views.LICENSE" + }, + { + "license_key": "bsd-3-clause-devine", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-3-clause-devine", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-3-clause-devine.json", + "yaml": "bsd-3-clause-devine.yml", + "html": "bsd-3-clause-devine.html", + "license": "bsd-3-clause-devine.LICENSE" + }, + { + "license_key": "bsd-3-clause-fda", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-3-clause-fda", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-3-clause-fda.json", + "yaml": "bsd-3-clause-fda.yml", + "html": "bsd-3-clause-fda.html", + "license": "bsd-3-clause-fda.LICENSE" + }, + { + "license_key": "bsd-3-clause-hp", + "category": "Permissive", + "spdx_license_key": "BSD-3-Clause-HP", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-3-clause-hp.json", + "yaml": "bsd-3-clause-hp.yml", + "html": "bsd-3-clause-hp.html", + "license": "bsd-3-clause-hp.LICENSE" + }, + { + "license_key": "bsd-3-clause-jtag", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-3-clause-jtag", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-3-clause-jtag.json", + "yaml": "bsd-3-clause-jtag.yml", + "html": "bsd-3-clause-jtag.html", + "license": "bsd-3-clause-jtag.LICENSE" + }, + { + "license_key": "bsd-3-clause-no-change", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-3-clause-no-change", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-3-clause-no-change.json", + "yaml": "bsd-3-clause-no-change.yml", + "html": "bsd-3-clause-no-change.html", + "license": "bsd-3-clause-no-change.LICENSE" + }, + { + "license_key": "bsd-3-clause-no-military", + "category": "Free Restricted", + "spdx_license_key": "BSD-3-Clause-No-Military-License", + "other_spdx_license_keys": [ + "LicenseRef-scancode-bsd-3-clause-no-military" + ], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-3-clause-no-military.json", + "yaml": "bsd-3-clause-no-military.yml", + "html": "bsd-3-clause-no-military.html", + "license": "bsd-3-clause-no-military.LICENSE" + }, + { + "license_key": "bsd-3-clause-no-nuclear-warranty", + "category": "Free Restricted", + "spdx_license_key": "BSD-3-Clause-No-Nuclear-Warranty", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-3-clause-no-nuclear-warranty.json", + "yaml": "bsd-3-clause-no-nuclear-warranty.yml", + "html": "bsd-3-clause-no-nuclear-warranty.html", + "license": "bsd-3-clause-no-nuclear-warranty.LICENSE" + }, + { + "license_key": "bsd-3-clause-no-trademark", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-3-clause-no-trademark", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-3-clause-no-trademark.json", + "yaml": "bsd-3-clause-no-trademark.yml", + "html": "bsd-3-clause-no-trademark.html", + "license": "bsd-3-clause-no-trademark.LICENSE" + }, + { + "license_key": "bsd-3-clause-open-mpi", + "category": "Permissive", + "spdx_license_key": "BSD-3-Clause-Open-MPI", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-3-clause-open-mpi.json", + "yaml": "bsd-3-clause-open-mpi.yml", + "html": "bsd-3-clause-open-mpi.html", + "license": "bsd-3-clause-open-mpi.LICENSE" + }, + { + "license_key": "bsd-3-clause-sun", + "category": "Permissive", + "spdx_license_key": "BSD-3-Clause-Sun", + "other_spdx_license_keys": [ + "LicenseRef-scancode-bsd-3-clause-sun" + ], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-3-clause-sun.json", + "yaml": "bsd-3-clause-sun.yml", + "html": "bsd-3-clause-sun.html", + "license": "bsd-3-clause-sun.LICENSE" + }, + { + "license_key": "bsd-4-clause-shortened", + "category": "Permissive", + "spdx_license_key": "BSD-4-Clause-Shortened", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-4-clause-shortened.json", + "yaml": "bsd-4-clause-shortened.yml", + "html": "bsd-4-clause-shortened.html", + "license": "bsd-4-clause-shortened.LICENSE" + }, + { + "license_key": "bsd-ack", + "category": "Permissive", + "spdx_license_key": "BSD-3-Clause-Attribution", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-ack.json", + "yaml": "bsd-ack.yml", + "html": "bsd-ack.html", + "license": "bsd-ack.LICENSE" + }, + { + "license_key": "bsd-ack-carrot2", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-ack-carrot2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-ack-carrot2.json", + "yaml": "bsd-ack-carrot2.yml", + "html": "bsd-ack-carrot2.html", + "license": "bsd-ack-carrot2.LICENSE" + }, + { + "license_key": "bsd-advertising-acknowledgement", + "category": "Permissive", + "spdx_license_key": "BSD-Advertising-Acknowledgement", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-advertising-acknowledgement.json", + "yaml": "bsd-advertising-acknowledgement.yml", + "html": "bsd-advertising-acknowledgement.html", + "license": "bsd-advertising-acknowledgement.LICENSE" + }, + { + "license_key": "bsd-artwork", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-artwork", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-artwork.json", + "yaml": "bsd-artwork.yml", + "html": "bsd-artwork.html", + "license": "bsd-artwork.LICENSE" + }, + { + "license_key": "bsd-atmel", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-atmel", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-atmel.json", + "yaml": "bsd-atmel.yml", + "html": "bsd-atmel.html", + "license": "bsd-atmel.LICENSE" + }, + { + "license_key": "bsd-axis", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "bsd-axis.json", + "yaml": "bsd-axis.yml", + "html": "bsd-axis.html", + "license": "bsd-axis.LICENSE" + }, + { + "license_key": "bsd-axis-nomod", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-axis-nomod", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-axis-nomod.json", + "yaml": "bsd-axis-nomod.yml", + "html": "bsd-axis-nomod.html", + "license": "bsd-axis-nomod.LICENSE" + }, + { + "license_key": "bsd-credit", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-credit", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-credit.json", + "yaml": "bsd-credit.yml", + "html": "bsd-credit.html", + "license": "bsd-credit.LICENSE" + }, + { + "license_key": "bsd-dpt", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-dpt", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-dpt.json", + "yaml": "bsd-dpt.yml", + "html": "bsd-dpt.html", + "license": "bsd-dpt.LICENSE" + }, + { + "license_key": "bsd-export", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-export", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-export.json", + "yaml": "bsd-export.yml", + "html": "bsd-export.html", + "license": "bsd-export.LICENSE" + }, + { + "license_key": "bsd-inferno-nettverk", + "category": "Permissive", + "spdx_license_key": "BSD-Inferno-Nettverk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-inferno-nettverk.json", + "yaml": "bsd-inferno-nettverk.yml", + "html": "bsd-inferno-nettverk.html", + "license": "bsd-inferno-nettverk.LICENSE" + }, + { + "license_key": "bsd-innosys", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-innosys", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-innosys.json", + "yaml": "bsd-innosys.yml", + "html": "bsd-innosys.html", + "license": "bsd-innosys.LICENSE" + }, + { + "license_key": "bsd-intel", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "bsd-intel.json", + "yaml": "bsd-intel.yml", + "html": "bsd-intel.html", + "license": "bsd-intel.LICENSE" + }, + { + "license_key": "bsd-mylex", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-mylex", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-mylex.json", + "yaml": "bsd-mylex.yml", + "html": "bsd-mylex.html", + "license": "bsd-mylex.LICENSE" + }, + { + "license_key": "bsd-new", + "category": "Permissive", + "spdx_license_key": "BSD-3-Clause", + "other_spdx_license_keys": [ + "LicenseRef-scancode-libzip" + ], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-new.json", + "yaml": "bsd-new.yml", + "html": "bsd-new.html", + "license": "bsd-new.LICENSE" + }, + { + "license_key": "bsd-new-derivative", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-new-derivative", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-new-derivative.json", + "yaml": "bsd-new-derivative.yml", + "html": "bsd-new-derivative.html", + "license": "bsd-new-derivative.LICENSE" + }, + { + "license_key": "bsd-new-far-manager", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "bsd-new-far-manager.json", + "yaml": "bsd-new-far-manager.yml", + "html": "bsd-new-far-manager.html", + "license": "bsd-new-far-manager.LICENSE" + }, + { + "license_key": "bsd-new-nomod", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-new-nomod", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-new-nomod.json", + "yaml": "bsd-new-nomod.yml", + "html": "bsd-new-nomod.html", + "license": "bsd-new-nomod.LICENSE" + }, + { + "license_key": "bsd-new-tcpdump", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-new-tcpdump", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-new-tcpdump.json", + "yaml": "bsd-new-tcpdump.yml", + "html": "bsd-new-tcpdump.html", + "license": "bsd-new-tcpdump.LICENSE" + }, + { + "license_key": "bsd-no-disclaimer", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-no-disclaimer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-no-disclaimer.json", + "yaml": "bsd-no-disclaimer.yml", + "html": "bsd-no-disclaimer.html", + "license": "bsd-no-disclaimer.LICENSE" + }, + { + "license_key": "bsd-no-disclaimer-unmodified", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-no-disclaimer-unmodified", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-no-disclaimer-unmodified.json", + "yaml": "bsd-no-disclaimer-unmodified.yml", + "html": "bsd-no-disclaimer-unmodified.html", + "license": "bsd-no-disclaimer-unmodified.LICENSE" + }, + { + "license_key": "bsd-no-mod", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-bsd-no-mod", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-no-mod.json", + "yaml": "bsd-no-mod.yml", + "html": "bsd-no-mod.html", + "license": "bsd-no-mod.LICENSE" + }, + { + "license_key": "bsd-original", + "category": "Permissive", + "spdx_license_key": "BSD-4-Clause", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-original.json", + "yaml": "bsd-original.yml", + "html": "bsd-original.html", + "license": "bsd-original.LICENSE" + }, + { + "license_key": "bsd-original-muscle", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-original-muscle", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-original-muscle.json", + "yaml": "bsd-original-muscle.yml", + "html": "bsd-original-muscle.html", + "license": "bsd-original-muscle.LICENSE" + }, + { + "license_key": "bsd-original-uc", + "category": "Permissive", + "spdx_license_key": "BSD-4-Clause-UC", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-original-uc.json", + "yaml": "bsd-original-uc.yml", + "html": "bsd-original-uc.html", + "license": "bsd-original-uc.LICENSE" + }, + { + "license_key": "bsd-original-uc-1986", + "category": "Permissive", + "spdx_license_key": "BSD-4.3RENO", + "other_spdx_license_keys": [ + "LicenseRef-scancode-bsd-original-uc-1986" + ], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-original-uc-1986.json", + "yaml": "bsd-original-uc-1986.yml", + "html": "bsd-original-uc-1986.html", + "license": "bsd-original-uc-1986.LICENSE" + }, + { + "license_key": "bsd-original-uc-1990", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "bsd-original-uc-1990.json", + "yaml": "bsd-original-uc-1990.yml", + "html": "bsd-original-uc-1990.html", + "license": "bsd-original-uc-1990.LICENSE" + }, + { + "license_key": "bsd-original-voices", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-original-voices", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-original-voices.json", + "yaml": "bsd-original-voices.yml", + "html": "bsd-original-voices.html", + "license": "bsd-original-voices.LICENSE" + }, + { + "license_key": "bsd-plus-mod-notice", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-plus-mod-notice", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-plus-mod-notice.json", + "yaml": "bsd-plus-mod-notice.yml", + "html": "bsd-plus-mod-notice.html", + "license": "bsd-plus-mod-notice.LICENSE" + }, + { + "license_key": "bsd-plus-patent", + "category": "Permissive", + "spdx_license_key": "BSD-2-Clause-Patent", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-plus-patent.json", + "yaml": "bsd-plus-patent.yml", + "html": "bsd-plus-patent.html", + "license": "bsd-plus-patent.LICENSE" + }, + { + "license_key": "bsd-protection", + "category": "Copyleft", + "spdx_license_key": "BSD-Protection", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-protection.json", + "yaml": "bsd-protection.yml", + "html": "bsd-protection.html", + "license": "bsd-protection.LICENSE" + }, + { + "license_key": "bsd-simplified", + "category": "Permissive", + "spdx_license_key": "BSD-2-Clause", + "other_spdx_license_keys": [ + "BSD-2-Clause-NetBSD", + "BSD-2" + ], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-simplified.json", + "yaml": "bsd-simplified.yml", + "html": "bsd-simplified.html", + "license": "bsd-simplified.LICENSE" + }, + { + "license_key": "bsd-simplified-darwin", + "category": "Permissive", + "spdx_license_key": "BSD-2-Clause-Darwin", + "other_spdx_license_keys": [ + "LicenseRef-scancode-bsd-simplified-darwin" + ], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-simplified-darwin.json", + "yaml": "bsd-simplified-darwin.yml", + "html": "bsd-simplified-darwin.html", + "license": "bsd-simplified-darwin.LICENSE" + }, + { + "license_key": "bsd-simplified-intel", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-simplified-intel", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-simplified-intel.json", + "yaml": "bsd-simplified-intel.yml", + "html": "bsd-simplified-intel.html", + "license": "bsd-simplified-intel.LICENSE" + }, + { + "license_key": "bsd-simplified-source", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-simplified-source", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-simplified-source.json", + "yaml": "bsd-simplified-source.yml", + "html": "bsd-simplified-source.html", + "license": "bsd-simplified-source.LICENSE" + }, + { + "license_key": "bsd-source-code", + "category": "Permissive", + "spdx_license_key": "BSD-Source-Code", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-source-code.json", + "yaml": "bsd-source-code.yml", + "html": "bsd-source-code.html", + "license": "bsd-source-code.LICENSE" + }, + { + "license_key": "bsd-systemics", + "category": "Permissive", + "spdx_license_key": "BSD-Systemics", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-systemics.json", + "yaml": "bsd-systemics.yml", + "html": "bsd-systemics.html", + "license": "bsd-systemics.LICENSE" + }, + { + "license_key": "bsd-systemics-w3works", + "category": "Permissive", + "spdx_license_key": "BSD-Systemics-W3Works", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-systemics-w3works.json", + "yaml": "bsd-systemics-w3works.yml", + "html": "bsd-systemics-w3works.html", + "license": "bsd-systemics-w3works.LICENSE" + }, + { + "license_key": "bsd-top", + "category": "Permissive", + "spdx_license_key": "BSD-Source-beginning-file", + "other_spdx_license_keys": [ + "LicenseRef-scancode-bsd-top" + ], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-top.json", + "yaml": "bsd-top.yml", + "html": "bsd-top.html", + "license": "bsd-top.LICENSE" + }, + { + "license_key": "bsd-top-gpl-addition", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-top-gpl-addition", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-top-gpl-addition.json", + "yaml": "bsd-top-gpl-addition.yml", + "html": "bsd-top-gpl-addition.html", + "license": "bsd-top-gpl-addition.LICENSE" + }, + { + "license_key": "bsd-unchanged", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-unchanged", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-unchanged.json", + "yaml": "bsd-unchanged.yml", + "html": "bsd-unchanged.html", + "license": "bsd-unchanged.LICENSE" + }, + { + "license_key": "bsd-unmodified", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-unmodified", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-unmodified.json", + "yaml": "bsd-unmodified.yml", + "html": "bsd-unmodified.html", + "license": "bsd-unmodified.LICENSE" + }, + { + "license_key": "bsd-x11", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-x11", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-x11.json", + "yaml": "bsd-x11.yml", + "html": "bsd-x11.html", + "license": "bsd-x11.LICENSE" + }, + { + "license_key": "bsd-zero", + "category": "Permissive", + "spdx_license_key": "0BSD", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-zero.json", + "yaml": "bsd-zero.yml", + "html": "bsd-zero.html", + "license": "bsd-zero.LICENSE" + }, + { + "license_key": "bsl-1.0", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-bsl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsl-1.0.json", + "yaml": "bsl-1.0.yml", + "html": "bsl-1.0.html", + "license": "bsl-1.0.LICENSE" + }, + { + "license_key": "bsl-1.1", + "category": "Source-available", + "spdx_license_key": "BUSL-1.1", + "other_spdx_license_keys": [ + "LicenseRef-scancode-bsl-1.1" + ], + "is_exception": false, + "is_deprecated": false, + "json": "bsl-1.1.json", + "yaml": "bsl-1.1.yml", + "html": "bsl-1.1.html", + "license": "bsl-1.1.LICENSE" + }, + { + "license_key": "bsla", + "category": "Permissive", + "spdx_license_key": "BSD-4.3TAHOE", + "other_spdx_license_keys": [ + "LicenseRef-scancode-bsla" + ], + "is_exception": false, + "is_deprecated": false, + "json": "bsla.json", + "yaml": "bsla.yml", + "html": "bsla.html", + "license": "bsla.LICENSE" + }, + { + "license_key": "bsla-no-advert", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsla-no-advert", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsla-no-advert.json", + "yaml": "bsla-no-advert.yml", + "html": "bsla-no-advert.html", + "license": "bsla-no-advert.LICENSE" + }, + { + "license_key": "bugsense-sdk", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-bugsense-sdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bugsense-sdk.json", + "yaml": "bugsense-sdk.yml", + "html": "bugsense-sdk.html", + "license": "bugsense-sdk.LICENSE" + }, + { + "license_key": "bytemark", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bytemark", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bytemark.json", + "yaml": "bytemark.yml", + "html": "bytemark.html", + "license": "bytemark.LICENSE" + }, + { + "license_key": "bzip2-libbzip-1.0.5", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "bzip2-libbzip-1.0.5.json", + "yaml": "bzip2-libbzip-1.0.5.yml", + "html": "bzip2-libbzip-1.0.5.html", + "license": "bzip2-libbzip-1.0.5.LICENSE" + }, + { + "license_key": "bzip2-libbzip-2010", + "category": "Permissive", + "spdx_license_key": "bzip2-1.0.6", + "other_spdx_license_keys": [ + "bzip2-1.0.5" + ], + "is_exception": false, + "is_deprecated": false, + "json": "bzip2-libbzip-2010.json", + "yaml": "bzip2-libbzip-2010.yml", + "html": "bzip2-libbzip-2010.html", + "license": "bzip2-libbzip-2010.LICENSE" + }, + { + "license_key": "c-fsl-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-c-fsl-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "c-fsl-1.1.json", + "yaml": "c-fsl-1.1.yml", + "html": "c-fsl-1.1.html", + "license": "c-fsl-1.1.LICENSE" + }, + { + "license_key": "c-uda-1.0", + "category": "Free Restricted", + "spdx_license_key": "C-UDA-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "c-uda-1.0.json", + "yaml": "c-uda-1.0.yml", + "html": "c-uda-1.0.html", + "license": "c-uda-1.0.LICENSE" + }, + { + "license_key": "ca-tosl-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "CATOSL-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ca-tosl-1.1.json", + "yaml": "ca-tosl-1.1.yml", + "html": "ca-tosl-1.1.html", + "license": "ca-tosl-1.1.LICENSE" + }, + { + "license_key": "cadence-linux-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-cadence-linux-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cadence-linux-firmware.json", + "yaml": "cadence-linux-firmware.yml", + "html": "cadence-linux-firmware.html", + "license": "cadence-linux-firmware.LICENSE" + }, + { + "license_key": "cal-1.0", + "category": "Copyleft", + "spdx_license_key": "CAL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cal-1.0.json", + "yaml": "cal-1.0.yml", + "html": "cal-1.0.html", + "license": "cal-1.0.LICENSE" + }, + { + "license_key": "cal-1.0-combined-work-exception", + "category": "Copyleft Limited", + "spdx_license_key": "CAL-1.0-Combined-Work-Exception", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cal-1.0-combined-work-exception.json", + "yaml": "cal-1.0-combined-work-exception.yml", + "html": "cal-1.0-combined-work-exception.html", + "license": "cal-1.0-combined-work-exception.LICENSE" + }, + { + "license_key": "caldera", + "category": "Free Restricted", + "spdx_license_key": "Caldera", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "caldera.json", + "yaml": "caldera.yml", + "html": "caldera.html", + "license": "caldera.LICENSE" + }, + { + "license_key": "caldera-no-preamble", + "category": "Permissive", + "spdx_license_key": "Caldera-no-preamble", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "caldera-no-preamble.json", + "yaml": "caldera-no-preamble.yml", + "html": "caldera-no-preamble.html", + "license": "caldera-no-preamble.LICENSE" + }, + { + "license_key": "can-ogl-2.0-en", + "category": "Permissive", + "spdx_license_key": "OGL-Canada-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "can-ogl-2.0-en.json", + "yaml": "can-ogl-2.0-en.yml", + "html": "can-ogl-2.0-en.html", + "license": "can-ogl-2.0-en.LICENSE" + }, + { + "license_key": "can-ogl-alberta-2.1", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-can-ogl-alberta-2.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "can-ogl-alberta-2.1.json", + "yaml": "can-ogl-alberta-2.1.yml", + "html": "can-ogl-alberta-2.1.html", + "license": "can-ogl-alberta-2.1.LICENSE" + }, + { + "license_key": "can-ogl-british-columbia-2.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-can-ogl-british-columbia-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "can-ogl-british-columbia-2.0.json", + "yaml": "can-ogl-british-columbia-2.0.yml", + "html": "can-ogl-british-columbia-2.0.html", + "license": "can-ogl-british-columbia-2.0.LICENSE" + }, + { + "license_key": "can-ogl-nova-scotia-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-can-ogl-nova-scotia-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "can-ogl-nova-scotia-1.0.json", + "yaml": "can-ogl-nova-scotia-1.0.yml", + "html": "can-ogl-nova-scotia-1.0.html", + "license": "can-ogl-nova-scotia-1.0.LICENSE" + }, + { + "license_key": "can-ogl-ontario-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-can-ogl-ontario-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "can-ogl-ontario-1.0.json", + "yaml": "can-ogl-ontario-1.0.yml", + "html": "can-ogl-ontario-1.0.html", + "license": "can-ogl-ontario-1.0.LICENSE" + }, + { + "license_key": "can-ogl-toronto-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-can-ogl-toronto-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "can-ogl-toronto-1.0.json", + "yaml": "can-ogl-toronto-1.0.yml", + "html": "can-ogl-toronto-1.0.html", + "license": "can-ogl-toronto-1.0.LICENSE" + }, + { + "license_key": "canonical-ha-cla-any-e-v1.2", + "category": "CLA", + "spdx_license_key": "LicenseRef-scancode-canonical-ha-cla-any-e-v1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "canonical-ha-cla-any-e-v1.2.json", + "yaml": "canonical-ha-cla-any-e-v1.2.yml", + "html": "canonical-ha-cla-any-e-v1.2.html", + "license": "canonical-ha-cla-any-e-v1.2.LICENSE" + }, + { + "license_key": "canonical-ha-cla-any-i-v1.2", + "category": "CLA", + "spdx_license_key": "LicenseRef-scancode-canonical-ha-cla-any-i-v1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "canonical-ha-cla-any-i-v1.2.json", + "yaml": "canonical-ha-cla-any-i-v1.2.yml", + "html": "canonical-ha-cla-any-i-v1.2.html", + "license": "canonical-ha-cla-any-i-v1.2.LICENSE" + }, + { + "license_key": "capec-tou", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-capec-tou", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "capec-tou.json", + "yaml": "capec-tou.yml", + "html": "capec-tou.html", + "license": "capec-tou.LICENSE" + }, + { + "license_key": "careware", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-careware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "careware.json", + "yaml": "careware.yml", + "html": "careware.html", + "license": "careware.LICENSE" + }, + { + "license_key": "carnegie-mellon", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-carnegie-mellon", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "carnegie-mellon.json", + "yaml": "carnegie-mellon.yml", + "html": "carnegie-mellon.html", + "license": "carnegie-mellon.LICENSE" + }, + { + "license_key": "carnegie-mellon-contributors", + "category": "Permissive", + "spdx_license_key": "CMU-Mach", + "other_spdx_license_keys": [ + "LicenseRef-scancode-carnegie-mellon-contributors" + ], + "is_exception": false, + "is_deprecated": false, + "json": "carnegie-mellon-contributors.json", + "yaml": "carnegie-mellon-contributors.yml", + "html": "carnegie-mellon-contributors.html", + "license": "carnegie-mellon-contributors.LICENSE" + }, + { + "license_key": "catharon-osl", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-catharon-osl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "catharon-osl.json", + "yaml": "catharon-osl.yml", + "html": "catharon-osl.html", + "license": "catharon-osl.LICENSE" + }, + { + "license_key": "cavium-linux-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-cavium-linux-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cavium-linux-firmware.json", + "yaml": "cavium-linux-firmware.yml", + "html": "cavium-linux-firmware.html", + "license": "cavium-linux-firmware.LICENSE" + }, + { + "license_key": "cavium-malloc", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-cavium-malloc", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cavium-malloc.json", + "yaml": "cavium-malloc.yml", + "html": "cavium-malloc.html", + "license": "cavium-malloc.LICENSE" + }, + { + "license_key": "cavium-targeted-hardware", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-cavium-targeted-hardware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cavium-targeted-hardware.json", + "yaml": "cavium-targeted-hardware.yml", + "html": "cavium-targeted-hardware.html", + "license": "cavium-targeted-hardware.LICENSE" + }, + { + "license_key": "cc-by-1.0", + "category": "Permissive", + "spdx_license_key": "CC-BY-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-1.0.json", + "yaml": "cc-by-1.0.yml", + "html": "cc-by-1.0.html", + "license": "cc-by-1.0.LICENSE" + }, + { + "license_key": "cc-by-2.0", + "category": "Permissive", + "spdx_license_key": "CC-BY-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-2.0.json", + "yaml": "cc-by-2.0.yml", + "html": "cc-by-2.0.html", + "license": "cc-by-2.0.LICENSE" + }, + { + "license_key": "cc-by-2.0-uk", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-cc-by-2.0-uk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-2.0-uk.json", + "yaml": "cc-by-2.0-uk.yml", + "html": "cc-by-2.0-uk.html", + "license": "cc-by-2.0-uk.LICENSE" + }, + { + "license_key": "cc-by-2.5", + "category": "Permissive", + "spdx_license_key": "CC-BY-2.5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-2.5.json", + "yaml": "cc-by-2.5.yml", + "html": "cc-by-2.5.html", + "license": "cc-by-2.5.LICENSE" + }, + { + "license_key": "cc-by-2.5-au", + "category": "Permissive", + "spdx_license_key": "CC-BY-2.5-AU", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-2.5-au.json", + "yaml": "cc-by-2.5-au.yml", + "html": "cc-by-2.5-au.html", + "license": "cc-by-2.5-au.LICENSE" + }, + { + "license_key": "cc-by-3.0", + "category": "Permissive", + "spdx_license_key": "CC-BY-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-3.0.json", + "yaml": "cc-by-3.0.yml", + "html": "cc-by-3.0.html", + "license": "cc-by-3.0.LICENSE" + }, + { + "license_key": "cc-by-3.0-at", + "category": "Permissive", + "spdx_license_key": "CC-BY-3.0-AT", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-3.0-at.json", + "yaml": "cc-by-3.0-at.yml", + "html": "cc-by-3.0-at.html", + "license": "cc-by-3.0-at.LICENSE" + }, + { + "license_key": "cc-by-3.0-au", + "category": "Permissive", + "spdx_license_key": "CC-BY-3.0-AU", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-3.0-au.json", + "yaml": "cc-by-3.0-au.yml", + "html": "cc-by-3.0-au.html", + "license": "cc-by-3.0-au.LICENSE" + }, + { + "license_key": "cc-by-3.0-de", + "category": "Permissive", + "spdx_license_key": "CC-BY-3.0-DE", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-3.0-de.json", + "yaml": "cc-by-3.0-de.yml", + "html": "cc-by-3.0-de.html", + "license": "cc-by-3.0-de.LICENSE" + }, + { + "license_key": "cc-by-3.0-igo", + "category": "Permissive", + "spdx_license_key": "CC-BY-3.0-IGO", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-3.0-igo.json", + "yaml": "cc-by-3.0-igo.yml", + "html": "cc-by-3.0-igo.html", + "license": "cc-by-3.0-igo.LICENSE" + }, + { + "license_key": "cc-by-3.0-nl", + "category": "Permissive", + "spdx_license_key": "CC-BY-3.0-NL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-3.0-nl.json", + "yaml": "cc-by-3.0-nl.yml", + "html": "cc-by-3.0-nl.html", + "license": "cc-by-3.0-nl.LICENSE" + }, + { + "license_key": "cc-by-3.0-us", + "category": "Permissive", + "spdx_license_key": "CC-BY-3.0-US", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-3.0-us.json", + "yaml": "cc-by-3.0-us.yml", + "html": "cc-by-3.0-us.html", + "license": "cc-by-3.0-us.LICENSE" + }, + { + "license_key": "cc-by-4.0", + "category": "Permissive", + "spdx_license_key": "CC-BY-4.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-4.0.json", + "yaml": "cc-by-4.0.yml", + "html": "cc-by-4.0.html", + "license": "cc-by-4.0.LICENSE" + }, + { + "license_key": "cc-by-nc-1.0", + "category": "Source-available", + "spdx_license_key": "CC-BY-NC-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-1.0.json", + "yaml": "cc-by-nc-1.0.yml", + "html": "cc-by-nc-1.0.html", + "license": "cc-by-nc-1.0.LICENSE" + }, + { + "license_key": "cc-by-nc-2.0", + "category": "Source-available", + "spdx_license_key": "CC-BY-NC-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-2.0.json", + "yaml": "cc-by-nc-2.0.yml", + "html": "cc-by-nc-2.0.html", + "license": "cc-by-nc-2.0.LICENSE" + }, + { + "license_key": "cc-by-nc-2.5", + "category": "Source-available", + "spdx_license_key": "CC-BY-NC-2.5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-2.5.json", + "yaml": "cc-by-nc-2.5.yml", + "html": "cc-by-nc-2.5.html", + "license": "cc-by-nc-2.5.LICENSE" + }, + { + "license_key": "cc-by-nc-3.0", + "category": "Source-available", + "spdx_license_key": "CC-BY-NC-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-3.0.json", + "yaml": "cc-by-nc-3.0.yml", + "html": "cc-by-nc-3.0.html", + "license": "cc-by-nc-3.0.LICENSE" + }, + { + "license_key": "cc-by-nc-3.0-de", + "category": "Source-available", + "spdx_license_key": "CC-BY-NC-3.0-DE", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-3.0-de.json", + "yaml": "cc-by-nc-3.0-de.yml", + "html": "cc-by-nc-3.0-de.html", + "license": "cc-by-nc-3.0-de.LICENSE" + }, + { + "license_key": "cc-by-nc-4.0", + "category": "Source-available", + "spdx_license_key": "CC-BY-NC-4.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-4.0.json", + "yaml": "cc-by-nc-4.0.yml", + "html": "cc-by-nc-4.0.html", + "license": "cc-by-nc-4.0.LICENSE" + }, + { + "license_key": "cc-by-nc-nd-1.0", + "category": "Source-available", + "spdx_license_key": "CC-BY-NC-ND-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-nd-1.0.json", + "yaml": "cc-by-nc-nd-1.0.yml", + "html": "cc-by-nc-nd-1.0.html", + "license": "cc-by-nc-nd-1.0.LICENSE" + }, + { + "license_key": "cc-by-nc-nd-2.0", + "category": "Source-available", + "spdx_license_key": "CC-BY-NC-ND-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-nd-2.0.json", + "yaml": "cc-by-nc-nd-2.0.yml", + "html": "cc-by-nc-nd-2.0.html", + "license": "cc-by-nc-nd-2.0.LICENSE" + }, + { + "license_key": "cc-by-nc-nd-2.0-at", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-cc-by-nc-nd-2.0-at", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-nd-2.0-at.json", + "yaml": "cc-by-nc-nd-2.0-at.yml", + "html": "cc-by-nc-nd-2.0-at.html", + "license": "cc-by-nc-nd-2.0-at.LICENSE" + }, + { + "license_key": "cc-by-nc-nd-2.0-au", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-cc-by-nc-nd-2.0-au", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-nd-2.0-au.json", + "yaml": "cc-by-nc-nd-2.0-au.yml", + "html": "cc-by-nc-nd-2.0-au.html", + "license": "cc-by-nc-nd-2.0-au.LICENSE" + }, + { + "license_key": "cc-by-nc-nd-2.5", + "category": "Source-available", + "spdx_license_key": "CC-BY-NC-ND-2.5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-nd-2.5.json", + "yaml": "cc-by-nc-nd-2.5.yml", + "html": "cc-by-nc-nd-2.5.html", + "license": "cc-by-nc-nd-2.5.LICENSE" + }, + { + "license_key": "cc-by-nc-nd-3.0", + "category": "Source-available", + "spdx_license_key": "CC-BY-NC-ND-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-nd-3.0.json", + "yaml": "cc-by-nc-nd-3.0.yml", + "html": "cc-by-nc-nd-3.0.html", + "license": "cc-by-nc-nd-3.0.LICENSE" + }, + { + "license_key": "cc-by-nc-nd-3.0-de", + "category": "Source-available", + "spdx_license_key": "CC-BY-NC-ND-3.0-DE", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-nd-3.0-de.json", + "yaml": "cc-by-nc-nd-3.0-de.yml", + "html": "cc-by-nc-nd-3.0-de.html", + "license": "cc-by-nc-nd-3.0-de.LICENSE" + }, + { + "license_key": "cc-by-nc-nd-3.0-igo", + "category": "Source-available", + "spdx_license_key": "CC-BY-NC-ND-3.0-IGO", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-nd-3.0-igo.json", + "yaml": "cc-by-nc-nd-3.0-igo.yml", + "html": "cc-by-nc-nd-3.0-igo.html", + "license": "cc-by-nc-nd-3.0-igo.LICENSE" + }, + { + "license_key": "cc-by-nc-nd-4.0", + "category": "Source-available", + "spdx_license_key": "CC-BY-NC-ND-4.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-nd-4.0.json", + "yaml": "cc-by-nc-nd-4.0.yml", + "html": "cc-by-nc-nd-4.0.html", + "license": "cc-by-nc-nd-4.0.LICENSE" + }, + { + "license_key": "cc-by-nc-sa-1.0", + "category": "Source-available", + "spdx_license_key": "CC-BY-NC-SA-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-sa-1.0.json", + "yaml": "cc-by-nc-sa-1.0.yml", + "html": "cc-by-nc-sa-1.0.html", + "license": "cc-by-nc-sa-1.0.LICENSE" + }, + { + "license_key": "cc-by-nc-sa-2.0", + "category": "Source-available", + "spdx_license_key": "CC-BY-NC-SA-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-sa-2.0.json", + "yaml": "cc-by-nc-sa-2.0.yml", + "html": "cc-by-nc-sa-2.0.html", + "license": "cc-by-nc-sa-2.0.LICENSE" + }, + { + "license_key": "cc-by-nc-sa-2.0-de", + "category": "Source-available", + "spdx_license_key": "CC-BY-NC-SA-2.0-DE", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-sa-2.0-de.json", + "yaml": "cc-by-nc-sa-2.0-de.yml", + "html": "cc-by-nc-sa-2.0-de.html", + "license": "cc-by-nc-sa-2.0-de.LICENSE" + }, + { + "license_key": "cc-by-nc-sa-2.0-fr", + "category": "Source-available", + "spdx_license_key": "CC-BY-NC-SA-2.0-FR", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-sa-2.0-fr.json", + "yaml": "cc-by-nc-sa-2.0-fr.yml", + "html": "cc-by-nc-sa-2.0-fr.html", + "license": "cc-by-nc-sa-2.0-fr.LICENSE" + }, + { + "license_key": "cc-by-nc-sa-2.0-uk", + "category": "Source-available", + "spdx_license_key": "CC-BY-NC-SA-2.0-UK", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-sa-2.0-uk.json", + "yaml": "cc-by-nc-sa-2.0-uk.yml", + "html": "cc-by-nc-sa-2.0-uk.html", + "license": "cc-by-nc-sa-2.0-uk.LICENSE" + }, + { + "license_key": "cc-by-nc-sa-2.5", + "category": "Source-available", + "spdx_license_key": "CC-BY-NC-SA-2.5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-sa-2.5.json", + "yaml": "cc-by-nc-sa-2.5.yml", + "html": "cc-by-nc-sa-2.5.html", + "license": "cc-by-nc-sa-2.5.LICENSE" + }, + { + "license_key": "cc-by-nc-sa-3.0", + "category": "Source-available", + "spdx_license_key": "CC-BY-NC-SA-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-sa-3.0.json", + "yaml": "cc-by-nc-sa-3.0.yml", + "html": "cc-by-nc-sa-3.0.html", + "license": "cc-by-nc-sa-3.0.LICENSE" + }, + { + "license_key": "cc-by-nc-sa-3.0-de", + "category": "Source-available", + "spdx_license_key": "CC-BY-NC-SA-3.0-DE", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-sa-3.0-de.json", + "yaml": "cc-by-nc-sa-3.0-de.yml", + "html": "cc-by-nc-sa-3.0-de.html", + "license": "cc-by-nc-sa-3.0-de.LICENSE" + }, + { + "license_key": "cc-by-nc-sa-3.0-igo", + "category": "Source-available", + "spdx_license_key": "CC-BY-NC-SA-3.0-IGO", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-sa-3.0-igo.json", + "yaml": "cc-by-nc-sa-3.0-igo.yml", + "html": "cc-by-nc-sa-3.0-igo.html", + "license": "cc-by-nc-sa-3.0-igo.LICENSE" + }, + { + "license_key": "cc-by-nc-sa-3.0-us", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-cc-by-nc-sa-3.0-us", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-sa-3.0-us.json", + "yaml": "cc-by-nc-sa-3.0-us.yml", + "html": "cc-by-nc-sa-3.0-us.html", + "license": "cc-by-nc-sa-3.0-us.LICENSE" + }, + { + "license_key": "cc-by-nc-sa-4.0", + "category": "Source-available", + "spdx_license_key": "CC-BY-NC-SA-4.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-sa-4.0.json", + "yaml": "cc-by-nc-sa-4.0.yml", + "html": "cc-by-nc-sa-4.0.html", + "license": "cc-by-nc-sa-4.0.LICENSE" + }, + { + "license_key": "cc-by-nd-1.0", + "category": "Source-available", + "spdx_license_key": "CC-BY-ND-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nd-1.0.json", + "yaml": "cc-by-nd-1.0.yml", + "html": "cc-by-nd-1.0.html", + "license": "cc-by-nd-1.0.LICENSE" + }, + { + "license_key": "cc-by-nd-2.0", + "category": "Source-available", + "spdx_license_key": "CC-BY-ND-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nd-2.0.json", + "yaml": "cc-by-nd-2.0.yml", + "html": "cc-by-nd-2.0.html", + "license": "cc-by-nd-2.0.LICENSE" + }, + { + "license_key": "cc-by-nd-2.5", + "category": "Source-available", + "spdx_license_key": "CC-BY-ND-2.5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nd-2.5.json", + "yaml": "cc-by-nd-2.5.yml", + "html": "cc-by-nd-2.5.html", + "license": "cc-by-nd-2.5.LICENSE" + }, + { + "license_key": "cc-by-nd-3.0", + "category": "Source-available", + "spdx_license_key": "CC-BY-ND-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nd-3.0.json", + "yaml": "cc-by-nd-3.0.yml", + "html": "cc-by-nd-3.0.html", + "license": "cc-by-nd-3.0.LICENSE" + }, + { + "license_key": "cc-by-nd-3.0-de", + "category": "Source-available", + "spdx_license_key": "CC-BY-ND-3.0-DE", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nd-3.0-de.json", + "yaml": "cc-by-nd-3.0-de.yml", + "html": "cc-by-nd-3.0-de.html", + "license": "cc-by-nd-3.0-de.LICENSE" + }, + { + "license_key": "cc-by-nd-4.0", + "category": "Source-available", + "spdx_license_key": "CC-BY-ND-4.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nd-4.0.json", + "yaml": "cc-by-nd-4.0.yml", + "html": "cc-by-nd-4.0.html", + "license": "cc-by-nd-4.0.LICENSE" + }, + { + "license_key": "cc-by-sa-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "CC-BY-SA-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-sa-1.0.json", + "yaml": "cc-by-sa-1.0.yml", + "html": "cc-by-sa-1.0.html", + "license": "cc-by-sa-1.0.LICENSE" + }, + { + "license_key": "cc-by-sa-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "CC-BY-SA-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-sa-2.0.json", + "yaml": "cc-by-sa-2.0.yml", + "html": "cc-by-sa-2.0.html", + "license": "cc-by-sa-2.0.LICENSE" + }, + { + "license_key": "cc-by-sa-2.0-uk", + "category": "Copyleft Limited", + "spdx_license_key": "CC-BY-SA-2.0-UK", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-sa-2.0-uk.json", + "yaml": "cc-by-sa-2.0-uk.yml", + "html": "cc-by-sa-2.0-uk.html", + "license": "cc-by-sa-2.0-uk.LICENSE" + }, + { + "license_key": "cc-by-sa-2.1-jp", + "category": "Copyleft Limited", + "spdx_license_key": "CC-BY-SA-2.1-JP", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-sa-2.1-jp.json", + "yaml": "cc-by-sa-2.1-jp.yml", + "html": "cc-by-sa-2.1-jp.html", + "license": "cc-by-sa-2.1-jp.LICENSE" + }, + { + "license_key": "cc-by-sa-2.5", + "category": "Copyleft Limited", + "spdx_license_key": "CC-BY-SA-2.5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-sa-2.5.json", + "yaml": "cc-by-sa-2.5.yml", + "html": "cc-by-sa-2.5.html", + "license": "cc-by-sa-2.5.LICENSE" + }, + { + "license_key": "cc-by-sa-3.0", + "category": "Copyleft Limited", + "spdx_license_key": "CC-BY-SA-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-sa-3.0.json", + "yaml": "cc-by-sa-3.0.yml", + "html": "cc-by-sa-3.0.html", + "license": "cc-by-sa-3.0.LICENSE" + }, + { + "license_key": "cc-by-sa-3.0-at", + "category": "Copyleft Limited", + "spdx_license_key": "CC-BY-SA-3.0-AT", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-sa-3.0-at.json", + "yaml": "cc-by-sa-3.0-at.yml", + "html": "cc-by-sa-3.0-at.html", + "license": "cc-by-sa-3.0-at.LICENSE" + }, + { + "license_key": "cc-by-sa-3.0-de", + "category": "Copyleft Limited", + "spdx_license_key": "CC-BY-SA-3.0-DE", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-sa-3.0-de.json", + "yaml": "cc-by-sa-3.0-de.yml", + "html": "cc-by-sa-3.0-de.html", + "license": "cc-by-sa-3.0-de.LICENSE" + }, + { + "license_key": "cc-by-sa-3.0-igo", + "category": "Copyleft Limited", + "spdx_license_key": "CC-BY-SA-3.0-IGO", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-sa-3.0-igo.json", + "yaml": "cc-by-sa-3.0-igo.yml", + "html": "cc-by-sa-3.0-igo.html", + "license": "cc-by-sa-3.0-igo.LICENSE" + }, + { + "license_key": "cc-by-sa-4.0", + "category": "Copyleft Limited", + "spdx_license_key": "CC-BY-SA-4.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-sa-4.0.json", + "yaml": "cc-by-sa-4.0.yml", + "html": "cc-by-sa-4.0.html", + "license": "cc-by-sa-4.0.LICENSE" + }, + { + "license_key": "cc-devnations-2.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-cc-devnations-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-devnations-2.0.json", + "yaml": "cc-devnations-2.0.yml", + "html": "cc-devnations-2.0.html", + "license": "cc-devnations-2.0.LICENSE" + }, + { + "license_key": "cc-gpl-2.0-pt", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-cc-gpl-2.0-pt", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-gpl-2.0-pt.json", + "yaml": "cc-gpl-2.0-pt.yml", + "html": "cc-gpl-2.0-pt.html", + "license": "cc-gpl-2.0-pt.LICENSE" + }, + { + "license_key": "cc-lgpl-2.1-pt", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-cc-lgpl-2.1-pt", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-lgpl-2.1-pt.json", + "yaml": "cc-lgpl-2.1-pt.yml", + "html": "cc-lgpl-2.1-pt.html", + "license": "cc-lgpl-2.1-pt.LICENSE" + }, + { + "license_key": "cc-nc-1.0", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-cc-nc-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-nc-1.0.json", + "yaml": "cc-nc-1.0.yml", + "html": "cc-nc-1.0.html", + "license": "cc-nc-1.0.LICENSE" + }, + { + "license_key": "cc-nc-sampling-plus-1.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-cc-nc-sampling-plus-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-nc-sampling-plus-1.0.json", + "yaml": "cc-nc-sampling-plus-1.0.yml", + "html": "cc-nc-sampling-plus-1.0.html", + "license": "cc-nc-sampling-plus-1.0.LICENSE" + }, + { + "license_key": "cc-nd-1.0", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-cc-nd-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-nd-1.0.json", + "yaml": "cc-nd-1.0.yml", + "html": "cc-nd-1.0.html", + "license": "cc-nd-1.0.LICENSE" + }, + { + "license_key": "cc-pd", + "category": "Public Domain", + "spdx_license_key": "CC-PDDC", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-pd.json", + "yaml": "cc-pd.yml", + "html": "cc-pd.html", + "license": "cc-pd.LICENSE" + }, + { + "license_key": "cc-pdm-1.0", + "category": "Public Domain", + "spdx_license_key": "LicenseRef-scancode-cc-pdm-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-pdm-1.0.json", + "yaml": "cc-pdm-1.0.yml", + "html": "cc-pdm-1.0.html", + "license": "cc-pdm-1.0.LICENSE" + }, + { + "license_key": "cc-sa-1.0", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-cc-sa-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-sa-1.0.json", + "yaml": "cc-sa-1.0.yml", + "html": "cc-sa-1.0.html", + "license": "cc-sa-1.0.LICENSE" + }, + { + "license_key": "cc-sampling-1.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-cc-sampling-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-sampling-1.0.json", + "yaml": "cc-sampling-1.0.yml", + "html": "cc-sampling-1.0.html", + "license": "cc-sampling-1.0.LICENSE" + }, + { + "license_key": "cc-sampling-plus-1.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-cc-sampling-plus-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-sampling-plus-1.0.json", + "yaml": "cc-sampling-plus-1.0.yml", + "html": "cc-sampling-plus-1.0.html", + "license": "cc-sampling-plus-1.0.LICENSE" + }, + { + "license_key": "cc0-1.0", + "category": "Public Domain", + "spdx_license_key": "CC0-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc0-1.0.json", + "yaml": "cc0-1.0.yml", + "html": "cc0-1.0.html", + "license": "cc0-1.0.LICENSE" + }, + { + "license_key": "cclrc", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-cclrc", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cclrc.json", + "yaml": "cclrc.yml", + "html": "cclrc.html", + "license": "cclrc.LICENSE" + }, + { + "license_key": "ccrc-1.0", + "category": "Copyleft", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "ccrc-1.0.json", + "yaml": "ccrc-1.0.yml", + "html": "ccrc-1.0.html", + "license": "ccrc-1.0.LICENSE" + }, + { + "license_key": "cddl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "CDDL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cddl-1.0.json", + "yaml": "cddl-1.0.yml", + "html": "cddl-1.0.html", + "license": "cddl-1.0.LICENSE" + }, + { + "license_key": "cddl-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "CDDL-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cddl-1.1.json", + "yaml": "cddl-1.1.yml", + "html": "cddl-1.1.html", + "license": "cddl-1.1.LICENSE" + }, + { + "license_key": "cdla-permissive-1.0", + "category": "Permissive", + "spdx_license_key": "CDLA-Permissive-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cdla-permissive-1.0.json", + "yaml": "cdla-permissive-1.0.yml", + "html": "cdla-permissive-1.0.html", + "license": "cdla-permissive-1.0.LICENSE" + }, + { + "license_key": "cdla-permissive-2.0", + "category": "Permissive", + "spdx_license_key": "CDLA-Permissive-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cdla-permissive-2.0.json", + "yaml": "cdla-permissive-2.0.yml", + "html": "cdla-permissive-2.0.html", + "license": "cdla-permissive-2.0.LICENSE" + }, + { + "license_key": "cdla-sharing-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "CDLA-Sharing-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cdla-sharing-1.0.json", + "yaml": "cdla-sharing-1.0.yml", + "html": "cdla-sharing-1.0.html", + "license": "cdla-sharing-1.0.LICENSE" + }, + { + "license_key": "cecill-1.0", + "category": "Copyleft", + "spdx_license_key": "CECILL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cecill-1.0.json", + "yaml": "cecill-1.0.yml", + "html": "cecill-1.0.html", + "license": "cecill-1.0.LICENSE" + }, + { + "license_key": "cecill-1.0-en", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-cecill-1.0-en", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cecill-1.0-en.json", + "yaml": "cecill-1.0-en.yml", + "html": "cecill-1.0-en.html", + "license": "cecill-1.0-en.LICENSE" + }, + { + "license_key": "cecill-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "CECILL-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cecill-1.1.json", + "yaml": "cecill-1.1.yml", + "html": "cecill-1.1.html", + "license": "cecill-1.1.LICENSE" + }, + { + "license_key": "cecill-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "CECILL-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cecill-2.0.json", + "yaml": "cecill-2.0.yml", + "html": "cecill-2.0.html", + "license": "cecill-2.0.LICENSE" + }, + { + "license_key": "cecill-2.0-fr", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-cecill-2.0-fr", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cecill-2.0-fr.json", + "yaml": "cecill-2.0-fr.yml", + "html": "cecill-2.0-fr.html", + "license": "cecill-2.0-fr.LICENSE" + }, + { + "license_key": "cecill-2.1", + "category": "Copyleft Limited", + "spdx_license_key": "CECILL-2.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cecill-2.1.json", + "yaml": "cecill-2.1.yml", + "html": "cecill-2.1.html", + "license": "cecill-2.1.LICENSE" + }, + { + "license_key": "cecill-2.1-fr", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-cecill-2.1-fr", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cecill-2.1-fr.json", + "yaml": "cecill-2.1-fr.yml", + "html": "cecill-2.1-fr.html", + "license": "cecill-2.1-fr.LICENSE" + }, + { + "license_key": "cecill-b", + "category": "Permissive", + "spdx_license_key": "CECILL-B", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cecill-b.json", + "yaml": "cecill-b.yml", + "html": "cecill-b.html", + "license": "cecill-b.LICENSE" + }, + { + "license_key": "cecill-b-en", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-cecill-b-en", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cecill-b-en.json", + "yaml": "cecill-b-en.yml", + "html": "cecill-b-en.html", + "license": "cecill-b-en.LICENSE" + }, + { + "license_key": "cecill-c", + "category": "Copyleft", + "spdx_license_key": "CECILL-C", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cecill-c.json", + "yaml": "cecill-c.yml", + "html": "cecill-c.html", + "license": "cecill-c.LICENSE" + }, + { + "license_key": "cecill-c-en", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-cecill-c-en", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cecill-c-en.json", + "yaml": "cecill-c-en.yml", + "html": "cecill-c-en.html", + "license": "cecill-c-en.LICENSE" + }, + { + "license_key": "cern-attribution-1995", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-cern-attribution-1995", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cern-attribution-1995.json", + "yaml": "cern-attribution-1995.yml", + "html": "cern-attribution-1995.html", + "license": "cern-attribution-1995.LICENSE" + }, + { + "license_key": "cern-ohl-1.1", + "category": "Permissive", + "spdx_license_key": "CERN-OHL-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cern-ohl-1.1.json", + "yaml": "cern-ohl-1.1.yml", + "html": "cern-ohl-1.1.html", + "license": "cern-ohl-1.1.LICENSE" + }, + { + "license_key": "cern-ohl-1.2", + "category": "Permissive", + "spdx_license_key": "CERN-OHL-1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cern-ohl-1.2.json", + "yaml": "cern-ohl-1.2.yml", + "html": "cern-ohl-1.2.html", + "license": "cern-ohl-1.2.LICENSE" + }, + { + "license_key": "cern-ohl-p-2.0", + "category": "Permissive", + "spdx_license_key": "CERN-OHL-P-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cern-ohl-p-2.0.json", + "yaml": "cern-ohl-p-2.0.yml", + "html": "cern-ohl-p-2.0.html", + "license": "cern-ohl-p-2.0.LICENSE" + }, + { + "license_key": "cern-ohl-s-2.0", + "category": "Copyleft", + "spdx_license_key": "CERN-OHL-S-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cern-ohl-s-2.0.json", + "yaml": "cern-ohl-s-2.0.yml", + "html": "cern-ohl-s-2.0.html", + "license": "cern-ohl-s-2.0.LICENSE" + }, + { + "license_key": "cern-ohl-w-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "CERN-OHL-W-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cern-ohl-w-2.0.json", + "yaml": "cern-ohl-w-2.0.yml", + "html": "cern-ohl-w-2.0.html", + "license": "cern-ohl-w-2.0.LICENSE" + }, + { + "license_key": "cfitsio", + "category": "Permissive", + "spdx_license_key": "CFITSIO", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cfitsio.json", + "yaml": "cfitsio.yml", + "html": "cfitsio.html", + "license": "cfitsio.LICENSE" + }, + { + "license_key": "cgic", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-cgic", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cgic.json", + "yaml": "cgic.yml", + "html": "cgic.html", + "license": "cgic.LICENSE" + }, + { + "license_key": "chartdirector-6.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-chartdirector-6.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "chartdirector-6.0.json", + "yaml": "chartdirector-6.0.yml", + "html": "chartdirector-6.0.html", + "license": "chartdirector-6.0.LICENSE" + }, + { + "license_key": "check-cvs", + "category": "Permissive", + "spdx_license_key": "check-cvs", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "check-cvs.json", + "yaml": "check-cvs.yml", + "html": "check-cvs.html", + "license": "check-cvs.LICENSE" + }, + { + "license_key": "checkmk", + "category": "Permissive", + "spdx_license_key": "checkmk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "checkmk.json", + "yaml": "checkmk.yml", + "html": "checkmk.html", + "license": "checkmk.LICENSE" + }, + { + "license_key": "chelsio-linux-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-chelsio-linux-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "chelsio-linux-firmware.json", + "yaml": "chelsio-linux-firmware.yml", + "html": "chelsio-linux-firmware.html", + "license": "chelsio-linux-firmware.LICENSE" + }, + { + "license_key": "chicken-dl-0.2", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-chicken-dl-0.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "chicken-dl-0.2.json", + "yaml": "chicken-dl-0.2.yml", + "html": "chicken-dl-0.2.html", + "license": "chicken-dl-0.2.LICENSE" + }, + { + "license_key": "chris-maunder", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-chris-maunder", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "chris-maunder.json", + "yaml": "chris-maunder.yml", + "html": "chris-maunder.html", + "license": "chris-maunder.LICENSE" + }, + { + "license_key": "chris-stoy", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-chris-stoy", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "chris-stoy.json", + "yaml": "chris-stoy.yml", + "html": "chris-stoy.html", + "license": "chris-stoy.LICENSE" + }, + { + "license_key": "christopher-velazquez", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-christopher-velazquez", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "christopher-velazquez.json", + "yaml": "christopher-velazquez.yml", + "html": "christopher-velazquez.html", + "license": "christopher-velazquez.LICENSE" + }, + { + "license_key": "cisco-avch264-patent", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-cisco-avch264-patent", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cisco-avch264-patent.json", + "yaml": "cisco-avch264-patent.yml", + "html": "cisco-avch264-patent.html", + "license": "cisco-avch264-patent.LICENSE" + }, + { + "license_key": "civicrm-exception-to-agpl-3.0", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-civicrm-exception-to-agpl-3.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "civicrm-exception-to-agpl-3.0.json", + "yaml": "civicrm-exception-to-agpl-3.0.yml", + "html": "civicrm-exception-to-agpl-3.0.html", + "license": "civicrm-exception-to-agpl-3.0.LICENSE" + }, + { + "license_key": "classic-vb", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-classic-vb", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "classic-vb.json", + "yaml": "classic-vb.yml", + "html": "classic-vb.html", + "license": "classic-vb.LICENSE" + }, + { + "license_key": "classpath-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "Classpath-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "classpath-exception-2.0.json", + "yaml": "classpath-exception-2.0.yml", + "html": "classpath-exception-2.0.html", + "license": "classpath-exception-2.0.LICENSE" + }, + { + "license_key": "classworlds", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "classworlds.json", + "yaml": "classworlds.yml", + "html": "classworlds.html", + "license": "classworlds.LICENSE" + }, + { + "license_key": "clause-6-exception-lgpl-2.1", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-clause-6-exception-lgpl-2.1", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "clause-6-exception-lgpl-2.1.json", + "yaml": "clause-6-exception-lgpl-2.1.yml", + "html": "clause-6-exception-lgpl-2.1.html", + "license": "clause-6-exception-lgpl-2.1.LICENSE" + }, + { + "license_key": "clear-bsd", + "category": "Permissive", + "spdx_license_key": "BSD-3-Clause-Clear", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "clear-bsd.json", + "yaml": "clear-bsd.yml", + "html": "clear-bsd.html", + "license": "clear-bsd.LICENSE" + }, + { + "license_key": "clear-bsd-1-clause", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-clear-bsd-1-clause", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "clear-bsd-1-clause.json", + "yaml": "clear-bsd-1-clause.yml", + "html": "clear-bsd-1-clause.html", + "license": "clear-bsd-1-clause.LICENSE" + }, + { + "license_key": "click-license", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-click-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "click-license.json", + "yaml": "click-license.yml", + "html": "click-license.html", + "license": "click-license.LICENSE" + }, + { + "license_key": "clips-2017", + "category": "Permissive", + "spdx_license_key": "Clips", + "other_spdx_license_keys": [ + "LicenseRef-scancode-clips-2017" + ], + "is_exception": false, + "is_deprecated": false, + "json": "clips-2017.json", + "yaml": "clips-2017.yml", + "html": "clips-2017.html", + "license": "clips-2017.LICENSE" + }, + { + "license_key": "clisp-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "CLISP-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "clisp-exception-2.0.json", + "yaml": "clisp-exception-2.0.yml", + "html": "clisp-exception-2.0.html", + "license": "clisp-exception-2.0.LICENSE" + }, + { + "license_key": "clojure-exception-to-gpl-3.0", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-clojure-exception-to-gpl-3.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "clojure-exception-to-gpl-3.0.json", + "yaml": "clojure-exception-to-gpl-3.0.yml", + "html": "clojure-exception-to-gpl-3.0.html", + "license": "clojure-exception-to-gpl-3.0.LICENSE" + }, + { + "license_key": "cloudera-express", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-cloudera-express", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cloudera-express.json", + "yaml": "cloudera-express.yml", + "html": "cloudera-express.html", + "license": "cloudera-express.LICENSE" + }, + { + "license_key": "cmigemo", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-cmigemo", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cmigemo.json", + "yaml": "cmigemo.yml", + "html": "cmigemo.html", + "license": "cmigemo.LICENSE" + }, + { + "license_key": "cmr-no", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "cmr-no.json", + "yaml": "cmr-no.yml", + "html": "cmr-no.html", + "license": "cmr-no.LICENSE" + }, + { + "license_key": "cmu-computing-services", + "category": "Permissive", + "spdx_license_key": "BSD-Attribution-HPND-disclaimer", + "other_spdx_license_keys": [ + "LicenseRef-scancode-cmu-computing-services" + ], + "is_exception": false, + "is_deprecated": false, + "json": "cmu-computing-services.json", + "yaml": "cmu-computing-services.yml", + "html": "cmu-computing-services.html", + "license": "cmu-computing-services.LICENSE" + }, + { + "license_key": "cmu-flite", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-cmu-flite", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cmu-flite.json", + "yaml": "cmu-flite.yml", + "html": "cmu-flite.html", + "license": "cmu-flite.LICENSE" + }, + { + "license_key": "cmu-mit", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-cmu-mit", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cmu-mit.json", + "yaml": "cmu-mit.yml", + "html": "cmu-mit.html", + "license": "cmu-mit.LICENSE" + }, + { + "license_key": "cmu-nara-nagoya", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-cmu-nara-nagoya", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cmu-nara-nagoya.json", + "yaml": "cmu-nara-nagoya.yml", + "html": "cmu-nara-nagoya.html", + "license": "cmu-nara-nagoya.LICENSE" + }, + { + "license_key": "cmu-simple", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-cmu-simple", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cmu-simple.json", + "yaml": "cmu-simple.yml", + "html": "cmu-simple.html", + "license": "cmu-simple.LICENSE" + }, + { + "license_key": "cmu-template", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-cmu-template", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cmu-template.json", + "yaml": "cmu-template.yml", + "html": "cmu-template.html", + "license": "cmu-template.LICENSE" + }, + { + "license_key": "cmu-uc", + "category": "Permissive", + "spdx_license_key": "MIT-CMU", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cmu-uc.json", + "yaml": "cmu-uc.yml", + "html": "cmu-uc.html", + "license": "cmu-uc.LICENSE" + }, + { + "license_key": "cncf-corporate-cla-1.0", + "category": "CLA", + "spdx_license_key": "LicenseRef-scancode-cncf-corporate-cla-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cncf-corporate-cla-1.0.json", + "yaml": "cncf-corporate-cla-1.0.yml", + "html": "cncf-corporate-cla-1.0.html", + "license": "cncf-corporate-cla-1.0.LICENSE" + }, + { + "license_key": "cncf-individual-cla-1.0", + "category": "CLA", + "spdx_license_key": "LicenseRef-scancode-cncf-individual-cla-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cncf-individual-cla-1.0.json", + "yaml": "cncf-individual-cla-1.0.yml", + "html": "cncf-individual-cla-1.0.html", + "license": "cncf-individual-cla-1.0.LICENSE" + }, + { + "license_key": "cnri-jython", + "category": "Permissive", + "spdx_license_key": "CNRI-Jython", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cnri-jython.json", + "yaml": "cnri-jython.yml", + "html": "cnri-jython.html", + "license": "cnri-jython.LICENSE" + }, + { + "license_key": "cnri-python-1.6", + "category": "Permissive", + "spdx_license_key": "CNRI-Python", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cnri-python-1.6.json", + "yaml": "cnri-python-1.6.yml", + "html": "cnri-python-1.6.html", + "license": "cnri-python-1.6.LICENSE" + }, + { + "license_key": "cnri-python-1.6.1", + "category": "Permissive", + "spdx_license_key": "CNRI-Python-GPL-Compatible", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cnri-python-1.6.1.json", + "yaml": "cnri-python-1.6.1.yml", + "html": "cnri-python-1.6.1.html", + "license": "cnri-python-1.6.1.LICENSE" + }, + { + "license_key": "cockroach", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-cockroach", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cockroach.json", + "yaml": "cockroach.yml", + "html": "cockroach.html", + "license": "cockroach.LICENSE" + }, + { + "license_key": "cockroachdb-use-grant-for-bsl-1.1", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-cockroachdb-use-grant-bsl-1.1", + "other_spdx_license_keys": [ + "LicenseRef-scancode-cockroachdb-use-grant-for-bsl-1.1" + ], + "is_exception": true, + "is_deprecated": false, + "json": "cockroachdb-use-grant-for-bsl-1.1.json", + "yaml": "cockroachdb-use-grant-for-bsl-1.1.yml", + "html": "cockroachdb-use-grant-for-bsl-1.1.html", + "license": "cockroachdb-use-grant-for-bsl-1.1.LICENSE" + }, + { + "license_key": "code-credit-license-1.0-0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-code-credit-license-1.0.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "code-credit-license-1.0-0.json", + "yaml": "code-credit-license-1.0-0.yml", + "html": "code-credit-license-1.0-0.html", + "license": "code-credit-license-1.0-0.LICENSE" + }, + { + "license_key": "code-credit-license-1.0.1", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-code-credit-license-1.0.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "code-credit-license-1.0.1.json", + "yaml": "code-credit-license-1.0.1.yml", + "html": "code-credit-license-1.0.1.html", + "license": "code-credit-license-1.0.1.LICENSE" + }, + { + "license_key": "code-credit-license-1.1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-code-credit-license-1.1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "code-credit-license-1.1.0.json", + "yaml": "code-credit-license-1.1.0.yml", + "html": "code-credit-license-1.1.0.html", + "license": "code-credit-license-1.1.0.LICENSE" + }, + { + "license_key": "codeguru-permissions", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-codeguru-permissions", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "codeguru-permissions.json", + "yaml": "codeguru-permissions.yml", + "html": "codeguru-permissions.html", + "license": "codeguru-permissions.LICENSE" + }, + { + "license_key": "codelite-exception-to-gpl", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-codelite-exception-to-gpl", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "codelite-exception-to-gpl.json", + "yaml": "codelite-exception-to-gpl.yml", + "html": "codelite-exception-to-gpl.html", + "license": "codelite-exception-to-gpl.LICENSE" + }, + { + "license_key": "codesourcery-2004", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-codesourcery-2004", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "codesourcery-2004.json", + "yaml": "codesourcery-2004.yml", + "html": "codesourcery-2004.html", + "license": "codesourcery-2004.LICENSE" + }, + { + "license_key": "codexia", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-codexia", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "codexia.json", + "yaml": "codexia.yml", + "html": "codexia.html", + "license": "codexia.LICENSE" + }, + { + "license_key": "cognitive-web-osl-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-cognitive-web-osl-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cognitive-web-osl-1.1.json", + "yaml": "cognitive-web-osl-1.1.yml", + "html": "cognitive-web-osl-1.1.html", + "license": "cognitive-web-osl-1.1.LICENSE" + }, + { + "license_key": "coil-1.0", + "category": "Permissive", + "spdx_license_key": "COIL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "coil-1.0.json", + "yaml": "coil-1.0.yml", + "html": "coil-1.0.html", + "license": "coil-1.0.LICENSE" + }, + { + "license_key": "colt", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-colt", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "colt.json", + "yaml": "colt.yml", + "html": "colt.html", + "license": "colt.LICENSE" + }, + { + "license_key": "com-oreilly-servlet", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-com-oreilly-servlet", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "com-oreilly-servlet.json", + "yaml": "com-oreilly-servlet.yml", + "html": "com-oreilly-servlet.html", + "license": "com-oreilly-servlet.LICENSE" + }, + { + "license_key": "commercial-license", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-commercial-license", + "other_spdx_license_keys": [ + "LicenseRef-Commercial" + ], + "is_exception": false, + "is_deprecated": false, + "json": "commercial-license.json", + "yaml": "commercial-license.yml", + "html": "commercial-license.html", + "license": "commercial-license.LICENSE" + }, + { + "license_key": "commercial-option", + "category": "Commercial", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "commercial-option.json", + "yaml": "commercial-option.yml", + "html": "commercial-option.html", + "license": "commercial-option.LICENSE" + }, + { + "license_key": "commonj-timer", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-commonj-timer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "commonj-timer.json", + "yaml": "commonj-timer.yml", + "html": "commonj-timer.html", + "license": "commonj-timer.LICENSE" + }, + { + "license_key": "commons-clause", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-commons-clause", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "commons-clause.json", + "yaml": "commons-clause.yml", + "html": "commons-clause.html", + "license": "commons-clause.LICENSE" + }, + { + "license_key": "compass", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-compass", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "compass.json", + "yaml": "compass.yml", + "html": "compass.html", + "license": "compass.LICENSE" + }, + { + "license_key": "componentace-jcraft", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-componentace-jcraft", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "componentace-jcraft.json", + "yaml": "componentace-jcraft.yml", + "html": "componentace-jcraft.html", + "license": "componentace-jcraft.LICENSE" + }, + { + "license_key": "compuphase-linking-exception", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-compuphase-linking-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "compuphase-linking-exception.json", + "yaml": "compuphase-linking-exception.yml", + "html": "compuphase-linking-exception.html", + "license": "compuphase-linking-exception.LICENSE" + }, + { + "license_key": "concursive-pl-1.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-concursive-pl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "concursive-pl-1.0.json", + "yaml": "concursive-pl-1.0.yml", + "html": "concursive-pl-1.0.html", + "license": "concursive-pl-1.0.LICENSE" + }, + { + "license_key": "condor-1.1", + "category": "Permissive", + "spdx_license_key": "Condor-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "condor-1.1.json", + "yaml": "condor-1.1.yml", + "html": "condor-1.1.html", + "license": "condor-1.1.LICENSE" + }, + { + "license_key": "confluent-community-1.0", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-confluent-community-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "confluent-community-1.0.json", + "yaml": "confluent-community-1.0.yml", + "html": "confluent-community-1.0.html", + "license": "confluent-community-1.0.LICENSE" + }, + { + "license_key": "cooperative-non-violent-4.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-cooperative-non-violent-4.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cooperative-non-violent-4.0.json", + "yaml": "cooperative-non-violent-4.0.yml", + "html": "cooperative-non-violent-4.0.html", + "license": "cooperative-non-violent-4.0.LICENSE" + }, + { + "license_key": "cooperative-non-violent-6.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-cooperative-non-violent-6.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cooperative-non-violent-6.0.json", + "yaml": "cooperative-non-violent-6.0.yml", + "html": "cooperative-non-violent-6.0.html", + "license": "cooperative-non-violent-6.0.LICENSE" + }, + { + "license_key": "cooperative-non-violent-7.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-cooperative-non-violent-7.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cooperative-non-violent-7.0.json", + "yaml": "cooperative-non-violent-7.0.yml", + "html": "cooperative-non-violent-7.0.html", + "license": "cooperative-non-violent-7.0.LICENSE" + }, + { + "license_key": "copyheart", + "category": "Public Domain", + "spdx_license_key": "LicenseRef-scancode-copyheart", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "copyheart.json", + "yaml": "copyheart.yml", + "html": "copyheart.html", + "license": "copyheart.LICENSE" + }, + { + "license_key": "copyleft-next-0.3.0", + "category": "Copyleft", + "spdx_license_key": "copyleft-next-0.3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "copyleft-next-0.3.0.json", + "yaml": "copyleft-next-0.3.0.yml", + "html": "copyleft-next-0.3.0.html", + "license": "copyleft-next-0.3.0.LICENSE" + }, + { + "license_key": "copyleft-next-0.3.1", + "category": "Copyleft", + "spdx_license_key": "copyleft-next-0.3.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "copyleft-next-0.3.1.json", + "yaml": "copyleft-next-0.3.1.yml", + "html": "copyleft-next-0.3.1.html", + "license": "copyleft-next-0.3.1.LICENSE" + }, + { + "license_key": "cornell-lossless-jpeg", + "category": "Permissive", + "spdx_license_key": "Cornell-Lossless-JPEG", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cornell-lossless-jpeg.json", + "yaml": "cornell-lossless-jpeg.yml", + "html": "cornell-lossless-jpeg.html", + "license": "cornell-lossless-jpeg.LICENSE" + }, + { + "license_key": "corporate-accountability-1.1", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-corporate-accountability-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "corporate-accountability-1.1.json", + "yaml": "corporate-accountability-1.1.yml", + "html": "corporate-accountability-1.1.html", + "license": "corporate-accountability-1.1.LICENSE" + }, + { + "license_key": "corporate-accountability-commercial-1.1", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-accountability-commercial-1.1", + "other_spdx_license_keys": [ + "LicenseRef-scancode-corporate-accountability-commercial-1.1" + ], + "is_exception": true, + "is_deprecated": false, + "json": "corporate-accountability-commercial-1.1.json", + "yaml": "corporate-accountability-commercial-1.1.yml", + "html": "corporate-accountability-commercial-1.1.html", + "license": "corporate-accountability-commercial-1.1.LICENSE" + }, + { + "license_key": "cosl", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-cosl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cosl.json", + "yaml": "cosl.yml", + "html": "cosl.html", + "license": "cosl.LICENSE" + }, + { + "license_key": "cosli", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-cosli", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cosli.json", + "yaml": "cosli.yml", + "html": "cosli.html", + "license": "cosli.LICENSE" + }, + { + "license_key": "couchbase-community", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-couchbase-community", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "couchbase-community.json", + "yaml": "couchbase-community.yml", + "html": "couchbase-community.html", + "license": "couchbase-community.LICENSE" + }, + { + "license_key": "couchbase-enterprise", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-couchbase-enterprise", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "couchbase-enterprise.json", + "yaml": "couchbase-enterprise.yml", + "html": "couchbase-enterprise.html", + "license": "couchbase-enterprise.LICENSE" + }, + { + "license_key": "cpal-1.0", + "category": "Copyleft", + "spdx_license_key": "CPAL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cpal-1.0.json", + "yaml": "cpal-1.0.yml", + "html": "cpal-1.0.html", + "license": "cpal-1.0.LICENSE" + }, + { + "license_key": "cpl-0.5", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-cpl-0.5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cpl-0.5.json", + "yaml": "cpl-0.5.yml", + "html": "cpl-0.5.html", + "license": "cpl-0.5.LICENSE" + }, + { + "license_key": "cpl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "CPL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cpl-1.0.json", + "yaml": "cpl-1.0.yml", + "html": "cpl-1.0.html", + "license": "cpl-1.0.LICENSE" + }, + { + "license_key": "cpm-2022", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-cpm-2022", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cpm-2022.json", + "yaml": "cpm-2022.yml", + "html": "cpm-2022.html", + "license": "cpm-2022.LICENSE" + }, + { + "license_key": "cpol-1.0", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-cpol-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cpol-1.0.json", + "yaml": "cpol-1.0.yml", + "html": "cpol-1.0.html", + "license": "cpol-1.0.LICENSE" + }, + { + "license_key": "cpol-1.02", + "category": "Free Restricted", + "spdx_license_key": "CPOL-1.02", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cpol-1.02.json", + "yaml": "cpol-1.02.yml", + "html": "cpol-1.02.html", + "license": "cpol-1.02.LICENSE" + }, + { + "license_key": "cpp-core-guidelines", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-cpp-core-guidelines", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cpp-core-guidelines.json", + "yaml": "cpp-core-guidelines.yml", + "html": "cpp-core-guidelines.html", + "license": "cpp-core-guidelines.LICENSE" + }, + { + "license_key": "crapl-0.1", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-crapl-0.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "crapl-0.1.json", + "yaml": "crapl-0.1.yml", + "html": "crapl-0.1.html", + "license": "crapl-0.1.LICENSE" + }, + { + "license_key": "crashlytics-agreement-2018", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-crashlytics-agreement-2018", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "crashlytics-agreement-2018.json", + "yaml": "crashlytics-agreement-2018.yml", + "html": "crashlytics-agreement-2018.html", + "license": "crashlytics-agreement-2018.LICENSE" + }, + { + "license_key": "crcalc", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-crcalc", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "crcalc.json", + "yaml": "crcalc.yml", + "html": "crcalc.html", + "license": "crcalc.LICENSE" + }, + { + "license_key": "cronyx", + "category": "Permissive", + "spdx_license_key": "Cronyx", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cronyx.json", + "yaml": "cronyx.yml", + "html": "cronyx.html", + "license": "cronyx.LICENSE" + }, + { + "license_key": "crossword", + "category": "Permissive", + "spdx_license_key": "Crossword", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "crossword.json", + "yaml": "crossword.yml", + "html": "crossword.html", + "license": "crossword.LICENSE" + }, + { + "license_key": "crunchbase-data-2019-12-17", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-crunchbase-data-2019-12-17", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "crunchbase-data-2019-12-17.json", + "yaml": "crunchbase-data-2019-12-17.yml", + "html": "crunchbase-data-2019-12-17.html", + "license": "crunchbase-data-2019-12-17.LICENSE" + }, + { + "license_key": "crypto-keys-redistribution", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-crypto-keys-redistribution", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "crypto-keys-redistribution.json", + "yaml": "crypto-keys-redistribution.yml", + "html": "crypto-keys-redistribution.html", + "license": "crypto-keys-redistribution.LICENSE" + }, + { + "license_key": "cryptopp", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-cryptopp", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cryptopp.json", + "yaml": "cryptopp.yml", + "html": "cryptopp.html", + "license": "cryptopp.LICENSE" + }, + { + "license_key": "crystal-stacker", + "category": "Permissive", + "spdx_license_key": "CrystalStacker", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "crystal-stacker.json", + "yaml": "crystal-stacker.yml", + "html": "crystal-stacker.html", + "license": "crystal-stacker.LICENSE" + }, + { + "license_key": "csl-1.0", + "category": "Permissive", + "spdx_license_key": "Community-Spec-1.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-csl-1.0" + ], + "is_exception": false, + "is_deprecated": false, + "json": "csl-1.0.json", + "yaml": "csl-1.0.yml", + "html": "csl-1.0.html", + "license": "csl-1.0.LICENSE" + }, + { + "license_key": "csla", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-csla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "csla.json", + "yaml": "csla.yml", + "html": "csla.html", + "license": "csla.LICENSE" + }, + { + "license_key": "csprng", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-csprng", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "csprng.json", + "yaml": "csprng.yml", + "html": "csprng.html", + "license": "csprng.LICENSE" + }, + { + "license_key": "ctl-linux-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ctl-linux-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ctl-linux-firmware.json", + "yaml": "ctl-linux-firmware.yml", + "html": "ctl-linux-firmware.html", + "license": "ctl-linux-firmware.LICENSE" + }, + { + "license_key": "cua-opl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "CUA-OPL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cua-opl-1.0.json", + "yaml": "cua-opl-1.0.yml", + "html": "cua-opl-1.0.html", + "license": "cua-opl-1.0.LICENSE" + }, + { + "license_key": "cube", + "category": "Permissive", + "spdx_license_key": "Cube", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cube.json", + "yaml": "cube.yml", + "html": "cube.html", + "license": "cube.LICENSE" + }, + { + "license_key": "cubiware-software-1.0", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-cubiware-software-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cubiware-software-1.0.json", + "yaml": "cubiware-software-1.0.yml", + "html": "cubiware-software-1.0.html", + "license": "cubiware-software-1.0.LICENSE" + }, + { + "license_key": "cups", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-cups", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cups.json", + "yaml": "cups.yml", + "html": "cups.html", + "license": "cups.LICENSE" + }, + { + "license_key": "cups-apple-os-exception", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-cups-apple-os-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "cups-apple-os-exception.json", + "yaml": "cups-apple-os-exception.yml", + "html": "cups-apple-os-exception.html", + "license": "cups-apple-os-exception.LICENSE" + }, + { + "license_key": "curl", + "category": "Permissive", + "spdx_license_key": "curl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "curl.json", + "yaml": "curl.yml", + "html": "curl.html", + "license": "curl.LICENSE" + }, + { + "license_key": "cve-tou", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-cve-tou", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cve-tou.json", + "yaml": "cve-tou.yml", + "html": "cve-tou.html", + "license": "cve-tou.LICENSE" + }, + { + "license_key": "cvwl", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-cvwl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cvwl.json", + "yaml": "cvwl.yml", + "html": "cvwl.html", + "license": "cvwl.LICENSE" + }, + { + "license_key": "cwe-tou", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-cwe-tou", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cwe-tou.json", + "yaml": "cwe-tou.yml", + "html": "cwe-tou.html", + "license": "cwe-tou.LICENSE" + }, + { + "license_key": "cximage", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-cximage", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cximage.json", + "yaml": "cximage.yml", + "html": "cximage.html", + "license": "cximage.LICENSE" + }, + { + "license_key": "cygwin-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-cygwin-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "cygwin-exception-2.0.json", + "yaml": "cygwin-exception-2.0.yml", + "html": "cygwin-exception-2.0.html", + "license": "cygwin-exception-2.0.LICENSE" + }, + { + "license_key": "cygwin-exception-3.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-cygwin-exception-3.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "cygwin-exception-3.0.json", + "yaml": "cygwin-exception-3.0.yml", + "html": "cygwin-exception-3.0.html", + "license": "cygwin-exception-3.0.LICENSE" + }, + { + "license_key": "cygwin-exception-lgpl-3.0-plus", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-cygwin-exception-lgpl-3.0-plus", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "cygwin-exception-lgpl-3.0-plus.json", + "yaml": "cygwin-exception-lgpl-3.0-plus.yml", + "html": "cygwin-exception-lgpl-3.0-plus.html", + "license": "cygwin-exception-lgpl-3.0-plus.LICENSE" + }, + { + "license_key": "cypress-linux-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-cypress-linux-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cypress-linux-firmware.json", + "yaml": "cypress-linux-firmware.yml", + "html": "cypress-linux-firmware.html", + "license": "cypress-linux-firmware.LICENSE" + }, + { + "license_key": "d-fsl-1.0-de", + "category": "Copyleft", + "spdx_license_key": "D-FSL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "d-fsl-1.0-de.json", + "yaml": "d-fsl-1.0-de.yml", + "html": "d-fsl-1.0-de.html", + "license": "d-fsl-1.0-de.LICENSE" + }, + { + "license_key": "d-fsl-1.0-en", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-d-fsl-1.0-en", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "d-fsl-1.0-en.json", + "yaml": "d-fsl-1.0-en.yml", + "html": "d-fsl-1.0-en.html", + "license": "d-fsl-1.0-en.LICENSE" + }, + { + "license_key": "d-zlib", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-d-zlib", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "d-zlib.json", + "yaml": "d-zlib.yml", + "html": "d-zlib.html", + "license": "d-zlib.LICENSE" + }, + { + "license_key": "damail", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-damail", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "damail.json", + "yaml": "damail.yml", + "html": "damail.html", + "license": "damail.LICENSE" + }, + { + "license_key": "dante-treglia", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-dante-treglia", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dante-treglia.json", + "yaml": "dante-treglia.yml", + "html": "dante-treglia.html", + "license": "dante-treglia.LICENSE" + }, + { + "license_key": "datamekanix-license", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-datamekanix-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "datamekanix-license.json", + "yaml": "datamekanix-license.yml", + "html": "datamekanix-license.html", + "license": "datamekanix-license.LICENSE" + }, + { + "license_key": "day-spec", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-day-spec", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "day-spec.json", + "yaml": "day-spec.yml", + "html": "day-spec.html", + "license": "day-spec.LICENSE" + }, + { + "license_key": "dbad", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-dbad", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dbad.json", + "yaml": "dbad.yml", + "html": "dbad.html", + "license": "dbad.LICENSE" + }, + { + "license_key": "dbad-1.1", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-dbad-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dbad-1.1.json", + "yaml": "dbad-1.1.yml", + "html": "dbad-1.1.html", + "license": "dbad-1.1.LICENSE" + }, + { + "license_key": "dbcl-1.0", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-dbcl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dbcl-1.0.json", + "yaml": "dbcl-1.0.yml", + "html": "dbcl-1.0.html", + "license": "dbcl-1.0.LICENSE" + }, + { + "license_key": "dbmx-foss-exception-1.0.9", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-dbmx-foss-exception-1.0.9", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "dbmx-foss-exception-1.0.9.json", + "yaml": "dbmx-foss-exception-1.0.9.yml", + "html": "dbmx-foss-exception-1.0.9.html", + "license": "dbmx-foss-exception-1.0.9.LICENSE" + }, + { + "license_key": "dbmx-linking-exception-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-dbmx-linking-exception-1.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "dbmx-linking-exception-1.0.json", + "yaml": "dbmx-linking-exception-1.0.yml", + "html": "dbmx-linking-exception-1.0.html", + "license": "dbmx-linking-exception-1.0.LICENSE" + }, + { + "license_key": "dco-1.1", + "category": "CLA", + "spdx_license_key": "LicenseRef-scancode-dco-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dco-1.1.json", + "yaml": "dco-1.1.yml", + "html": "dco-1.1.html", + "license": "dco-1.1.LICENSE" + }, + { + "license_key": "dec-3-clause", + "category": "Permissive", + "spdx_license_key": "DEC-3-Clause", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dec-3-clause.json", + "yaml": "dec-3-clause.yml", + "html": "dec-3-clause.html", + "license": "dec-3-clause.LICENSE" + }, + { + "license_key": "defensive-patent-1.1", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-defensive-patent-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "defensive-patent-1.1.json", + "yaml": "defensive-patent-1.1.yml", + "html": "defensive-patent-1.1.html", + "license": "defensive-patent-1.1.LICENSE" + }, + { + "license_key": "dejavu-font", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-dejavu-font", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "dejavu-font.json", + "yaml": "dejavu-font.yml", + "html": "dejavu-font.html", + "license": "dejavu-font.LICENSE" + }, + { + "license_key": "delorie-historical", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-delorie-historical", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "delorie-historical.json", + "yaml": "delorie-historical.yml", + "html": "delorie-historical.html", + "license": "delorie-historical.LICENSE" + }, + { + "license_key": "dennis-ferguson", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-dennis-ferguson", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dennis-ferguson.json", + "yaml": "dennis-ferguson.yml", + "html": "dennis-ferguson.html", + "license": "dennis-ferguson.LICENSE" + }, + { + "license_key": "devblocks-1.0", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-devblocks-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "devblocks-1.0.json", + "yaml": "devblocks-1.0.yml", + "html": "devblocks-1.0.html", + "license": "devblocks-1.0.LICENSE" + }, + { + "license_key": "dgraph-cla", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-dgraph-cla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dgraph-cla.json", + "yaml": "dgraph-cla.yml", + "html": "dgraph-cla.html", + "license": "dgraph-cla.LICENSE" + }, + { + "license_key": "dhb-lbnl-bsd-2007", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-dhb-lbnl-bsd-2007", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dhb-lbnl-bsd-2007.json", + "yaml": "dhb-lbnl-bsd-2007.yml", + "html": "dhb-lbnl-bsd-2007.html", + "license": "dhb-lbnl-bsd-2007.LICENSE" + }, + { + "license_key": "dhb-limited-bsd-2015", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-dhb-limited-bsd-2015", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dhb-limited-bsd-2015.json", + "yaml": "dhb-limited-bsd-2015.yml", + "html": "dhb-limited-bsd-2015.html", + "license": "dhb-limited-bsd-2015.LICENSE" + }, + { + "license_key": "dhtmlab-public", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-dhtmlab-public", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dhtmlab-public.json", + "yaml": "dhtmlab-public.yml", + "html": "dhtmlab-public.html", + "license": "dhtmlab-public.LICENSE" + }, + { + "license_key": "diffmark", + "category": "Public Domain", + "spdx_license_key": "diffmark", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "diffmark.json", + "yaml": "diffmark.yml", + "html": "diffmark.html", + "license": "diffmark.LICENSE" + }, + { + "license_key": "digia-qt-commercial", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-digia-qt-commercial", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "digia-qt-commercial.json", + "yaml": "digia-qt-commercial.yml", + "html": "digia-qt-commercial.html", + "license": "digia-qt-commercial.LICENSE" + }, + { + "license_key": "digia-qt-exception-lgpl-2.1", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "digia-qt-exception-lgpl-2.1.json", + "yaml": "digia-qt-exception-lgpl-2.1.yml", + "html": "digia-qt-exception-lgpl-2.1.html", + "license": "digia-qt-exception-lgpl-2.1.LICENSE" + }, + { + "license_key": "digia-qt-preview", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-digia-qt-preview", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "digia-qt-preview.json", + "yaml": "digia-qt-preview.yml", + "html": "digia-qt-preview.html", + "license": "digia-qt-preview.LICENSE" + }, + { + "license_key": "digirule-foss-exception", + "category": "Copyleft Limited", + "spdx_license_key": "DigiRule-FOSS-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "digirule-foss-exception.json", + "yaml": "digirule-foss-exception.yml", + "html": "digirule-foss-exception.html", + "license": "digirule-foss-exception.LICENSE" + }, + { + "license_key": "divx-open-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-divx-open-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "divx-open-1.0.json", + "yaml": "divx-open-1.0.yml", + "html": "divx-open-1.0.html", + "license": "divx-open-1.0.LICENSE" + }, + { + "license_key": "divx-open-2.1", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-divx-open-2.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "divx-open-2.1.json", + "yaml": "divx-open-2.1.yml", + "html": "divx-open-2.1.html", + "license": "divx-open-2.1.LICENSE" + }, + { + "license_key": "dl-de-by-1-0-de", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-dl-de-by-1-0-de", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dl-de-by-1-0-de.json", + "yaml": "dl-de-by-1-0-de.yml", + "html": "dl-de-by-1-0-de.html", + "license": "dl-de-by-1-0-de.LICENSE" + }, + { + "license_key": "dl-de-by-1-0-en", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-dl-de-by-1-0-en", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dl-de-by-1-0-en.json", + "yaml": "dl-de-by-1-0-en.yml", + "html": "dl-de-by-1-0-en.html", + "license": "dl-de-by-1-0-en.LICENSE" + }, + { + "license_key": "dl-de-by-2-0-de", + "category": "Permissive", + "spdx_license_key": "DL-DE-BY-2.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-dl-de-by-2-0-de" + ], + "is_exception": false, + "is_deprecated": false, + "json": "dl-de-by-2-0-de.json", + "yaml": "dl-de-by-2-0-de.yml", + "html": "dl-de-by-2-0-de.html", + "license": "dl-de-by-2-0-de.LICENSE" + }, + { + "license_key": "dl-de-by-2-0-en", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-dl-de-by-2-0-en", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dl-de-by-2-0-en.json", + "yaml": "dl-de-by-2-0-en.yml", + "html": "dl-de-by-2-0-en.html", + "license": "dl-de-by-2-0-en.LICENSE" + }, + { + "license_key": "dl-de-by-nc-1-0-de", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-dl-de-by-nc-1-0-de", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dl-de-by-nc-1-0-de.json", + "yaml": "dl-de-by-nc-1-0-de.yml", + "html": "dl-de-by-nc-1-0-de.html", + "license": "dl-de-by-nc-1-0-de.LICENSE" + }, + { + "license_key": "dl-de-by-nc-1-0-en", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-dl-de-by-nc-1-0-en", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dl-de-by-nc-1-0-en.json", + "yaml": "dl-de-by-nc-1-0-en.yml", + "html": "dl-de-by-nc-1-0-en.html", + "license": "dl-de-by-nc-1-0-en.LICENSE" + }, + { + "license_key": "dl-de-zero-2.0", + "category": "Permissive", + "spdx_license_key": "DL-DE-ZERO-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dl-de-zero-2.0.json", + "yaml": "dl-de-zero-2.0.yml", + "html": "dl-de-zero-2.0.html", + "license": "dl-de-zero-2.0.LICENSE" + }, + { + "license_key": "dmalloc", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-dmalloc", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dmalloc.json", + "yaml": "dmalloc.yml", + "html": "dmalloc.html", + "license": "dmalloc.LICENSE" + }, + { + "license_key": "dmtf-2017", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-dmtf-2017", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dmtf-2017.json", + "yaml": "dmtf-2017.yml", + "html": "dmtf-2017.html", + "license": "dmtf-2017.LICENSE" + }, + { + "license_key": "do-no-harm-0.1", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-do-no-harm-0.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "do-no-harm-0.1.json", + "yaml": "do-no-harm-0.1.yml", + "html": "do-no-harm-0.1.html", + "license": "do-no-harm-0.1.LICENSE" + }, + { + "license_key": "docbook", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-docbook", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "docbook.json", + "yaml": "docbook.yml", + "html": "docbook.html", + "license": "docbook.LICENSE" + }, + { + "license_key": "dom4j", + "category": "Permissive", + "spdx_license_key": "Plexus", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dom4j.json", + "yaml": "dom4j.yml", + "html": "dom4j.html", + "license": "dom4j.LICENSE" + }, + { + "license_key": "dos32a-extender", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-dos32a-extender", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dos32a-extender.json", + "yaml": "dos32a-extender.yml", + "html": "dos32a-extender.html", + "license": "dos32a-extender.LICENSE" + }, + { + "license_key": "dotseqn", + "category": "Permissive", + "spdx_license_key": "Dotseqn", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dotseqn.json", + "yaml": "dotseqn.yml", + "html": "dotseqn.html", + "license": "dotseqn.LICENSE" + }, + { + "license_key": "doug-lea", + "category": "Public Domain", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "doug-lea.json", + "yaml": "doug-lea.yml", + "html": "doug-lea.html", + "license": "doug-lea.LICENSE" + }, + { + "license_key": "douglas-young", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-douglas-young", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "douglas-young.json", + "yaml": "douglas-young.yml", + "html": "douglas-young.html", + "license": "douglas-young.LICENSE" + }, + { + "license_key": "dpl-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-dpl-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dpl-1.1.json", + "yaml": "dpl-1.1.yml", + "html": "dpl-1.1.html", + "license": "dpl-1.1.LICENSE" + }, + { + "license_key": "dr-john-maddock", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "dr-john-maddock.json", + "yaml": "dr-john-maddock.yml", + "html": "dr-john-maddock.html", + "license": "dr-john-maddock.LICENSE" + }, + { + "license_key": "drl-1.0", + "category": "Permissive", + "spdx_license_key": "DRL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "drl-1.0.json", + "yaml": "drl-1.0.yml", + "html": "drl-1.0.html", + "license": "drl-1.0.LICENSE" + }, + { + "license_key": "drl-1.1", + "category": "Permissive", + "spdx_license_key": "DRL-1.1", + "other_spdx_license_keys": [ + "LicenseRef-scancode-drl-1.1" + ], + "is_exception": false, + "is_deprecated": false, + "json": "drl-1.1.json", + "yaml": "drl-1.1.yml", + "html": "drl-1.1.html", + "license": "drl-1.1.LICENSE" + }, + { + "license_key": "dropbear", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-dropbear", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dropbear.json", + "yaml": "dropbear.yml", + "html": "dropbear.html", + "license": "dropbear.LICENSE" + }, + { + "license_key": "dropbear-2016", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-dropbear-2016", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dropbear-2016.json", + "yaml": "dropbear-2016.yml", + "html": "dropbear-2016.html", + "license": "dropbear-2016.LICENSE" + }, + { + "license_key": "dsdp", + "category": "Permissive", + "spdx_license_key": "DSDP", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dsdp.json", + "yaml": "dsdp.yml", + "html": "dsdp.html", + "license": "dsdp.LICENSE" + }, + { + "license_key": "dtree", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-dtree", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dtree.json", + "yaml": "dtree.yml", + "html": "dtree.html", + "license": "dtree.LICENSE" + }, + { + "license_key": "dual-bsd-gpl", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "dual-bsd-gpl.json", + "yaml": "dual-bsd-gpl.yml", + "html": "dual-bsd-gpl.html", + "license": "dual-bsd-gpl.LICENSE" + }, + { + "license_key": "dual-commercial-gpl", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-dual-commercial-gpl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dual-commercial-gpl.json", + "yaml": "dual-commercial-gpl.yml", + "html": "dual-commercial-gpl.html", + "license": "dual-commercial-gpl.LICENSE" + }, + { + "license_key": "duende-sla-2022", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-duende-sla-2022", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "duende-sla-2022.json", + "yaml": "duende-sla-2022.yml", + "html": "duende-sla-2022.html", + "license": "duende-sla-2022.LICENSE" + }, + { + "license_key": "dune-exception", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-dune-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "dune-exception.json", + "yaml": "dune-exception.yml", + "html": "dune-exception.html", + "license": "dune-exception.LICENSE" + }, + { + "license_key": "dvipdfm", + "category": "Permissive", + "spdx_license_key": "dvipdfm", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dvipdfm.json", + "yaml": "dvipdfm.yml", + "html": "dvipdfm.html", + "license": "dvipdfm.LICENSE" + }, + { + "license_key": "dwtfnmfpl-3.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-dwtfnmfpl-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dwtfnmfpl-3.0.json", + "yaml": "dwtfnmfpl-3.0.yml", + "html": "dwtfnmfpl-3.0.html", + "license": "dwtfnmfpl-3.0.LICENSE" + }, + { + "license_key": "dynamic-drive-tou", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-dynamic-drive-tou", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dynamic-drive-tou.json", + "yaml": "dynamic-drive-tou.yml", + "html": "dynamic-drive-tou.html", + "license": "dynamic-drive-tou.LICENSE" + }, + { + "license_key": "dynarch-developer", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-dynarch-developer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dynarch-developer.json", + "yaml": "dynarch-developer.yml", + "html": "dynarch-developer.html", + "license": "dynarch-developer.LICENSE" + }, + { + "license_key": "dynarch-linkware", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-dynarch-linkware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dynarch-linkware.json", + "yaml": "dynarch-linkware.yml", + "html": "dynarch-linkware.html", + "license": "dynarch-linkware.LICENSE" + }, + { + "license_key": "ecfonts-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ecfonts-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ecfonts-1.0.json", + "yaml": "ecfonts-1.0.yml", + "html": "ecfonts-1.0.html", + "license": "ecfonts-1.0.LICENSE" + }, + { + "license_key": "ecl-1.0", + "category": "Permissive", + "spdx_license_key": "ECL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ecl-1.0.json", + "yaml": "ecl-1.0.yml", + "html": "ecl-1.0.html", + "license": "ecl-1.0.LICENSE" + }, + { + "license_key": "ecl-2.0", + "category": "Permissive", + "spdx_license_key": "ECL-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ecl-2.0.json", + "yaml": "ecl-2.0.yml", + "html": "ecl-2.0.html", + "license": "ecl-2.0.LICENSE" + }, + { + "license_key": "eclipse-sua-2001", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2001", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "eclipse-sua-2001.json", + "yaml": "eclipse-sua-2001.yml", + "html": "eclipse-sua-2001.html", + "license": "eclipse-sua-2001.LICENSE" + }, + { + "license_key": "eclipse-sua-2002", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2002", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "eclipse-sua-2002.json", + "yaml": "eclipse-sua-2002.yml", + "html": "eclipse-sua-2002.html", + "license": "eclipse-sua-2002.LICENSE" + }, + { + "license_key": "eclipse-sua-2003", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2003", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "eclipse-sua-2003.json", + "yaml": "eclipse-sua-2003.yml", + "html": "eclipse-sua-2003.html", + "license": "eclipse-sua-2003.LICENSE" + }, + { + "license_key": "eclipse-sua-2004", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2004", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "eclipse-sua-2004.json", + "yaml": "eclipse-sua-2004.yml", + "html": "eclipse-sua-2004.html", + "license": "eclipse-sua-2004.LICENSE" + }, + { + "license_key": "eclipse-sua-2005", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2005", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "eclipse-sua-2005.json", + "yaml": "eclipse-sua-2005.yml", + "html": "eclipse-sua-2005.html", + "license": "eclipse-sua-2005.LICENSE" + }, + { + "license_key": "eclipse-sua-2010", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2010", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "eclipse-sua-2010.json", + "yaml": "eclipse-sua-2010.yml", + "html": "eclipse-sua-2010.html", + "license": "eclipse-sua-2010.LICENSE" + }, + { + "license_key": "eclipse-sua-2011", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2011", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "eclipse-sua-2011.json", + "yaml": "eclipse-sua-2011.yml", + "html": "eclipse-sua-2011.html", + "license": "eclipse-sua-2011.LICENSE" + }, + { + "license_key": "eclipse-sua-2014", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2014", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "eclipse-sua-2014.json", + "yaml": "eclipse-sua-2014.yml", + "html": "eclipse-sua-2014.html", + "license": "eclipse-sua-2014.LICENSE" + }, + { + "license_key": "eclipse-sua-2014-11", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2014-11", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "eclipse-sua-2014-11.json", + "yaml": "eclipse-sua-2014-11.yml", + "html": "eclipse-sua-2014-11.html", + "license": "eclipse-sua-2014-11.LICENSE" + }, + { + "license_key": "eclipse-sua-2017", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2017", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "eclipse-sua-2017.json", + "yaml": "eclipse-sua-2017.yml", + "html": "eclipse-sua-2017.html", + "license": "eclipse-sua-2017.LICENSE" + }, + { + "license_key": "ecma-documentation", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-ecma-documentation", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ecma-documentation.json", + "yaml": "ecma-documentation.yml", + "html": "ecma-documentation.html", + "license": "ecma-documentation.LICENSE" + }, + { + "license_key": "ecma-no-patent", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ecma-no-patent", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "ecma-no-patent.json", + "yaml": "ecma-no-patent.yml", + "html": "ecma-no-patent.html", + "license": "ecma-no-patent.LICENSE" + }, + { + "license_key": "ecma-patent-coc-0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ecma-patent-coc-0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ecma-patent-coc-0.json", + "yaml": "ecma-patent-coc-0.yml", + "html": "ecma-patent-coc-0.html", + "license": "ecma-patent-coc-0.LICENSE" + }, + { + "license_key": "ecma-patent-coc-1", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ecma-patent-coc-1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ecma-patent-coc-1.json", + "yaml": "ecma-patent-coc-1.yml", + "html": "ecma-patent-coc-1.html", + "license": "ecma-patent-coc-1.LICENSE" + }, + { + "license_key": "ecma-patent-coc-2", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ecma-patent-coc-2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ecma-patent-coc-2.json", + "yaml": "ecma-patent-coc-2.yml", + "html": "ecma-patent-coc-2.html", + "license": "ecma-patent-coc-2.LICENSE" + }, + { + "license_key": "ecos", + "category": "Copyleft Limited", + "spdx_license_key": "eCos-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "ecos.json", + "yaml": "ecos.yml", + "html": "ecos.html", + "license": "ecos.LICENSE" + }, + { + "license_key": "ecos-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "eCos-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "ecos-exception-2.0.json", + "yaml": "ecos-exception-2.0.yml", + "html": "ecos-exception-2.0.html", + "license": "ecos-exception-2.0.LICENSE" + }, + { + "license_key": "ecosrh-1.0", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-ecosrh-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ecosrh-1.0.json", + "yaml": "ecosrh-1.0.yml", + "html": "ecosrh-1.0.html", + "license": "ecosrh-1.0.LICENSE" + }, + { + "license_key": "ecosrh-1.1", + "category": "Copyleft", + "spdx_license_key": "RHeCos-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ecosrh-1.1.json", + "yaml": "ecosrh-1.1.yml", + "html": "ecosrh-1.1.html", + "license": "ecosrh-1.1.LICENSE" + }, + { + "license_key": "edrdg-2000", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-edrdg-2000", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "edrdg-2000.json", + "yaml": "edrdg-2000.yml", + "html": "edrdg-2000.html", + "license": "edrdg-2000.LICENSE" + }, + { + "license_key": "efl-1.0", + "category": "Permissive", + "spdx_license_key": "EFL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "efl-1.0.json", + "yaml": "efl-1.0.yml", + "html": "efl-1.0.html", + "license": "efl-1.0.LICENSE" + }, + { + "license_key": "efl-2.0", + "category": "Permissive", + "spdx_license_key": "EFL-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "efl-2.0.json", + "yaml": "efl-2.0.yml", + "html": "efl-2.0.html", + "license": "efl-2.0.LICENSE" + }, + { + "license_key": "efsl-1.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-efsl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "efsl-1.0.json", + "yaml": "efsl-1.0.yml", + "html": "efsl-1.0.html", + "license": "efsl-1.0.LICENSE" + }, + { + "license_key": "egenix-1.0.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-egenix-1.0.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "egenix-1.0.0.json", + "yaml": "egenix-1.0.0.yml", + "html": "egenix-1.0.0.html", + "license": "egenix-1.0.0.LICENSE" + }, + { + "license_key": "egenix-1.1.0", + "category": "Permissive", + "spdx_license_key": "eGenix", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "egenix-1.1.0.json", + "yaml": "egenix-1.1.0.yml", + "html": "egenix-1.1.0.html", + "license": "egenix-1.1.0.LICENSE" + }, + { + "license_key": "egrappler", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-egrappler", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "egrappler.json", + "yaml": "egrappler.yml", + "html": "egrappler.html", + "license": "egrappler.LICENSE" + }, + { + "license_key": "ej-technologies-eula", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-ej-technologies-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ej-technologies-eula.json", + "yaml": "ej-technologies-eula.yml", + "html": "ej-technologies-eula.html", + "license": "ej-technologies-eula.LICENSE" + }, + { + "license_key": "ekiga-exception-2.0-plus", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-ekiga-exception-2.0-plus", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "ekiga-exception-2.0-plus.json", + "yaml": "ekiga-exception-2.0-plus.yml", + "html": "ekiga-exception-2.0-plus.html", + "license": "ekiga-exception-2.0-plus.LICENSE" + }, + { + "license_key": "ekioh", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "ekioh.json", + "yaml": "ekioh.yml", + "html": "ekioh.html", + "license": "ekioh.LICENSE" + }, + { + "license_key": "elastic-license-2018", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-elastic-license-2018", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "elastic-license-2018.json", + "yaml": "elastic-license-2018.yml", + "html": "elastic-license-2018.html", + "license": "elastic-license-2018.LICENSE" + }, + { + "license_key": "elastic-license-v2", + "category": "Source-available", + "spdx_license_key": "Elastic-2.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-elastic-license-v2" + ], + "is_exception": false, + "is_deprecated": false, + "json": "elastic-license-v2.json", + "yaml": "elastic-license-v2.yml", + "html": "elastic-license-v2.html", + "license": "elastic-license-v2.LICENSE" + }, + { + "license_key": "elib-gpl", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-elib-gpl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "elib-gpl.json", + "yaml": "elib-gpl.yml", + "html": "elib-gpl.html", + "license": "elib-gpl.LICENSE" + }, + { + "license_key": "ellis-lab", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ellis-lab", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ellis-lab.json", + "yaml": "ellis-lab.yml", + "html": "ellis-lab.html", + "license": "ellis-lab.LICENSE" + }, + { + "license_key": "embedthis-evaluation", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-embedthis-evaluation", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "embedthis-evaluation.json", + "yaml": "embedthis-evaluation.yml", + "html": "embedthis-evaluation.html", + "license": "embedthis-evaluation.LICENSE" + }, + { + "license_key": "embedthis-extension", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-embedthis-extension", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "embedthis-extension.json", + "yaml": "embedthis-extension.yml", + "html": "embedthis-extension.html", + "license": "embedthis-extension.LICENSE" + }, + { + "license_key": "embedthis-tou-2022", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-embedthis-tou-2022", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "embedthis-tou-2022.json", + "yaml": "embedthis-tou-2022.yml", + "html": "embedthis-tou-2022.html", + "license": "embedthis-tou-2022.LICENSE" + }, + { + "license_key": "emit", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-emit", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "emit.json", + "yaml": "emit.yml", + "html": "emit.html", + "license": "emit.LICENSE" + }, + { + "license_key": "emx-library", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-emx-library", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "emx-library.json", + "yaml": "emx-library.yml", + "html": "emx-library.html", + "license": "emx-library.LICENSE" + }, + { + "license_key": "energyplus", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-energyplus-2023", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "energyplus.json", + "yaml": "energyplus.yml", + "html": "energyplus.html", + "license": "energyplus.LICENSE" + }, + { + "license_key": "energyplus-bsd", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-energyplus-bsd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "energyplus-bsd.json", + "yaml": "energyplus-bsd.yml", + "html": "energyplus-bsd.html", + "license": "energyplus-bsd.LICENSE" + }, + { + "license_key": "enhydra-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-enhydra-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "enhydra-1.1.json", + "yaml": "enhydra-1.1.yml", + "html": "enhydra-1.1.html", + "license": "enhydra-1.1.LICENSE" + }, + { + "license_key": "enlightenment", + "category": "Permissive", + "spdx_license_key": "MIT-advertising", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "enlightenment.json", + "yaml": "enlightenment.yml", + "html": "enlightenment.html", + "license": "enlightenment.LICENSE" + }, + { + "license_key": "enna", + "category": "Permissive", + "spdx_license_key": "MIT-enna", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "enna.json", + "yaml": "enna.yml", + "html": "enna.html", + "license": "enna.LICENSE" + }, + { + "license_key": "entessa-1.0", + "category": "Permissive", + "spdx_license_key": "Entessa", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "entessa-1.0.json", + "yaml": "entessa-1.0.yml", + "html": "entessa-1.0.html", + "license": "entessa-1.0.LICENSE" + }, + { + "license_key": "epaperpress", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-epaperpress", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "epaperpress.json", + "yaml": "epaperpress.yml", + "html": "epaperpress.html", + "license": "epaperpress.LICENSE" + }, + { + "license_key": "epics", + "category": "Permissive", + "spdx_license_key": "EPICS", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "epics.json", + "yaml": "epics.yml", + "html": "epics.html", + "license": "epics.LICENSE" + }, + { + "license_key": "epl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "EPL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "epl-1.0.json", + "yaml": "epl-1.0.yml", + "html": "epl-1.0.html", + "license": "epl-1.0.LICENSE" + }, + { + "license_key": "epl-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "EPL-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "epl-2.0.json", + "yaml": "epl-2.0.yml", + "html": "epl-2.0.html", + "license": "epl-2.0.LICENSE" + }, + { + "license_key": "epo-osl-2005.1", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-epo-osl-2005.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "epo-osl-2005.1.json", + "yaml": "epo-osl-2005.1.yml", + "html": "epo-osl-2005.1.html", + "license": "epo-osl-2005.1.LICENSE" + }, + { + "license_key": "eric-glass", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-eric-glass", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "eric-glass.json", + "yaml": "eric-glass.yml", + "html": "eric-glass.html", + "license": "eric-glass.LICENSE" + }, + { + "license_key": "erlangpl-1.1", + "category": "Copyleft", + "spdx_license_key": "ErlPL-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "erlangpl-1.1.json", + "yaml": "erlangpl-1.1.yml", + "html": "erlangpl-1.1.html", + "license": "erlangpl-1.1.LICENSE" + }, + { + "license_key": "errbot-exception", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-errbot-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "errbot-exception.json", + "yaml": "errbot-exception.yml", + "html": "errbot-exception.html", + "license": "errbot-exception.LICENSE" + }, + { + "license_key": "esri", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-esri", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "esri.json", + "yaml": "esri.yml", + "html": "esri.html", + "license": "esri.LICENSE" + }, + { + "license_key": "esri-devkit", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-esri-devkit", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "esri-devkit.json", + "yaml": "esri-devkit.yml", + "html": "esri-devkit.html", + "license": "esri-devkit.LICENSE" + }, + { + "license_key": "etalab-2.0", + "category": "Permissive", + "spdx_license_key": "etalab-2.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-etalab-2.0", + "LicenseRef-scancode-etalab-2.0-fr" + ], + "is_exception": false, + "is_deprecated": false, + "json": "etalab-2.0.json", + "yaml": "etalab-2.0.yml", + "html": "etalab-2.0.html", + "license": "etalab-2.0.LICENSE" + }, + { + "license_key": "etalab-2.0-en", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-etalab-2.0-en", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "etalab-2.0-en.json", + "yaml": "etalab-2.0-en.yml", + "html": "etalab-2.0-en.html", + "license": "etalab-2.0-en.LICENSE" + }, + { + "license_key": "etalab-2.0-fr", + "category": "Unstated License", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "etalab-2.0-fr.json", + "yaml": "etalab-2.0-fr.yml", + "html": "etalab-2.0-fr.html", + "license": "etalab-2.0-fr.LICENSE" + }, + { + "license_key": "eu-datagrid", + "category": "Permissive", + "spdx_license_key": "EUDatagrid", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "eu-datagrid.json", + "yaml": "eu-datagrid.yml", + "html": "eu-datagrid.html", + "license": "eu-datagrid.LICENSE" + }, + { + "license_key": "eupl-1.0", + "category": "Copyleft", + "spdx_license_key": "EUPL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "eupl-1.0.json", + "yaml": "eupl-1.0.yml", + "html": "eupl-1.0.html", + "license": "eupl-1.0.LICENSE" + }, + { + "license_key": "eupl-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "EUPL-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "eupl-1.1.json", + "yaml": "eupl-1.1.yml", + "html": "eupl-1.1.html", + "license": "eupl-1.1.LICENSE" + }, + { + "license_key": "eupl-1.2", + "category": "Copyleft Limited", + "spdx_license_key": "EUPL-1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "eupl-1.2.json", + "yaml": "eupl-1.2.yml", + "html": "eupl-1.2.html", + "license": "eupl-1.2.LICENSE" + }, + { + "license_key": "eurosym", + "category": "Copyleft Limited", + "spdx_license_key": "Eurosym", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "eurosym.json", + "yaml": "eurosym.yml", + "html": "eurosym.html", + "license": "eurosym.LICENSE" + }, + { + "license_key": "examdiff", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-examdiff", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "examdiff.json", + "yaml": "examdiff.yml", + "html": "examdiff.html", + "license": "examdiff.LICENSE" + }, + { + "license_key": "excelsior-jet-runtime", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-excelsior-jet-runtime", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "excelsior-jet-runtime.json", + "yaml": "excelsior-jet-runtime.yml", + "html": "excelsior-jet-runtime.html", + "license": "excelsior-jet-runtime.LICENSE" + }, + { + "license_key": "fabien-tassin", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-fabien-tassin", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "fabien-tassin.json", + "yaml": "fabien-tassin.yml", + "html": "fabien-tassin.html", + "license": "fabien-tassin.LICENSE" + }, + { + "license_key": "fabric-agreement-2017", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-fabric-agreement-2017", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "fabric-agreement-2017.json", + "yaml": "fabric-agreement-2017.yml", + "html": "fabric-agreement-2017.html", + "license": "fabric-agreement-2017.LICENSE" + }, + { + "license_key": "facebook-nuclide", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-facebook-nuclide", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "facebook-nuclide.json", + "yaml": "facebook-nuclide.yml", + "html": "facebook-nuclide.html", + "license": "facebook-nuclide.LICENSE" + }, + { + "license_key": "facebook-patent-rights-2", + "category": "Patent License", + "spdx_license_key": "LicenseRef-scancode-facebook-patent-rights-2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "facebook-patent-rights-2.json", + "yaml": "facebook-patent-rights-2.yml", + "html": "facebook-patent-rights-2.html", + "license": "facebook-patent-rights-2.LICENSE" + }, + { + "license_key": "facebook-software-license", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-facebook-software-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "facebook-software-license.json", + "yaml": "facebook-software-license.yml", + "html": "facebook-software-license.html", + "license": "facebook-software-license.LICENSE" + }, + { + "license_key": "fair", + "category": "Permissive", + "spdx_license_key": "Fair", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "fair.json", + "yaml": "fair.yml", + "html": "fair.html", + "license": "fair.LICENSE" + }, + { + "license_key": "fair-source-0.9", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-fair-source-0.9", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "fair-source-0.9.json", + "yaml": "fair-source-0.9.yml", + "html": "fair-source-0.9.html", + "license": "fair-source-0.9.LICENSE" + }, + { + "license_key": "fancyzoom", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-fancyzoom", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "fancyzoom.json", + "yaml": "fancyzoom.yml", + "html": "fancyzoom.html", + "license": "fancyzoom.LICENSE" + }, + { + "license_key": "far-manager-exception", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-far-manager-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "far-manager-exception.json", + "yaml": "far-manager-exception.yml", + "html": "far-manager-exception.html", + "license": "far-manager-exception.LICENSE" + }, + { + "license_key": "fastbuild-2012-2020", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-fastbuild-2012-2020", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "fastbuild-2012-2020.json", + "yaml": "fastbuild-2012-2020.yml", + "html": "fastbuild-2012-2020.html", + "license": "fastbuild-2012-2020.LICENSE" + }, + { + "license_key": "fastcgi-devkit", + "category": "Permissive", + "spdx_license_key": "OML", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "fastcgi-devkit.json", + "yaml": "fastcgi-devkit.yml", + "html": "fastcgi-devkit.html", + "license": "fastcgi-devkit.LICENSE" + }, + { + "license_key": "fatfs", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-fatfs", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "fatfs.json", + "yaml": "fatfs.yml", + "html": "fatfs.html", + "license": "fatfs.LICENSE" + }, + { + "license_key": "fawkes-runtime-exception", + "category": "Copyleft Limited", + "spdx_license_key": "Fawkes-Runtime-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "fawkes-runtime-exception.json", + "yaml": "fawkes-runtime-exception.yml", + "html": "fawkes-runtime-exception.html", + "license": "fawkes-runtime-exception.LICENSE" + }, + { + "license_key": "fbm", + "category": "Permissive", + "spdx_license_key": "FBM", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "fbm.json", + "yaml": "fbm.yml", + "html": "fbm.html", + "license": "fbm.LICENSE" + }, + { + "license_key": "ferguson-twofish", + "category": "Permissive", + "spdx_license_key": "Ferguson-Twofish", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ferguson-twofish.json", + "yaml": "ferguson-twofish.yml", + "html": "ferguson-twofish.html", + "license": "ferguson-twofish.LICENSE" + }, + { + "license_key": "fftpack-2004", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-fftpack-2004", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "fftpack-2004.json", + "yaml": "fftpack-2004.yml", + "html": "fftpack-2004.html", + "license": "fftpack-2004.LICENSE" + }, + { + "license_key": "filament-group-mit", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-filament-group-mit", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "filament-group-mit.json", + "yaml": "filament-group-mit.yml", + "html": "filament-group-mit.html", + "license": "filament-group-mit.LICENSE" + }, + { + "license_key": "first-works-appreciative-1.2", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-first-works-appreciative-1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "first-works-appreciative-1.2.json", + "yaml": "first-works-appreciative-1.2.yml", + "html": "first-works-appreciative-1.2.html", + "license": "first-works-appreciative-1.2.LICENSE" + }, + { + "license_key": "flex-2.5", + "category": "Permissive", + "spdx_license_key": "BSD-3-Clause-flex", + "other_spdx_license_keys": [ + "LicenseRef-scancode-flex-2.5" + ], + "is_exception": false, + "is_deprecated": false, + "json": "flex-2.5.json", + "yaml": "flex-2.5.yml", + "html": "flex-2.5.html", + "license": "flex-2.5.LICENSE" + }, + { + "license_key": "flex2sdk", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-flex2sdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "flex2sdk.json", + "yaml": "flex2sdk.yml", + "html": "flex2sdk.html", + "license": "flex2sdk.LICENSE" + }, + { + "license_key": "flora-1.1", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-flora-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "flora-1.1.json", + "yaml": "flora-1.1.yml", + "html": "flora-1.1.html", + "license": "flora-1.1.LICENSE" + }, + { + "license_key": "flowplayer-gpl-3.0", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-flowplayer-gpl-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "flowplayer-gpl-3.0.json", + "yaml": "flowplayer-gpl-3.0.yml", + "html": "flowplayer-gpl-3.0.html", + "license": "flowplayer-gpl-3.0.LICENSE" + }, + { + "license_key": "fltk-exception-lgpl-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "FLTK-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "fltk-exception-lgpl-2.0.json", + "yaml": "fltk-exception-lgpl-2.0.yml", + "html": "fltk-exception-lgpl-2.0.html", + "license": "fltk-exception-lgpl-2.0.LICENSE" + }, + { + "license_key": "font-alias", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-font-alias", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "font-alias.json", + "yaml": "font-alias.yml", + "html": "font-alias.html", + "license": "font-alias.LICENSE" + }, + { + "license_key": "font-exception-gpl", + "category": "Copyleft Limited", + "spdx_license_key": "Font-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "font-exception-gpl.json", + "yaml": "font-exception-gpl.yml", + "html": "font-exception-gpl.html", + "license": "font-exception-gpl.LICENSE" + }, + { + "license_key": "foobar2000", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-foobar2000", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "foobar2000.json", + "yaml": "foobar2000.yml", + "html": "foobar2000.html", + "license": "foobar2000.LICENSE" + }, + { + "license_key": "fpdf", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-fpdf", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "fpdf.json", + "yaml": "fpdf.yml", + "html": "fpdf.html", + "license": "fpdf.LICENSE" + }, + { + "license_key": "fpl", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-fpl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "fpl.json", + "yaml": "fpl.yml", + "html": "fpl.html", + "license": "fpl.LICENSE" + }, + { + "license_key": "fplot", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-fplot", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "fplot.json", + "yaml": "fplot.yml", + "html": "fplot.html", + "license": "fplot.LICENSE" + }, + { + "license_key": "frameworx-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "Frameworx-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "frameworx-1.0.json", + "yaml": "frameworx-1.0.yml", + "html": "frameworx-1.0.html", + "license": "frameworx-1.0.LICENSE" + }, + { + "license_key": "fraunhofer-fdk-aac-codec", + "category": "Copyleft Limited", + "spdx_license_key": "FDK-AAC", + "other_spdx_license_keys": [ + "LicenseRef-scancode-fraunhofer-fdk-aac-codec" + ], + "is_exception": false, + "is_deprecated": false, + "json": "fraunhofer-fdk-aac-codec.json", + "yaml": "fraunhofer-fdk-aac-codec.yml", + "html": "fraunhofer-fdk-aac-codec.html", + "license": "fraunhofer-fdk-aac-codec.LICENSE" + }, + { + "license_key": "fraunhofer-iso-14496-10", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-fraunhofer-iso-14496-10", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "fraunhofer-iso-14496-10.json", + "yaml": "fraunhofer-iso-14496-10.yml", + "html": "fraunhofer-iso-14496-10.html", + "license": "fraunhofer-iso-14496-10.LICENSE" + }, + { + "license_key": "free-art-1.3", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-free-art-1.3", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "free-art-1.3.json", + "yaml": "free-art-1.3.yml", + "html": "free-art-1.3.html", + "license": "free-art-1.3.LICENSE" + }, + { + "license_key": "free-fork", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-free-fork", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "free-fork.json", + "yaml": "free-fork.yml", + "html": "free-fork.html", + "license": "free-fork.LICENSE" + }, + { + "license_key": "free-surfer-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-free-surfer-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "free-surfer-1.0.json", + "yaml": "free-surfer-1.0.yml", + "html": "free-surfer-1.0.html", + "license": "free-surfer-1.0.LICENSE" + }, + { + "license_key": "free-unknown", + "category": "Unstated License", + "spdx_license_key": "LicenseRef-scancode-free-unknown", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "free-unknown.json", + "yaml": "free-unknown.yml", + "html": "free-unknown.html", + "license": "free-unknown.LICENSE" + }, + { + "license_key": "freebsd-boot", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-freebsd-boot", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "freebsd-boot.json", + "yaml": "freebsd-boot.yml", + "html": "freebsd-boot.html", + "license": "freebsd-boot.LICENSE" + }, + { + "license_key": "freebsd-doc", + "category": "Permissive", + "spdx_license_key": "FreeBSD-DOC", + "other_spdx_license_keys": [ + "LicenseRef-scancode-freebsd-doc" + ], + "is_exception": false, + "is_deprecated": false, + "json": "freebsd-doc.json", + "yaml": "freebsd-doc.yml", + "html": "freebsd-doc.html", + "license": "freebsd-doc.LICENSE" + }, + { + "license_key": "freebsd-first", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-freebsd-first", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "freebsd-first.json", + "yaml": "freebsd-first.yml", + "html": "freebsd-first.html", + "license": "freebsd-first.LICENSE" + }, + { + "license_key": "freeimage-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "FreeImage", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "freeimage-1.0.json", + "yaml": "freeimage-1.0.yml", + "html": "freeimage-1.0.html", + "license": "freeimage-1.0.LICENSE" + }, + { + "license_key": "freemarker", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-freemarker", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "freemarker.json", + "yaml": "freemarker.yml", + "html": "freemarker.html", + "license": "freemarker.LICENSE" + }, + { + "license_key": "freertos-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "freertos-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "freertos-exception-2.0.json", + "yaml": "freertos-exception-2.0.yml", + "html": "freertos-exception-2.0.html", + "license": "freertos-exception-2.0.LICENSE" + }, + { + "license_key": "freetts", + "category": "Permissive", + "spdx_license_key": "MIT-Festival", + "other_spdx_license_keys": [ + "LicenseRef-scancode-freetts" + ], + "is_exception": false, + "is_deprecated": false, + "json": "freetts.json", + "yaml": "freetts.yml", + "html": "freetts.html", + "license": "freetts.LICENSE" + }, + { + "license_key": "freetype", + "category": "Permissive", + "spdx_license_key": "FTL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "freetype.json", + "yaml": "freetype.yml", + "html": "freetype.html", + "license": "freetype.LICENSE" + }, + { + "license_key": "freetype-patent", + "category": "Patent License", + "spdx_license_key": "LicenseRef-scancode-freetype-patent", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "freetype-patent.json", + "yaml": "freetype-patent.yml", + "html": "freetype-patent.html", + "license": "freetype-patent.LICENSE" + }, + { + "license_key": "froala-owdl-1.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-froala-owdl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "froala-owdl-1.0.json", + "yaml": "froala-owdl-1.0.yml", + "html": "froala-owdl-1.0.html", + "license": "froala-owdl-1.0.LICENSE" + }, + { + "license_key": "frontier-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-frontier-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "frontier-1.0.json", + "yaml": "frontier-1.0.yml", + "html": "frontier-1.0.html", + "license": "frontier-1.0.LICENSE" + }, + { + "license_key": "fsf-ap", + "category": "Permissive", + "spdx_license_key": "FSFAP", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "fsf-ap.json", + "yaml": "fsf-ap.yml", + "html": "fsf-ap.html", + "license": "fsf-ap.LICENSE" + }, + { + "license_key": "fsf-free", + "category": "Public Domain", + "spdx_license_key": "FSFUL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "fsf-free.json", + "yaml": "fsf-free.yml", + "html": "fsf-free.html", + "license": "fsf-free.LICENSE" + }, + { + "license_key": "fsf-notice", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-fsf-notice", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "fsf-notice.json", + "yaml": "fsf-notice.yml", + "html": "fsf-notice.html", + "license": "fsf-notice.LICENSE" + }, + { + "license_key": "fsf-unlimited", + "category": "Permissive", + "spdx_license_key": "FSFULLR", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "fsf-unlimited.json", + "yaml": "fsf-unlimited.yml", + "html": "fsf-unlimited.html", + "license": "fsf-unlimited.LICENSE" + }, + { + "license_key": "fsf-unlimited-no-warranty", + "category": "Permissive", + "spdx_license_key": "FSFULLRWD", + "other_spdx_license_keys": [ + "LicenseRef-scancode-fsf-unlimited-no-warranty" + ], + "is_exception": false, + "is_deprecated": false, + "json": "fsf-unlimited-no-warranty.json", + "yaml": "fsf-unlimited-no-warranty.yml", + "html": "fsf-unlimited-no-warranty.html", + "license": "fsf-unlimited-no-warranty.LICENSE" + }, + { + "license_key": "fsfap-no-warranty-disclaimer", + "category": "Permissive", + "spdx_license_key": "FSFAP-no-warranty-disclaimer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "fsfap-no-warranty-disclaimer.json", + "yaml": "fsfap-no-warranty-disclaimer.yml", + "html": "fsfap-no-warranty-disclaimer.html", + "license": "fsfap-no-warranty-disclaimer.LICENSE" + }, + { + "license_key": "fsl-1.0-apache-2.0", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-fsl-1.0-apache-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "fsl-1.0-apache-2.0.json", + "yaml": "fsl-1.0-apache-2.0.yml", + "html": "fsl-1.0-apache-2.0.html", + "license": "fsl-1.0-apache-2.0.LICENSE" + }, + { + "license_key": "fsl-1.0-mit", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-fsl-1.0-mit", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "fsl-1.0-mit.json", + "yaml": "fsl-1.0-mit.yml", + "html": "fsl-1.0-mit.html", + "license": "fsl-1.0-mit.LICENSE" + }, + { + "license_key": "ftdi", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ftdi", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ftdi.json", + "yaml": "ftdi.yml", + "html": "ftdi.html", + "license": "ftdi.LICENSE" + }, + { + "license_key": "ftpbean", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ftpbean", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ftpbean.json", + "yaml": "ftpbean.yml", + "html": "ftpbean.html", + "license": "ftpbean.LICENSE" + }, + { + "license_key": "fujion-exception-to-apache-2.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-fujion-exception-to-apache-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "fujion-exception-to-apache-2.0.json", + "yaml": "fujion-exception-to-apache-2.0.yml", + "html": "fujion-exception-to-apache-2.0.html", + "license": "fujion-exception-to-apache-2.0.LICENSE" + }, + { + "license_key": "furuseth", + "category": "Permissive", + "spdx_license_key": "Furuseth", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "furuseth.json", + "yaml": "furuseth.yml", + "html": "furuseth.html", + "license": "furuseth.LICENSE" + }, + { + "license_key": "fwlw", + "category": "Permissive", + "spdx_license_key": "fwlw", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "fwlw.json", + "yaml": "fwlw.yml", + "html": "fwlw.html", + "license": "fwlw.LICENSE" + }, + { + "license_key": "g10-permissive", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-g10-permissive", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "g10-permissive.json", + "yaml": "g10-permissive.yml", + "html": "g10-permissive.html", + "license": "g10-permissive.LICENSE" + }, + { + "license_key": "gareth-mccaughan", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-gareth-mccaughan", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gareth-mccaughan.json", + "yaml": "gareth-mccaughan.yml", + "html": "gareth-mccaughan.html", + "license": "gareth-mccaughan.LICENSE" + }, + { + "license_key": "gary-s-brown", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-gary-s-brown", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gary-s-brown.json", + "yaml": "gary-s-brown.yml", + "html": "gary-s-brown.html", + "license": "gary-s-brown.LICENSE" + }, + { + "license_key": "gatling-highcharts", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-gatling-highcharts", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gatling-highcharts.json", + "yaml": "gatling-highcharts.yml", + "html": "gatling-highcharts.html", + "license": "gatling-highcharts.LICENSE" + }, + { + "license_key": "gcc-compiler-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-gcc-compiler-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "gcc-compiler-exception-2.0.json", + "yaml": "gcc-compiler-exception-2.0.yml", + "html": "gcc-compiler-exception-2.0.html", + "license": "gcc-compiler-exception-2.0.LICENSE" + }, + { + "license_key": "gcc-exception-2.0-note", + "category": "Copyleft Limited", + "spdx_license_key": "GCC-exception-2.0-note", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "gcc-exception-2.0-note.json", + "yaml": "gcc-exception-2.0-note.yml", + "html": "gcc-exception-2.0-note.html", + "license": "gcc-exception-2.0-note.LICENSE" + }, + { + "license_key": "gcc-exception-3.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-gcc-exception-3.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-exception-3.0" + ], + "is_exception": true, + "is_deprecated": false, + "json": "gcc-exception-3.0.json", + "yaml": "gcc-exception-3.0.yml", + "html": "gcc-exception-3.0.html", + "license": "gcc-exception-3.0.LICENSE" + }, + { + "license_key": "gcc-exception-3.1", + "category": "Copyleft Limited", + "spdx_license_key": "GCC-exception-3.1", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "gcc-exception-3.1.json", + "yaml": "gcc-exception-3.1.yml", + "html": "gcc-exception-3.1.html", + "license": "gcc-exception-3.1.LICENSE" + }, + { + "license_key": "gcc-linking-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "GCC-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "gcc-linking-exception-2.0.json", + "yaml": "gcc-linking-exception-2.0.yml", + "html": "gcc-linking-exception-2.0.html", + "license": "gcc-linking-exception-2.0.LICENSE" + }, + { + "license_key": "gcel-2022", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-gcel-2022", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gcel-2022.json", + "yaml": "gcel-2022.yml", + "html": "gcel-2022.html", + "license": "gcel-2022.LICENSE" + }, + { + "license_key": "gco-v3.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-gco-v3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gco-v3.0.json", + "yaml": "gco-v3.0.yml", + "html": "gco-v3.0.html", + "license": "gco-v3.0.LICENSE" + }, + { + "license_key": "gcr-docs", + "category": "Copyleft Limited", + "spdx_license_key": "GCR-docs", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gcr-docs.json", + "yaml": "gcr-docs.yml", + "html": "gcr-docs.html", + "license": "gcr-docs.LICENSE" + }, + { + "license_key": "gdcl", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-gdcl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gdcl.json", + "yaml": "gdcl.yml", + "html": "gdcl.html", + "license": "gdcl.LICENSE" + }, + { + "license_key": "generic-cla", + "category": "CLA", + "spdx_license_key": "LicenseRef-scancode-generic-cla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "generic-cla.json", + "yaml": "generic-cla.yml", + "html": "generic-cla.html", + "license": "generic-cla.LICENSE" + }, + { + "license_key": "generic-exception", + "category": "Unstated License", + "spdx_license_key": "LicenseRef-scancode-generic-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "generic-exception.json", + "yaml": "generic-exception.yml", + "html": "generic-exception.html", + "license": "generic-exception.LICENSE" + }, + { + "license_key": "generic-export-compliance", + "category": "Unstated License", + "spdx_license_key": "LicenseRef-scancode-generic-export-compliance", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "generic-export-compliance.json", + "yaml": "generic-export-compliance.yml", + "html": "generic-export-compliance.html", + "license": "generic-export-compliance.LICENSE" + }, + { + "license_key": "generic-loop", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-generic-loop", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "generic-loop.json", + "yaml": "generic-loop.yml", + "html": "generic-loop.html", + "license": "generic-loop.LICENSE" + }, + { + "license_key": "generic-tos", + "category": "Unstated License", + "spdx_license_key": "LicenseRef-scancode-generic-tos", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "generic-tos.json", + "yaml": "generic-tos.yml", + "html": "generic-tos.html", + "license": "generic-tos.LICENSE" + }, + { + "license_key": "generic-trademark", + "category": "Unstated License", + "spdx_license_key": "LicenseRef-scancode-generic-trademark", + "other_spdx_license_keys": [ + "LicenseRef-scancode-trademark-notice" + ], + "is_exception": false, + "is_deprecated": false, + "json": "generic-trademark.json", + "yaml": "generic-trademark.yml", + "html": "generic-trademark.html", + "license": "generic-trademark.LICENSE" + }, + { + "license_key": "genivia-gsoap", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-genivia-gsoap", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "genivia-gsoap.json", + "yaml": "genivia-gsoap.yml", + "html": "genivia-gsoap.html", + "license": "genivia-gsoap.LICENSE" + }, + { + "license_key": "genode-agpl-3.0-exception", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-genode-agpl-3.0-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "genode-agpl-3.0-exception.json", + "yaml": "genode-agpl-3.0-exception.yml", + "html": "genode-agpl-3.0-exception.html", + "license": "genode-agpl-3.0-exception.LICENSE" + }, + { + "license_key": "geoff-kuenning-1993", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-geoff-kuenning-1993", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "geoff-kuenning-1993.json", + "yaml": "geoff-kuenning-1993.yml", + "html": "geoff-kuenning-1993.html", + "license": "geoff-kuenning-1993.LICENSE" + }, + { + "license_key": "geoserver-exception-2.0-plus", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-geoserver-exception-2.0-plus", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "geoserver-exception-2.0-plus.json", + "yaml": "geoserver-exception-2.0-plus.yml", + "html": "geoserver-exception-2.0-plus.html", + "license": "geoserver-exception-2.0-plus.LICENSE" + }, + { + "license_key": "gfdl-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "GFDL-1.1-only", + "other_spdx_license_keys": [ + "GFDL-1.1" + ], + "is_exception": false, + "is_deprecated": false, + "json": "gfdl-1.1.json", + "yaml": "gfdl-1.1.yml", + "html": "gfdl-1.1.html", + "license": "gfdl-1.1.LICENSE" + }, + { + "license_key": "gfdl-1.1-invariants-only", + "category": "Copyleft Limited", + "spdx_license_key": "GFDL-1.1-invariants-only", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gfdl-1.1-invariants-only.json", + "yaml": "gfdl-1.1-invariants-only.yml", + "html": "gfdl-1.1-invariants-only.html", + "license": "gfdl-1.1-invariants-only.LICENSE" + }, + { + "license_key": "gfdl-1.1-invariants-or-later", + "category": "Copyleft Limited", + "spdx_license_key": "GFDL-1.1-invariants-or-later", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gfdl-1.1-invariants-or-later.json", + "yaml": "gfdl-1.1-invariants-or-later.yml", + "html": "gfdl-1.1-invariants-or-later.html", + "license": "gfdl-1.1-invariants-or-later.LICENSE" + }, + { + "license_key": "gfdl-1.1-no-invariants-only", + "category": "Copyleft Limited", + "spdx_license_key": "GFDL-1.1-no-invariants-only", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gfdl-1.1-no-invariants-only.json", + "yaml": "gfdl-1.1-no-invariants-only.yml", + "html": "gfdl-1.1-no-invariants-only.html", + "license": "gfdl-1.1-no-invariants-only.LICENSE" + }, + { + "license_key": "gfdl-1.1-no-invariants-or-later", + "category": "Copyleft Limited", + "spdx_license_key": "GFDL-1.1-no-invariants-or-later", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gfdl-1.1-no-invariants-or-later.json", + "yaml": "gfdl-1.1-no-invariants-or-later.yml", + "html": "gfdl-1.1-no-invariants-or-later.html", + "license": "gfdl-1.1-no-invariants-or-later.LICENSE" + }, + { + "license_key": "gfdl-1.1-plus", + "category": "Copyleft Limited", + "spdx_license_key": "GFDL-1.1-or-later", + "other_spdx_license_keys": [ + "GFDL-1.1+" + ], + "is_exception": false, + "is_deprecated": false, + "json": "gfdl-1.1-plus.json", + "yaml": "gfdl-1.1-plus.yml", + "html": "gfdl-1.1-plus.html", + "license": "gfdl-1.1-plus.LICENSE" + }, + { + "license_key": "gfdl-1.2", + "category": "Copyleft Limited", + "spdx_license_key": "GFDL-1.2-only", + "other_spdx_license_keys": [ + "GFDL-1.2" + ], + "is_exception": false, + "is_deprecated": false, + "json": "gfdl-1.2.json", + "yaml": "gfdl-1.2.yml", + "html": "gfdl-1.2.html", + "license": "gfdl-1.2.LICENSE" + }, + { + "license_key": "gfdl-1.2-invariants-only", + "category": "Copyleft Limited", + "spdx_license_key": "GFDL-1.2-invariants-only", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gfdl-1.2-invariants-only.json", + "yaml": "gfdl-1.2-invariants-only.yml", + "html": "gfdl-1.2-invariants-only.html", + "license": "gfdl-1.2-invariants-only.LICENSE" + }, + { + "license_key": "gfdl-1.2-invariants-or-later", + "category": "Copyleft Limited", + "spdx_license_key": "GFDL-1.2-invariants-or-later", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gfdl-1.2-invariants-or-later.json", + "yaml": "gfdl-1.2-invariants-or-later.yml", + "html": "gfdl-1.2-invariants-or-later.html", + "license": "gfdl-1.2-invariants-or-later.LICENSE" + }, + { + "license_key": "gfdl-1.2-no-invariants-only", + "category": "Copyleft Limited", + "spdx_license_key": "GFDL-1.2-no-invariants-only", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gfdl-1.2-no-invariants-only.json", + "yaml": "gfdl-1.2-no-invariants-only.yml", + "html": "gfdl-1.2-no-invariants-only.html", + "license": "gfdl-1.2-no-invariants-only.LICENSE" + }, + { + "license_key": "gfdl-1.2-no-invariants-or-later", + "category": "Copyleft Limited", + "spdx_license_key": "GFDL-1.2-no-invariants-or-later", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gfdl-1.2-no-invariants-or-later.json", + "yaml": "gfdl-1.2-no-invariants-or-later.yml", + "html": "gfdl-1.2-no-invariants-or-later.html", + "license": "gfdl-1.2-no-invariants-or-later.LICENSE" + }, + { + "license_key": "gfdl-1.2-plus", + "category": "Copyleft Limited", + "spdx_license_key": "GFDL-1.2-or-later", + "other_spdx_license_keys": [ + "GFDL-1.2+" + ], + "is_exception": false, + "is_deprecated": false, + "json": "gfdl-1.2-plus.json", + "yaml": "gfdl-1.2-plus.yml", + "html": "gfdl-1.2-plus.html", + "license": "gfdl-1.2-plus.LICENSE" + }, + { + "license_key": "gfdl-1.3", + "category": "Copyleft Limited", + "spdx_license_key": "GFDL-1.3-only", + "other_spdx_license_keys": [ + "GFDL-1.3" + ], + "is_exception": false, + "is_deprecated": false, + "json": "gfdl-1.3.json", + "yaml": "gfdl-1.3.yml", + "html": "gfdl-1.3.html", + "license": "gfdl-1.3.LICENSE" + }, + { + "license_key": "gfdl-1.3-invariants-only", + "category": "Copyleft Limited", + "spdx_license_key": "GFDL-1.3-invariants-only", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gfdl-1.3-invariants-only.json", + "yaml": "gfdl-1.3-invariants-only.yml", + "html": "gfdl-1.3-invariants-only.html", + "license": "gfdl-1.3-invariants-only.LICENSE" + }, + { + "license_key": "gfdl-1.3-invariants-or-later", + "category": "Copyleft Limited", + "spdx_license_key": "GFDL-1.3-invariants-or-later", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gfdl-1.3-invariants-or-later.json", + "yaml": "gfdl-1.3-invariants-or-later.yml", + "html": "gfdl-1.3-invariants-or-later.html", + "license": "gfdl-1.3-invariants-or-later.LICENSE" + }, + { + "license_key": "gfdl-1.3-no-invariants-only", + "category": "Copyleft Limited", + "spdx_license_key": "GFDL-1.3-no-invariants-only", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gfdl-1.3-no-invariants-only.json", + "yaml": "gfdl-1.3-no-invariants-only.yml", + "html": "gfdl-1.3-no-invariants-only.html", + "license": "gfdl-1.3-no-invariants-only.LICENSE" + }, + { + "license_key": "gfdl-1.3-no-invariants-or-later", + "category": "Copyleft Limited", + "spdx_license_key": "GFDL-1.3-no-invariants-or-later", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gfdl-1.3-no-invariants-or-later.json", + "yaml": "gfdl-1.3-no-invariants-or-later.yml", + "html": "gfdl-1.3-no-invariants-or-later.html", + "license": "gfdl-1.3-no-invariants-or-later.LICENSE" + }, + { + "license_key": "gfdl-1.3-plus", + "category": "Copyleft Limited", + "spdx_license_key": "GFDL-1.3-or-later", + "other_spdx_license_keys": [ + "GFDL-1.3+" + ], + "is_exception": false, + "is_deprecated": false, + "json": "gfdl-1.3-plus.json", + "yaml": "gfdl-1.3-plus.yml", + "html": "gfdl-1.3-plus.html", + "license": "gfdl-1.3-plus.LICENSE" + }, + { + "license_key": "ghostpdl-permissive", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ghostpdl-permissive", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ghostpdl-permissive.json", + "yaml": "ghostpdl-permissive.yml", + "html": "ghostpdl-permissive.html", + "license": "ghostpdl-permissive.LICENSE" + }, + { + "license_key": "ghostscript-1988", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-ghostscript-1988", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ghostscript-1988.json", + "yaml": "ghostscript-1988.yml", + "html": "ghostscript-1988.html", + "license": "ghostscript-1988.LICENSE" + }, + { + "license_key": "github-codeql-terms-2020", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-github-codeql-terms-2020", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "github-codeql-terms-2020.json", + "yaml": "github-codeql-terms-2020.yml", + "html": "github-codeql-terms-2020.html", + "license": "github-codeql-terms-2020.LICENSE" + }, + { + "license_key": "gitlab-ee", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-gitlab-ee", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gitlab-ee.json", + "yaml": "gitlab-ee.yml", + "html": "gitlab-ee.html", + "license": "gitlab-ee.LICENSE" + }, + { + "license_key": "gitpod-self-hosted-free-2020", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-gitpod-self-hosted-free-2020", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gitpod-self-hosted-free-2020.json", + "yaml": "gitpod-self-hosted-free-2020.yml", + "html": "gitpod-self-hosted-free-2020.html", + "license": "gitpod-self-hosted-free-2020.LICENSE" + }, + { + "license_key": "gl2ps", + "category": "Copyleft Limited", + "spdx_license_key": "GL2PS", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gl2ps.json", + "yaml": "gl2ps.yml", + "html": "gl2ps.html", + "license": "gl2ps.LICENSE" + }, + { + "license_key": "gladman-older-rijndael-code-use", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-gladman-older-rijndael-code", + "other_spdx_license_keys": [ + "LicenseRef-scancode-gladman-older-rijndael-code-use" + ], + "is_exception": false, + "is_deprecated": false, + "json": "gladman-older-rijndael-code-use.json", + "yaml": "gladman-older-rijndael-code-use.yml", + "html": "gladman-older-rijndael-code-use.html", + "license": "gladman-older-rijndael-code-use.LICENSE" + }, + { + "license_key": "glide", + "category": "Copyleft", + "spdx_license_key": "Glide", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "glide.json", + "yaml": "glide.yml", + "html": "glide.html", + "license": "glide.LICENSE" + }, + { + "license_key": "glulxe", + "category": "Permissive", + "spdx_license_key": "Glulxe", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "glulxe.json", + "yaml": "glulxe.yml", + "html": "glulxe.html", + "license": "glulxe.LICENSE" + }, + { + "license_key": "glut", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-glut", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "glut.json", + "yaml": "glut.yml", + "html": "glut.html", + "license": "glut.LICENSE" + }, + { + "license_key": "glwtpl", + "category": "Permissive", + "spdx_license_key": "GLWTPL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "glwtpl.json", + "yaml": "glwtpl.yml", + "html": "glwtpl.html", + "license": "glwtpl.LICENSE" + }, + { + "license_key": "gmsh-exception", + "category": "Copyleft Limited", + "spdx_license_key": "Gmsh-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "gmsh-exception.json", + "yaml": "gmsh-exception.yml", + "html": "gmsh-exception.html", + "license": "gmsh-exception.LICENSE" + }, + { + "license_key": "gnome-examples-exception", + "category": "Permissive", + "spdx_license_key": "GNOME-examples-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "gnome-examples-exception.json", + "yaml": "gnome-examples-exception.yml", + "html": "gnome-examples-exception.html", + "license": "gnome-examples-exception.LICENSE" + }, + { + "license_key": "gnu-emacs-gpl-1988", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-gnu-emacs-gpl-1988", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gnu-emacs-gpl-1988.json", + "yaml": "gnu-emacs-gpl-1988.yml", + "html": "gnu-emacs-gpl-1988.html", + "license": "gnu-emacs-gpl-1988.LICENSE" + }, + { + "license_key": "gnu-javamail-exception", + "category": "Copyleft Limited", + "spdx_license_key": "gnu-javamail-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "gnu-javamail-exception.json", + "yaml": "gnu-javamail-exception.yml", + "html": "gnu-javamail-exception.html", + "license": "gnu-javamail-exception.LICENSE" + }, + { + "license_key": "gnuplot", + "category": "Copyleft Limited", + "spdx_license_key": "gnuplot", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gnuplot.json", + "yaml": "gnuplot.yml", + "html": "gnuplot.html", + "license": "gnuplot.LICENSE" + }, + { + "license_key": "goahead", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-goahead", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "goahead.json", + "yaml": "goahead.yml", + "html": "goahead.html", + "license": "goahead.LICENSE" + }, + { + "license_key": "good-boy", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-good-boy", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "good-boy.json", + "yaml": "good-boy.yml", + "html": "good-boy.html", + "license": "good-boy.LICENSE" + }, + { + "license_key": "google-analytics-tos", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-analytics-tos", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-analytics-tos.json", + "yaml": "google-analytics-tos.yml", + "html": "google-analytics-tos.html", + "license": "google-analytics-tos.LICENSE" + }, + { + "license_key": "google-analytics-tos-2015", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-analytics-tos-2015", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-analytics-tos-2015.json", + "yaml": "google-analytics-tos-2015.yml", + "html": "google-analytics-tos-2015.html", + "license": "google-analytics-tos-2015.LICENSE" + }, + { + "license_key": "google-analytics-tos-2016", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-analytics-tos-2016", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-analytics-tos-2016.json", + "yaml": "google-analytics-tos-2016.yml", + "html": "google-analytics-tos-2016.html", + "license": "google-analytics-tos-2016.LICENSE" + }, + { + "license_key": "google-analytics-tos-2019", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-analytics-tos-2019", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-analytics-tos-2019.json", + "yaml": "google-analytics-tos-2019.yml", + "html": "google-analytics-tos-2019.html", + "license": "google-analytics-tos-2019.LICENSE" + }, + { + "license_key": "google-apis-tos-2021", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-apis-tos-2021", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-apis-tos-2021.json", + "yaml": "google-apis-tos-2021.yml", + "html": "google-apis-tos-2021.html", + "license": "google-apis-tos-2021.LICENSE" + }, + { + "license_key": "google-cla", + "category": "CLA", + "spdx_license_key": "LicenseRef-scancode-google-cla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-cla.json", + "yaml": "google-cla.yml", + "html": "google-cla.html", + "license": "google-cla.LICENSE" + }, + { + "license_key": "google-corporate-cla", + "category": "CLA", + "spdx_license_key": "LicenseRef-scancode-google-corporate-cla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-corporate-cla.json", + "yaml": "google-corporate-cla.yml", + "html": "google-corporate-cla.html", + "license": "google-corporate-cla.LICENSE" + }, + { + "license_key": "google-maps-tos-2018-02-07", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2018-02-07", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-maps-tos-2018-02-07.json", + "yaml": "google-maps-tos-2018-02-07.yml", + "html": "google-maps-tos-2018-02-07.html", + "license": "google-maps-tos-2018-02-07.LICENSE" + }, + { + "license_key": "google-maps-tos-2018-05-01", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2018-05-01", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-maps-tos-2018-05-01.json", + "yaml": "google-maps-tos-2018-05-01.yml", + "html": "google-maps-tos-2018-05-01.html", + "license": "google-maps-tos-2018-05-01.LICENSE" + }, + { + "license_key": "google-maps-tos-2018-06-07", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2018-06-07", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-maps-tos-2018-06-07.json", + "yaml": "google-maps-tos-2018-06-07.yml", + "html": "google-maps-tos-2018-06-07.html", + "license": "google-maps-tos-2018-06-07.LICENSE" + }, + { + "license_key": "google-maps-tos-2018-07-09", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2018-07-09", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-maps-tos-2018-07-09.json", + "yaml": "google-maps-tos-2018-07-09.yml", + "html": "google-maps-tos-2018-07-09.html", + "license": "google-maps-tos-2018-07-09.LICENSE" + }, + { + "license_key": "google-maps-tos-2018-07-19", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2018-07-19", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-maps-tos-2018-07-19.json", + "yaml": "google-maps-tos-2018-07-19.yml", + "html": "google-maps-tos-2018-07-19.html", + "license": "google-maps-tos-2018-07-19.LICENSE" + }, + { + "license_key": "google-maps-tos-2018-10-01", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2018-10-01", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-maps-tos-2018-10-01.json", + "yaml": "google-maps-tos-2018-10-01.yml", + "html": "google-maps-tos-2018-10-01.html", + "license": "google-maps-tos-2018-10-01.LICENSE" + }, + { + "license_key": "google-maps-tos-2018-10-31", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2018-10-31", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-maps-tos-2018-10-31.json", + "yaml": "google-maps-tos-2018-10-31.yml", + "html": "google-maps-tos-2018-10-31.html", + "license": "google-maps-tos-2018-10-31.LICENSE" + }, + { + "license_key": "google-maps-tos-2019-05-02", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2019-05-02", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-maps-tos-2019-05-02.json", + "yaml": "google-maps-tos-2019-05-02.yml", + "html": "google-maps-tos-2019-05-02.html", + "license": "google-maps-tos-2019-05-02.LICENSE" + }, + { + "license_key": "google-maps-tos-2019-11-21", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2019-11-21", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-maps-tos-2019-11-21.json", + "yaml": "google-maps-tos-2019-11-21.yml", + "html": "google-maps-tos-2019-11-21.html", + "license": "google-maps-tos-2019-11-21.LICENSE" + }, + { + "license_key": "google-maps-tos-2020-04-02", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2020-04-02", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-maps-tos-2020-04-02.json", + "yaml": "google-maps-tos-2020-04-02.yml", + "html": "google-maps-tos-2020-04-02.html", + "license": "google-maps-tos-2020-04-02.LICENSE" + }, + { + "license_key": "google-maps-tos-2020-04-27", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2020-04-27", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-maps-tos-2020-04-27.json", + "yaml": "google-maps-tos-2020-04-27.yml", + "html": "google-maps-tos-2020-04-27.html", + "license": "google-maps-tos-2020-04-27.LICENSE" + }, + { + "license_key": "google-maps-tos-2020-05-06", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2020-05-06", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-maps-tos-2020-05-06.json", + "yaml": "google-maps-tos-2020-05-06.yml", + "html": "google-maps-tos-2020-05-06.html", + "license": "google-maps-tos-2020-05-06.LICENSE" + }, + { + "license_key": "google-ml-kit-tos-2022", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-ml-kit-tos-2022", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-ml-kit-tos-2022.json", + "yaml": "google-ml-kit-tos-2022.yml", + "html": "google-ml-kit-tos-2022.html", + "license": "google-ml-kit-tos-2022.LICENSE" + }, + { + "license_key": "google-patent-license", + "category": "Patent License", + "spdx_license_key": "LicenseRef-scancode-google-patent-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-patent-license.json", + "yaml": "google-patent-license.yml", + "html": "google-patent-license.html", + "license": "google-patent-license.LICENSE" + }, + { + "license_key": "google-patent-license-fuchsia", + "category": "Patent License", + "spdx_license_key": "LicenseRef-scancode-google-patent-license-fuchsia", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-patent-license-fuchsia.json", + "yaml": "google-patent-license-fuchsia.yml", + "html": "google-patent-license-fuchsia.html", + "license": "google-patent-license-fuchsia.LICENSE" + }, + { + "license_key": "google-patent-license-fuschia", + "category": "Patent License", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "google-patent-license-fuschia.json", + "yaml": "google-patent-license-fuschia.yml", + "html": "google-patent-license-fuschia.html", + "license": "google-patent-license-fuschia.LICENSE" + }, + { + "license_key": "google-patent-license-golang", + "category": "Patent License", + "spdx_license_key": "LicenseRef-scancode-google-patent-license-golang", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-patent-license-golang.json", + "yaml": "google-patent-license-golang.yml", + "html": "google-patent-license-golang.html", + "license": "google-patent-license-golang.LICENSE" + }, + { + "license_key": "google-patent-license-webm", + "category": "Patent License", + "spdx_license_key": "LicenseRef-scancode-google-patent-license-webm", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-patent-license-webm.json", + "yaml": "google-patent-license-webm.yml", + "html": "google-patent-license-webm.html", + "license": "google-patent-license-webm.LICENSE" + }, + { + "license_key": "google-patent-license-webrtc", + "category": "Patent License", + "spdx_license_key": "LicenseRef-scancode-google-patent-license-webrtc", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-patent-license-webrtc.json", + "yaml": "google-patent-license-webrtc.yml", + "html": "google-patent-license-webrtc.html", + "license": "google-patent-license-webrtc.LICENSE" + }, + { + "license_key": "google-playcore-sdk-tos-2020", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-playcore-sdk-tos-2020", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-playcore-sdk-tos-2020.json", + "yaml": "google-playcore-sdk-tos-2020.yml", + "html": "google-playcore-sdk-tos-2020.html", + "license": "google-playcore-sdk-tos-2020.LICENSE" + }, + { + "license_key": "google-tos-2013", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-tos-2013", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-tos-2013.json", + "yaml": "google-tos-2013.yml", + "html": "google-tos-2013.html", + "license": "google-tos-2013.LICENSE" + }, + { + "license_key": "google-tos-2014", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-tos-2014", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-tos-2014.json", + "yaml": "google-tos-2014.yml", + "html": "google-tos-2014.html", + "license": "google-tos-2014.LICENSE" + }, + { + "license_key": "google-tos-2017", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-tos-2017", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-tos-2017.json", + "yaml": "google-tos-2017.yml", + "html": "google-tos-2017.html", + "license": "google-tos-2017.LICENSE" + }, + { + "license_key": "google-tos-2019", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-tos-2019", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-tos-2019.json", + "yaml": "google-tos-2019.yml", + "html": "google-tos-2019.html", + "license": "google-tos-2019.LICENSE" + }, + { + "license_key": "google-tos-2020", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-tos-2020", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-tos-2020.json", + "yaml": "google-tos-2020.yml", + "html": "google-tos-2020.html", + "license": "google-tos-2020.LICENSE" + }, + { + "license_key": "gpl-1.0", + "category": "Copyleft", + "spdx_license_key": "GPL-1.0-only", + "other_spdx_license_keys": [ + "GPL-1.0" + ], + "is_exception": false, + "is_deprecated": false, + "json": "gpl-1.0.json", + "yaml": "gpl-1.0.yml", + "html": "gpl-1.0.html", + "license": "gpl-1.0.LICENSE" + }, + { + "license_key": "gpl-1.0-plus", + "category": "Copyleft", + "spdx_license_key": "GPL-1.0-or-later", + "other_spdx_license_keys": [ + "GPL-1.0+", + "LicenseRef-GPL" + ], + "is_exception": false, + "is_deprecated": false, + "json": "gpl-1.0-plus.json", + "yaml": "gpl-1.0-plus.yml", + "html": "gpl-1.0-plus.html", + "license": "gpl-1.0-plus.LICENSE" + }, + { + "license_key": "gpl-2.0", + "category": "Copyleft", + "spdx_license_key": "GPL-2.0-only", + "other_spdx_license_keys": [ + "GPL-2.0", + "GPL 2.0", + "LicenseRef-GPL-2.0" + ], + "is_exception": false, + "is_deprecated": false, + "json": "gpl-2.0.json", + "yaml": "gpl-2.0.yml", + "html": "gpl-2.0.html", + "license": "gpl-2.0.LICENSE" + }, + { + "license_key": "gpl-2.0-adaptec", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-gpl-2.0-adaptec", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gpl-2.0-adaptec.json", + "yaml": "gpl-2.0-adaptec.yml", + "html": "gpl-2.0-adaptec.html", + "license": "gpl-2.0-adaptec.LICENSE" + }, + { + "license_key": "gpl-2.0-autoconf", + "category": "Copyleft Limited", + "spdx_license_key": "GPL-2.0-with-autoconf-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-autoconf.json", + "yaml": "gpl-2.0-autoconf.yml", + "html": "gpl-2.0-autoconf.html", + "license": "gpl-2.0-autoconf.LICENSE" + }, + { + "license_key": "gpl-2.0-autoopts", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-autoopts.json", + "yaml": "gpl-2.0-autoopts.yml", + "html": "gpl-2.0-autoopts.html", + "license": "gpl-2.0-autoopts.LICENSE" + }, + { + "license_key": "gpl-2.0-bison", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-bison.json", + "yaml": "gpl-2.0-bison.yml", + "html": "gpl-2.0-bison.html", + "license": "gpl-2.0-bison.LICENSE" + }, + { + "license_key": "gpl-2.0-bison-2.2", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-bison-2.2.json", + "yaml": "gpl-2.0-bison-2.2.yml", + "html": "gpl-2.0-bison-2.2.html", + "license": "gpl-2.0-bison-2.2.LICENSE" + }, + { + "license_key": "gpl-2.0-broadcom-linking", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-broadcom-linking.json", + "yaml": "gpl-2.0-broadcom-linking.yml", + "html": "gpl-2.0-broadcom-linking.html", + "license": "gpl-2.0-broadcom-linking.LICENSE" + }, + { + "license_key": "gpl-2.0-classpath", + "category": "Copyleft Limited", + "spdx_license_key": "GPL-2.0-with-classpath-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-classpath.json", + "yaml": "gpl-2.0-classpath.yml", + "html": "gpl-2.0-classpath.html", + "license": "gpl-2.0-classpath.LICENSE" + }, + { + "license_key": "gpl-2.0-cygwin", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-cygwin.json", + "yaml": "gpl-2.0-cygwin.yml", + "html": "gpl-2.0-cygwin.html", + "license": "gpl-2.0-cygwin.LICENSE" + }, + { + "license_key": "gpl-2.0-djvu", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-gpl-2.0-djvu", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gpl-2.0-djvu.json", + "yaml": "gpl-2.0-djvu.yml", + "html": "gpl-2.0-djvu.html", + "license": "gpl-2.0-djvu.LICENSE" + }, + { + "license_key": "gpl-2.0-font", + "category": "Copyleft Limited", + "spdx_license_key": "GPL-2.0-with-font-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-font.json", + "yaml": "gpl-2.0-font.yml", + "html": "gpl-2.0-font.html", + "license": "gpl-2.0-font.LICENSE" + }, + { + "license_key": "gpl-2.0-freertos", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-freertos.json", + "yaml": "gpl-2.0-freertos.yml", + "html": "gpl-2.0-freertos.html", + "license": "gpl-2.0-freertos.LICENSE" + }, + { + "license_key": "gpl-2.0-gcc", + "category": "Copyleft Limited", + "spdx_license_key": "GPL-2.0-with-GCC-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-gcc.json", + "yaml": "gpl-2.0-gcc.yml", + "html": "gpl-2.0-gcc.html", + "license": "gpl-2.0-gcc.LICENSE" + }, + { + "license_key": "gpl-2.0-gcc-compiler-exception", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-gcc-compiler-exception.json", + "yaml": "gpl-2.0-gcc-compiler-exception.yml", + "html": "gpl-2.0-gcc-compiler-exception.html", + "license": "gpl-2.0-gcc-compiler-exception.LICENSE" + }, + { + "license_key": "gpl-2.0-glibc", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-glibc.json", + "yaml": "gpl-2.0-glibc.yml", + "html": "gpl-2.0-glibc.html", + "license": "gpl-2.0-glibc.LICENSE" + }, + { + "license_key": "gpl-2.0-guile", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-guile.json", + "yaml": "gpl-2.0-guile.yml", + "html": "gpl-2.0-guile.html", + "license": "gpl-2.0-guile.LICENSE" + }, + { + "license_key": "gpl-2.0-ice", + "category": "Copyleft", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-ice.json", + "yaml": "gpl-2.0-ice.yml", + "html": "gpl-2.0-ice.html", + "license": "gpl-2.0-ice.LICENSE" + }, + { + "license_key": "gpl-2.0-independent-module-linking", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-independent-module-linking.json", + "yaml": "gpl-2.0-independent-module-linking.yml", + "html": "gpl-2.0-independent-module-linking.html", + "license": "gpl-2.0-independent-module-linking.LICENSE" + }, + { + "license_key": "gpl-2.0-iolib", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-iolib.json", + "yaml": "gpl-2.0-iolib.yml", + "html": "gpl-2.0-iolib.html", + "license": "gpl-2.0-iolib.LICENSE" + }, + { + "license_key": "gpl-2.0-iso-cpp", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-iso-cpp.json", + "yaml": "gpl-2.0-iso-cpp.yml", + "html": "gpl-2.0-iso-cpp.html", + "license": "gpl-2.0-iso-cpp.LICENSE" + }, + { + "license_key": "gpl-2.0-javascript", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-javascript.json", + "yaml": "gpl-2.0-javascript.yml", + "html": "gpl-2.0-javascript.html", + "license": "gpl-2.0-javascript.LICENSE" + }, + { + "license_key": "gpl-2.0-kernel", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-kernel.json", + "yaml": "gpl-2.0-kernel.yml", + "html": "gpl-2.0-kernel.html", + "license": "gpl-2.0-kernel.LICENSE" + }, + { + "license_key": "gpl-2.0-koterov", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-gpl-2.0-koterov", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gpl-2.0-koterov.json", + "yaml": "gpl-2.0-koterov.yml", + "html": "gpl-2.0-koterov.html", + "license": "gpl-2.0-koterov.LICENSE" + }, + { + "license_key": "gpl-2.0-libgit2", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-libgit2.json", + "yaml": "gpl-2.0-libgit2.yml", + "html": "gpl-2.0-libgit2.html", + "license": "gpl-2.0-libgit2.LICENSE" + }, + { + "license_key": "gpl-2.0-library", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-library.json", + "yaml": "gpl-2.0-library.yml", + "html": "gpl-2.0-library.html", + "license": "gpl-2.0-library.LICENSE" + }, + { + "license_key": "gpl-2.0-libtool", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-libtool.json", + "yaml": "gpl-2.0-libtool.yml", + "html": "gpl-2.0-libtool.html", + "license": "gpl-2.0-libtool.LICENSE" + }, + { + "license_key": "gpl-2.0-lmbench", + "category": "Copyleft", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-lmbench.json", + "yaml": "gpl-2.0-lmbench.yml", + "html": "gpl-2.0-lmbench.html", + "license": "gpl-2.0-lmbench.LICENSE" + }, + { + "license_key": "gpl-2.0-mysql-connector-odbc", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-mysql-connector-odbc.json", + "yaml": "gpl-2.0-mysql-connector-odbc.yml", + "html": "gpl-2.0-mysql-connector-odbc.html", + "license": "gpl-2.0-mysql-connector-odbc.LICENSE" + }, + { + "license_key": "gpl-2.0-mysql-floss", + "category": "Copyleft", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-mysql-floss.json", + "yaml": "gpl-2.0-mysql-floss.yml", + "html": "gpl-2.0-mysql-floss.html", + "license": "gpl-2.0-mysql-floss.LICENSE" + }, + { + "license_key": "gpl-2.0-openjdk", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-openjdk.json", + "yaml": "gpl-2.0-openjdk.yml", + "html": "gpl-2.0-openjdk.html", + "license": "gpl-2.0-openjdk.LICENSE" + }, + { + "license_key": "gpl-2.0-openssl", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-openssl.json", + "yaml": "gpl-2.0-openssl.yml", + "html": "gpl-2.0-openssl.html", + "license": "gpl-2.0-openssl.LICENSE" + }, + { + "license_key": "gpl-2.0-oracle-mysql-foss", + "category": "Copyleft", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-oracle-mysql-foss.json", + "yaml": "gpl-2.0-oracle-mysql-foss.yml", + "html": "gpl-2.0-oracle-mysql-foss.html", + "license": "gpl-2.0-oracle-mysql-foss.LICENSE" + }, + { + "license_key": "gpl-2.0-oracle-openjdk", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-oracle-openjdk.json", + "yaml": "gpl-2.0-oracle-openjdk.yml", + "html": "gpl-2.0-oracle-openjdk.html", + "license": "gpl-2.0-oracle-openjdk.LICENSE" + }, + { + "license_key": "gpl-2.0-plus", + "category": "Copyleft", + "spdx_license_key": "GPL-2.0-or-later", + "other_spdx_license_keys": [ + "GPL-2.0+", + "GPL 2.0+" + ], + "is_exception": false, + "is_deprecated": false, + "json": "gpl-2.0-plus.json", + "yaml": "gpl-2.0-plus.yml", + "html": "gpl-2.0-plus.html", + "license": "gpl-2.0-plus.LICENSE" + }, + { + "license_key": "gpl-2.0-plus-ada", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-plus-ada.json", + "yaml": "gpl-2.0-plus-ada.yml", + "html": "gpl-2.0-plus-ada.html", + "license": "gpl-2.0-plus-ada.LICENSE" + }, + { + "license_key": "gpl-2.0-plus-ekiga", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-plus-ekiga.json", + "yaml": "gpl-2.0-plus-ekiga.yml", + "html": "gpl-2.0-plus-ekiga.html", + "license": "gpl-2.0-plus-ekiga.LICENSE" + }, + { + "license_key": "gpl-2.0-plus-gcc", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-plus-gcc.json", + "yaml": "gpl-2.0-plus-gcc.yml", + "html": "gpl-2.0-plus-gcc.html", + "license": "gpl-2.0-plus-gcc.LICENSE" + }, + { + "license_key": "gpl-2.0-plus-geoserver", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-plus-geoserver.json", + "yaml": "gpl-2.0-plus-geoserver.yml", + "html": "gpl-2.0-plus-geoserver.html", + "license": "gpl-2.0-plus-geoserver.LICENSE" + }, + { + "license_key": "gpl-2.0-plus-linking", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-plus-linking.json", + "yaml": "gpl-2.0-plus-linking.yml", + "html": "gpl-2.0-plus-linking.html", + "license": "gpl-2.0-plus-linking.LICENSE" + }, + { + "license_key": "gpl-2.0-plus-nant", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-plus-nant.json", + "yaml": "gpl-2.0-plus-nant.yml", + "html": "gpl-2.0-plus-nant.html", + "license": "gpl-2.0-plus-nant.LICENSE" + }, + { + "license_key": "gpl-2.0-plus-openmotif", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-plus-openmotif.json", + "yaml": "gpl-2.0-plus-openmotif.yml", + "html": "gpl-2.0-plus-openmotif.html", + "license": "gpl-2.0-plus-openmotif.LICENSE" + }, + { + "license_key": "gpl-2.0-plus-openssl", + "category": "Copyleft", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-plus-openssl.json", + "yaml": "gpl-2.0-plus-openssl.yml", + "html": "gpl-2.0-plus-openssl.html", + "license": "gpl-2.0-plus-openssl.LICENSE" + }, + { + "license_key": "gpl-2.0-plus-sane", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-plus-sane.json", + "yaml": "gpl-2.0-plus-sane.yml", + "html": "gpl-2.0-plus-sane.html", + "license": "gpl-2.0-plus-sane.LICENSE" + }, + { + "license_key": "gpl-2.0-plus-subcommander", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-plus-subcommander.json", + "yaml": "gpl-2.0-plus-subcommander.yml", + "html": "gpl-2.0-plus-subcommander.html", + "license": "gpl-2.0-plus-subcommander.LICENSE" + }, + { + "license_key": "gpl-2.0-plus-syntext", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-plus-syntext.json", + "yaml": "gpl-2.0-plus-syntext.yml", + "html": "gpl-2.0-plus-syntext.html", + "license": "gpl-2.0-plus-syntext.LICENSE" + }, + { + "license_key": "gpl-2.0-plus-upx", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-plus-upx.json", + "yaml": "gpl-2.0-plus-upx.yml", + "html": "gpl-2.0-plus-upx.html", + "license": "gpl-2.0-plus-upx.LICENSE" + }, + { + "license_key": "gpl-2.0-proguard", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-proguard.json", + "yaml": "gpl-2.0-proguard.yml", + "html": "gpl-2.0-proguard.html", + "license": "gpl-2.0-proguard.LICENSE" + }, + { + "license_key": "gpl-2.0-qt-qca", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-qt-qca.json", + "yaml": "gpl-2.0-qt-qca.yml", + "html": "gpl-2.0-qt-qca.html", + "license": "gpl-2.0-qt-qca.LICENSE" + }, + { + "license_key": "gpl-2.0-redhat", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-redhat.json", + "yaml": "gpl-2.0-redhat.yml", + "html": "gpl-2.0-redhat.html", + "license": "gpl-2.0-redhat.LICENSE" + }, + { + "license_key": "gpl-2.0-rrdtool-floss", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-rrdtool-floss.json", + "yaml": "gpl-2.0-rrdtool-floss.yml", + "html": "gpl-2.0-rrdtool-floss.html", + "license": "gpl-2.0-rrdtool-floss.LICENSE" + }, + { + "license_key": "gpl-2.0-uboot", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-uboot.json", + "yaml": "gpl-2.0-uboot.yml", + "html": "gpl-2.0-uboot.html", + "license": "gpl-2.0-uboot.LICENSE" + }, + { + "license_key": "gpl-3.0", + "category": "Copyleft", + "spdx_license_key": "GPL-3.0-only", + "other_spdx_license_keys": [ + "GPL-3.0", + "LicenseRef-gpl-3.0" + ], + "is_exception": false, + "is_deprecated": false, + "json": "gpl-3.0.json", + "yaml": "gpl-3.0.yml", + "html": "gpl-3.0.html", + "license": "gpl-3.0.LICENSE" + }, + { + "license_key": "gpl-3.0-aptana", + "category": "Copyleft", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-3.0-aptana.json", + "yaml": "gpl-3.0-aptana.yml", + "html": "gpl-3.0-aptana.html", + "license": "gpl-3.0-aptana.LICENSE" + }, + { + "license_key": "gpl-3.0-autoconf", + "category": "Copyleft Limited", + "spdx_license_key": "GPL-3.0-with-autoconf-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-3.0-autoconf.json", + "yaml": "gpl-3.0-autoconf.yml", + "html": "gpl-3.0-autoconf.html", + "license": "gpl-3.0-autoconf.LICENSE" + }, + { + "license_key": "gpl-3.0-bison", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-3.0-bison.json", + "yaml": "gpl-3.0-bison.yml", + "html": "gpl-3.0-bison.html", + "license": "gpl-3.0-bison.LICENSE" + }, + { + "license_key": "gpl-3.0-cygwin", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-3.0-cygwin.json", + "yaml": "gpl-3.0-cygwin.yml", + "html": "gpl-3.0-cygwin.html", + "license": "gpl-3.0-cygwin.LICENSE" + }, + { + "license_key": "gpl-3.0-font", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-3.0-font.json", + "yaml": "gpl-3.0-font.yml", + "html": "gpl-3.0-font.html", + "license": "gpl-3.0-font.LICENSE" + }, + { + "license_key": "gpl-3.0-gcc", + "category": "Copyleft Limited", + "spdx_license_key": "GPL-3.0-with-GCC-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-3.0-gcc.json", + "yaml": "gpl-3.0-gcc.yml", + "html": "gpl-3.0-gcc.html", + "license": "gpl-3.0-gcc.LICENSE" + }, + { + "license_key": "gpl-3.0-interface-exception", + "category": "Copyleft Limited", + "spdx_license_key": "GPL-3.0-interface-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "gpl-3.0-interface-exception.json", + "yaml": "gpl-3.0-interface-exception.yml", + "html": "gpl-3.0-interface-exception.html", + "license": "gpl-3.0-interface-exception.LICENSE" + }, + { + "license_key": "gpl-3.0-linking-exception", + "category": "Copyleft Limited", + "spdx_license_key": "GPL-3.0-linking-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "gpl-3.0-linking-exception.json", + "yaml": "gpl-3.0-linking-exception.yml", + "html": "gpl-3.0-linking-exception.html", + "license": "gpl-3.0-linking-exception.LICENSE" + }, + { + "license_key": "gpl-3.0-linking-source-exception", + "category": "Copyleft Limited", + "spdx_license_key": "GPL-3.0-linking-source-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "gpl-3.0-linking-source-exception.json", + "yaml": "gpl-3.0-linking-source-exception.yml", + "html": "gpl-3.0-linking-source-exception.html", + "license": "gpl-3.0-linking-source-exception.LICENSE" + }, + { + "license_key": "gpl-3.0-openbd", + "category": "Copyleft", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-3.0-openbd.json", + "yaml": "gpl-3.0-openbd.yml", + "html": "gpl-3.0-openbd.html", + "license": "gpl-3.0-openbd.LICENSE" + }, + { + "license_key": "gpl-3.0-plus", + "category": "Copyleft", + "spdx_license_key": "GPL-3.0-or-later", + "other_spdx_license_keys": [ + "GPL-3.0+", + "LicenseRef-GPL-3.0-or-later" + ], + "is_exception": false, + "is_deprecated": false, + "json": "gpl-3.0-plus.json", + "yaml": "gpl-3.0-plus.yml", + "html": "gpl-3.0-plus.html", + "license": "gpl-3.0-plus.LICENSE" + }, + { + "license_key": "gpl-3.0-plus-openssl", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-3.0-plus-openssl.json", + "yaml": "gpl-3.0-plus-openssl.yml", + "html": "gpl-3.0-plus-openssl.html", + "license": "gpl-3.0-plus-openssl.LICENSE" + }, + { + "license_key": "gpl-generic-additional-terms", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-gpl-generic-additional-terms", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "gpl-generic-additional-terms.json", + "yaml": "gpl-generic-additional-terms.yml", + "html": "gpl-generic-additional-terms.html", + "license": "gpl-generic-additional-terms.LICENSE" + }, + { + "license_key": "gplcc-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "GPL-CC-1.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "gplcc-1.0.json", + "yaml": "gplcc-1.0.yml", + "html": "gplcc-1.0.html", + "license": "gplcc-1.0.LICENSE" + }, + { + "license_key": "gradle-enterprise-sla-2022-11-08", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-gradle-enterprise-sla-2022-11-", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gradle-enterprise-sla-2022-11-08.json", + "yaml": "gradle-enterprise-sla-2022-11-08.yml", + "html": "gradle-enterprise-sla-2022-11-08.html", + "license": "gradle-enterprise-sla-2022-11-08.LICENSE" + }, + { + "license_key": "gradle-tou-2022-01-13", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-gradle-tou-2022-01-13", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gradle-tou-2022-01-13.json", + "yaml": "gradle-tou-2022-01-13.yml", + "html": "gradle-tou-2022-01-13.html", + "license": "gradle-tou-2022-01-13.LICENSE" + }, + { + "license_key": "graphics-gems", + "category": "Permissive", + "spdx_license_key": "Graphics-Gems", + "other_spdx_license_keys": [ + "LicenseRef-scancode-graphics-gems" + ], + "is_exception": false, + "is_deprecated": false, + "json": "graphics-gems.json", + "yaml": "graphics-gems.yml", + "html": "graphics-gems.html", + "license": "graphics-gems.LICENSE" + }, + { + "license_key": "greg-roelofs", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-greg-roelofs", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "greg-roelofs.json", + "yaml": "greg-roelofs.yml", + "html": "greg-roelofs.html", + "license": "greg-roelofs.LICENSE" + }, + { + "license_key": "gregory-pietsch", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-gregory-pietsch", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gregory-pietsch.json", + "yaml": "gregory-pietsch.yml", + "html": "gregory-pietsch.html", + "license": "gregory-pietsch.LICENSE" + }, + { + "license_key": "gsoap-1.3a", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-gsoap-1.3a", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gsoap-1.3a.json", + "yaml": "gsoap-1.3a.yml", + "html": "gsoap-1.3a.html", + "license": "gsoap-1.3a.LICENSE" + }, + { + "license_key": "gsoap-1.3b", + "category": "Copyleft Limited", + "spdx_license_key": "gSOAP-1.3b", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gsoap-1.3b.json", + "yaml": "gsoap-1.3b.yml", + "html": "gsoap-1.3b.html", + "license": "gsoap-1.3b.LICENSE" + }, + { + "license_key": "gstreamer-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-gstreamer-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "gstreamer-exception-2.0.json", + "yaml": "gstreamer-exception-2.0.yml", + "html": "gstreamer-exception-2.0.html", + "license": "gstreamer-exception-2.0.LICENSE" + }, + { + "license_key": "gstreamer-exception-2005", + "category": "Permissive", + "spdx_license_key": "GStreamer-exception-2005", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "gstreamer-exception-2005.json", + "yaml": "gstreamer-exception-2005.yml", + "html": "gstreamer-exception-2005.html", + "license": "gstreamer-exception-2005.LICENSE" + }, + { + "license_key": "gstreamer-exception-2008", + "category": "Permissive", + "spdx_license_key": "GStreamer-exception-2008", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "gstreamer-exception-2008.json", + "yaml": "gstreamer-exception-2008.yml", + "html": "gstreamer-exception-2008.html", + "license": "gstreamer-exception-2008.LICENSE" + }, + { + "license_key": "gtkbook", + "category": "Permissive", + "spdx_license_key": "gtkbook", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gtkbook.json", + "yaml": "gtkbook.yml", + "html": "gtkbook.html", + "license": "gtkbook.LICENSE" + }, + { + "license_key": "gtpl-v1", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-gtpl-v1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gtpl-v1.json", + "yaml": "gtpl-v1.yml", + "html": "gtpl-v1.html", + "license": "gtpl-v1.LICENSE" + }, + { + "license_key": "gtpl-v2", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-gtpl-v2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gtpl-v2.json", + "yaml": "gtpl-v2.yml", + "html": "gtpl-v2.html", + "license": "gtpl-v2.LICENSE" + }, + { + "license_key": "gtpl-v3", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-gtpl-v3", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gtpl-v3.json", + "yaml": "gtpl-v3.yml", + "html": "gtpl-v3.html", + "license": "gtpl-v3.LICENSE" + }, + { + "license_key": "guile-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-guile-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "guile-exception-2.0.json", + "yaml": "guile-exception-2.0.yml", + "html": "guile-exception-2.0.html", + "license": "guile-exception-2.0.LICENSE" + }, + { + "license_key": "gust-font-1.0", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-gust-font-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gust-font-1.0.json", + "yaml": "gust-font-1.0.yml", + "html": "gust-font-1.0.html", + "license": "gust-font-1.0.LICENSE" + }, + { + "license_key": "gust-font-2006-09-30", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-gust-font-2006-09-30", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gust-font-2006-09-30.json", + "yaml": "gust-font-2006-09-30.yml", + "html": "gust-font-2006-09-30.html", + "license": "gust-font-2006-09-30.LICENSE" + }, + { + "license_key": "gutenberg-2020", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-gutenberg-2020", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gutenberg-2020.json", + "yaml": "gutenberg-2020.yml", + "html": "gutenberg-2020.html", + "license": "gutenberg-2020.LICENSE" + }, + { + "license_key": "h2-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-h2-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "h2-1.0.json", + "yaml": "h2-1.0.yml", + "html": "h2-1.0.html", + "license": "h2-1.0.LICENSE" + }, + { + "license_key": "hacking-license", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-hacking-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hacking-license.json", + "yaml": "hacking-license.yml", + "html": "hacking-license.html", + "license": "hacking-license.LICENSE" + }, + { + "license_key": "hacos-1.2", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-hacos-1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hacos-1.2.json", + "yaml": "hacos-1.2.yml", + "html": "hacos-1.2.html", + "license": "hacos-1.2.LICENSE" + }, + { + "license_key": "happy-bunny", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-happy-bunny", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "happy-bunny.json", + "yaml": "happy-bunny.yml", + "html": "happy-bunny.html", + "license": "happy-bunny.LICENSE" + }, + { + "license_key": "haskell-report", + "category": "Permissive", + "spdx_license_key": "HaskellReport", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "haskell-report.json", + "yaml": "haskell-report.yml", + "html": "haskell-report.html", + "license": "haskell-report.LICENSE" + }, + { + "license_key": "hauppauge-firmware-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-hauppauge-firmware-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hauppauge-firmware-eula.json", + "yaml": "hauppauge-firmware-eula.yml", + "html": "hauppauge-firmware-eula.html", + "license": "hauppauge-firmware-eula.LICENSE" + }, + { + "license_key": "hauppauge-firmware-oem", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-hauppauge-firmware-oem", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hauppauge-firmware-oem.json", + "yaml": "hauppauge-firmware-oem.yml", + "html": "hauppauge-firmware-oem.html", + "license": "hauppauge-firmware-oem.LICENSE" + }, + { + "license_key": "hazelcast-community-1.0", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-hazelcast-community-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hazelcast-community-1.0.json", + "yaml": "hazelcast-community-1.0.yml", + "html": "hazelcast-community-1.0.html", + "license": "hazelcast-community-1.0.LICENSE" + }, + { + "license_key": "hdf4", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-hdf4", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hdf4.json", + "yaml": "hdf4.yml", + "html": "hdf4.html", + "license": "hdf4.LICENSE" + }, + { + "license_key": "hdf5", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-hdf5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hdf5.json", + "yaml": "hdf5.yml", + "html": "hdf5.html", + "license": "hdf5.LICENSE" + }, + { + "license_key": "hdparm", + "category": "Permissive", + "spdx_license_key": "hdparm", + "other_spdx_license_keys": [ + "LicenseRef-scancode-hdparm" + ], + "is_exception": false, + "is_deprecated": false, + "json": "hdparm.json", + "yaml": "hdparm.yml", + "html": "hdparm.html", + "license": "hdparm.LICENSE" + }, + { + "license_key": "helios-eula", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-helios-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "helios-eula.json", + "yaml": "helios-eula.yml", + "html": "helios-eula.html", + "license": "helios-eula.LICENSE" + }, + { + "license_key": "helix", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-helix", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "helix.json", + "yaml": "helix.yml", + "html": "helix.html", + "license": "helix.LICENSE" + }, + { + "license_key": "henry-spencer-1999", + "category": "Permissive", + "spdx_license_key": "Spencer-99", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "henry-spencer-1999.json", + "yaml": "henry-spencer-1999.yml", + "html": "henry-spencer-1999.html", + "license": "henry-spencer-1999.LICENSE" + }, + { + "license_key": "here-disclaimer", + "category": "Unstated License", + "spdx_license_key": "LicenseRef-scancode-here-disclaimer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "here-disclaimer.json", + "yaml": "here-disclaimer.yml", + "html": "here-disclaimer.html", + "license": "here-disclaimer.LICENSE" + }, + { + "license_key": "here-proprietary", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-here-proprietary", + "other_spdx_license_keys": [ + "LicenseRef-Proprietary-HERE" + ], + "is_exception": false, + "is_deprecated": false, + "json": "here-proprietary.json", + "yaml": "here-proprietary.yml", + "html": "here-proprietary.html", + "license": "here-proprietary.LICENSE" + }, + { + "license_key": "hessla", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-hessla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hessla.json", + "yaml": "hessla.yml", + "html": "hessla.html", + "license": "hessla.LICENSE" + }, + { + "license_key": "hfoil-1.0", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-hfoil-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hfoil-1.0.json", + "yaml": "hfoil-1.0.yml", + "html": "hfoil-1.0.html", + "license": "hfoil-1.0.LICENSE" + }, + { + "license_key": "hidapi", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-hidapi", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hidapi.json", + "yaml": "hidapi.yml", + "html": "hidapi.html", + "license": "hidapi.LICENSE" + }, + { + "license_key": "hippocratic-1.0", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-hippocratic-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hippocratic-1.0.json", + "yaml": "hippocratic-1.0.yml", + "html": "hippocratic-1.0.html", + "license": "hippocratic-1.0.LICENSE" + }, + { + "license_key": "hippocratic-1.1", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-hippocratic-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hippocratic-1.1.json", + "yaml": "hippocratic-1.1.yml", + "html": "hippocratic-1.1.html", + "license": "hippocratic-1.1.LICENSE" + }, + { + "license_key": "hippocratic-1.2", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-hippocratic-1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hippocratic-1.2.json", + "yaml": "hippocratic-1.2.yml", + "html": "hippocratic-1.2.html", + "license": "hippocratic-1.2.LICENSE" + }, + { + "license_key": "hippocratic-2.0", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-hippocratic-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hippocratic-2.0.json", + "yaml": "hippocratic-2.0.yml", + "html": "hippocratic-2.0.html", + "license": "hippocratic-2.0.LICENSE" + }, + { + "license_key": "hippocratic-2.1", + "category": "Free Restricted", + "spdx_license_key": "Hippocratic-2.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hippocratic-2.1.json", + "yaml": "hippocratic-2.1.yml", + "html": "hippocratic-2.1.html", + "license": "hippocratic-2.1.LICENSE" + }, + { + "license_key": "hippocratic-3.0", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-Hippocratic-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hippocratic-3.0.json", + "yaml": "hippocratic-3.0.yml", + "html": "hippocratic-3.0.html", + "license": "hippocratic-3.0.LICENSE" + }, + { + "license_key": "historical", + "category": "Permissive", + "spdx_license_key": "HPND", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "historical.json", + "yaml": "historical.yml", + "html": "historical.html", + "license": "historical.LICENSE" + }, + { + "license_key": "historical-ntp", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-historical-ntp", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "historical-ntp.json", + "yaml": "historical-ntp.yml", + "html": "historical-ntp.html", + "license": "historical-ntp.LICENSE" + }, + { + "license_key": "historical-sell-variant", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "historical-sell-variant.json", + "yaml": "historical-sell-variant.yml", + "html": "historical-sell-variant.html", + "license": "historical-sell-variant.LICENSE" + }, + { + "license_key": "homebrewed", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-homebrewed", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "homebrewed.json", + "yaml": "homebrewed.yml", + "html": "homebrewed.html", + "license": "homebrewed.LICENSE" + }, + { + "license_key": "hot-potato", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-hot-potato", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "hot-potato.json", + "yaml": "hot-potato.yml", + "html": "hot-potato.html", + "license": "hot-potato.LICENSE" + }, + { + "license_key": "houdini-project", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-houdini", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "houdini-project.json", + "yaml": "houdini-project.yml", + "html": "houdini-project.html", + "license": "houdini-project.LICENSE" + }, + { + "license_key": "hp", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-hp", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hp.json", + "yaml": "hp.yml", + "html": "hp.html", + "license": "hp.LICENSE" + }, + { + "license_key": "hp-1986", + "category": "Permissive", + "spdx_license_key": "HP-1986", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hp-1986.json", + "yaml": "hp-1986.yml", + "html": "hp-1986.html", + "license": "hp-1986.LICENSE" + }, + { + "license_key": "hp-enterprise-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-hp-enterprise-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hp-enterprise-eula.json", + "yaml": "hp-enterprise-eula.yml", + "html": "hp-enterprise-eula.html", + "license": "hp-enterprise-eula.LICENSE" + }, + { + "license_key": "hp-netperf", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-hp-netperf", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hp-netperf.json", + "yaml": "hp-netperf.yml", + "html": "hp-netperf.html", + "license": "hp-netperf.LICENSE" + }, + { + "license_key": "hp-proliant-essentials", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-hp-proliant-essentials", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hp-proliant-essentials.json", + "yaml": "hp-proliant-essentials.yml", + "html": "hp-proliant-essentials.html", + "license": "hp-proliant-essentials.LICENSE" + }, + { + "license_key": "hp-snmp-pp", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-hp-snmp-pp", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hp-snmp-pp.json", + "yaml": "hp-snmp-pp.yml", + "html": "hp-snmp-pp.html", + "license": "hp-snmp-pp.LICENSE" + }, + { + "license_key": "hp-software-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-hp-software-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hp-software-eula.json", + "yaml": "hp-software-eula.yml", + "html": "hp-software-eula.html", + "license": "hp-software-eula.LICENSE" + }, + { + "license_key": "hp-ux-java", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-hp-ux-java", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hp-ux-java.json", + "yaml": "hp-ux-java.yml", + "html": "hp-ux-java.html", + "license": "hp-ux-java.LICENSE" + }, + { + "license_key": "hp-ux-jre", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-hp-ux-jre", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hp-ux-jre.json", + "yaml": "hp-ux-jre.yml", + "html": "hp-ux-jre.html", + "license": "hp-ux-jre.LICENSE" + }, + { + "license_key": "hpnd-doc", + "category": "Permissive", + "spdx_license_key": "HPND-doc", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hpnd-doc.json", + "yaml": "hpnd-doc.yml", + "html": "hpnd-doc.html", + "license": "hpnd-doc.LICENSE" + }, + { + "license_key": "hpnd-doc-sell", + "category": "Permissive", + "spdx_license_key": "HPND-doc-sell", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hpnd-doc-sell.json", + "yaml": "hpnd-doc-sell.yml", + "html": "hpnd-doc-sell.html", + "license": "hpnd-doc-sell.LICENSE" + }, + { + "license_key": "hpnd-export-us", + "category": "Free Restricted", + "spdx_license_key": "HPND-export-US", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hpnd-export-us.json", + "yaml": "hpnd-export-us.yml", + "html": "hpnd-export-us.html", + "license": "hpnd-export-us.LICENSE" + }, + { + "license_key": "hpnd-fenneberg-livingston", + "category": "Permissive", + "spdx_license_key": "HPND-Fenneberg-Livingston", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hpnd-fenneberg-livingston.json", + "yaml": "hpnd-fenneberg-livingston.yml", + "html": "hpnd-fenneberg-livingston.html", + "license": "hpnd-fenneberg-livingston.LICENSE" + }, + { + "license_key": "hpnd-inria-imag", + "category": "Permissive", + "spdx_license_key": "HPND-INRIA-IMAG", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hpnd-inria-imag.json", + "yaml": "hpnd-inria-imag.yml", + "html": "hpnd-inria-imag.html", + "license": "hpnd-inria-imag.LICENSE" + }, + { + "license_key": "hpnd-mit-disclaimer", + "category": "Permissive", + "spdx_license_key": "HPND-MIT-disclaimer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hpnd-mit-disclaimer.json", + "yaml": "hpnd-mit-disclaimer.yml", + "html": "hpnd-mit-disclaimer.html", + "license": "hpnd-mit-disclaimer.LICENSE" + }, + { + "license_key": "hpnd-pbmplus", + "category": "Permissive", + "spdx_license_key": "HPND-Pbmplus", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hpnd-pbmplus.json", + "yaml": "hpnd-pbmplus.yml", + "html": "hpnd-pbmplus.html", + "license": "hpnd-pbmplus.LICENSE" + }, + { + "license_key": "hpnd-sell-mit-disclaimer-xserver", + "category": "Permissive", + "spdx_license_key": "HPND-sell-MIT-disclaimer-xserver", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hpnd-sell-mit-disclaimer-xserver.json", + "yaml": "hpnd-sell-mit-disclaimer-xserver.yml", + "html": "hpnd-sell-mit-disclaimer-xserver.html", + "license": "hpnd-sell-mit-disclaimer-xserver.LICENSE" + }, + { + "license_key": "hpnd-sell-regexpr", + "category": "Permissive", + "spdx_license_key": "HPND-sell-regexpr", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hpnd-sell-regexpr.json", + "yaml": "hpnd-sell-regexpr.yml", + "html": "hpnd-sell-regexpr.html", + "license": "hpnd-sell-regexpr.LICENSE" + }, + { + "license_key": "hpnd-sell-variant-mit-disclaimer", + "category": "Permissive", + "spdx_license_key": "HPND-sell-variant-MIT-disclaimer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hpnd-sell-variant-mit-disclaimer.json", + "yaml": "hpnd-sell-variant-mit-disclaimer.yml", + "html": "hpnd-sell-variant-mit-disclaimer.html", + "license": "hpnd-sell-variant-mit-disclaimer.LICENSE" + }, + { + "license_key": "hpnd-uc", + "category": "Permissive", + "spdx_license_key": "HPND-UC", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hpnd-uc.json", + "yaml": "hpnd-uc.yml", + "html": "hpnd-uc.html", + "license": "hpnd-uc.LICENSE" + }, + { + "license_key": "hs-regexp", + "category": "Permissive", + "spdx_license_key": "Spencer-94", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hs-regexp.json", + "yaml": "hs-regexp.yml", + "html": "hs-regexp.html", + "license": "hs-regexp.LICENSE" + }, + { + "license_key": "hs-regexp-orig", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "hs-regexp-orig.json", + "yaml": "hs-regexp-orig.yml", + "html": "hs-regexp-orig.html", + "license": "hs-regexp-orig.LICENSE" + }, + { + "license_key": "html5", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-html5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "html5.json", + "yaml": "html5.yml", + "html": "html5.html", + "license": "html5.LICENSE" + }, + { + "license_key": "httpget", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-httpget", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "httpget.json", + "yaml": "httpget.yml", + "html": "httpget.html", + "license": "httpget.LICENSE" + }, + { + "license_key": "huggingface-tos-20220915", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-huggingface-tos-20220915", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "huggingface-tos-20220915.json", + "yaml": "huggingface-tos-20220915.yml", + "html": "huggingface-tos-20220915.html", + "license": "huggingface-tos-20220915.LICENSE" + }, + { + "license_key": "hugo", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-hugo", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hugo.json", + "yaml": "hugo.yml", + "html": "hugo.html", + "license": "hugo.LICENSE" + }, + { + "license_key": "hxd", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-hxd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hxd.json", + "yaml": "hxd.yml", + "html": "hxd.html", + "license": "hxd.LICENSE" + }, + { + "license_key": "i2p-gpl-java-exception", + "category": "Copyleft Limited", + "spdx_license_key": "i2p-gpl-java-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "i2p-gpl-java-exception.json", + "yaml": "i2p-gpl-java-exception.yml", + "html": "i2p-gpl-java-exception.html", + "license": "i2p-gpl-java-exception.LICENSE" + }, + { + "license_key": "ian-kaplan", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ian-kaplan", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ian-kaplan.json", + "yaml": "ian-kaplan.yml", + "html": "ian-kaplan.html", + "license": "ian-kaplan.LICENSE" + }, + { + "license_key": "ian-piumarta", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ian-piumarta", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ian-piumarta.json", + "yaml": "ian-piumarta.yml", + "html": "ian-piumarta.html", + "license": "ian-piumarta.LICENSE" + }, + { + "license_key": "ibm-as-is", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ibm-as-is", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ibm-as-is.json", + "yaml": "ibm-as-is.yml", + "html": "ibm-as-is.html", + "license": "ibm-as-is.LICENSE" + }, + { + "license_key": "ibm-data-server-2011", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-ibm-data-server-2011", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ibm-data-server-2011.json", + "yaml": "ibm-data-server-2011.yml", + "html": "ibm-data-server-2011.html", + "license": "ibm-data-server-2011.LICENSE" + }, + { + "license_key": "ibm-developerworks-community-download", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ibm-developerworks-community", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ibm-developerworks-community-download" + ], + "is_exception": false, + "is_deprecated": false, + "json": "ibm-developerworks-community-download.json", + "yaml": "ibm-developerworks-community-download.yml", + "html": "ibm-developerworks-community-download.html", + "license": "ibm-developerworks-community-download.LICENSE" + }, + { + "license_key": "ibm-dhcp", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ibm-dhcp", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ibm-dhcp.json", + "yaml": "ibm-dhcp.yml", + "html": "ibm-dhcp.html", + "license": "ibm-dhcp.LICENSE" + }, + { + "license_key": "ibm-employee-written", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ibm-employee-written", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ibm-employee-written.json", + "yaml": "ibm-employee-written.yml", + "html": "ibm-employee-written.html", + "license": "ibm-employee-written.LICENSE" + }, + { + "license_key": "ibm-glextrusion", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ibm-glextrusion", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ibm-glextrusion.json", + "yaml": "ibm-glextrusion.yml", + "html": "ibm-glextrusion.html", + "license": "ibm-glextrusion.LICENSE" + }, + { + "license_key": "ibm-icu", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ibm-icu", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ibm-icu.json", + "yaml": "ibm-icu.yml", + "html": "ibm-icu.html", + "license": "ibm-icu.LICENSE" + }, + { + "license_key": "ibm-java-portlet-spec-2.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ibm-java-portlet-spec-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ibm-java-portlet-spec-2.0.json", + "yaml": "ibm-java-portlet-spec-2.0.yml", + "html": "ibm-java-portlet-spec-2.0.html", + "license": "ibm-java-portlet-spec-2.0.LICENSE" + }, + { + "license_key": "ibm-jre", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-ibm-jre", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ibm-jre.json", + "yaml": "ibm-jre.yml", + "html": "ibm-jre.html", + "license": "ibm-jre.LICENSE" + }, + { + "license_key": "ibm-nwsc", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ibm-nwsc", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ibm-nwsc.json", + "yaml": "ibm-nwsc.yml", + "html": "ibm-nwsc.html", + "license": "ibm-nwsc.LICENSE" + }, + { + "license_key": "ibm-pibs", + "category": "Permissive", + "spdx_license_key": "IBM-pibs", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ibm-pibs.json", + "yaml": "ibm-pibs.yml", + "html": "ibm-pibs.html", + "license": "ibm-pibs.LICENSE" + }, + { + "license_key": "ibm-sample", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ibm-sample", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ibm-sample.json", + "yaml": "ibm-sample.yml", + "html": "ibm-sample.html", + "license": "ibm-sample.LICENSE" + }, + { + "license_key": "ibmpl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "IPL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ibmpl-1.0.json", + "yaml": "ibmpl-1.0.yml", + "html": "ibmpl-1.0.html", + "license": "ibmpl-1.0.LICENSE" + }, + { + "license_key": "ibpp", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ibpp", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ibpp.json", + "yaml": "ibpp.yml", + "html": "ibpp.html", + "license": "ibpp.LICENSE" + }, + { + "license_key": "ic-1.0", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-ic-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ic-1.0.json", + "yaml": "ic-1.0.yml", + "html": "ic-1.0.html", + "license": "ic-1.0.LICENSE" + }, + { + "license_key": "ic-shared-1.0", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-ic-shared-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ic-shared-1.0.json", + "yaml": "ic-shared-1.0.yml", + "html": "ic-shared-1.0.html", + "license": "ic-shared-1.0.LICENSE" + }, + { + "license_key": "icann-public", + "category": "Public Domain", + "spdx_license_key": "LicenseRef-scancode-icann-public", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "icann-public.json", + "yaml": "icann-public.yml", + "html": "icann-public.html", + "license": "icann-public.LICENSE" + }, + { + "license_key": "ice-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-ice-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "ice-exception-2.0.json", + "yaml": "ice-exception-2.0.yml", + "html": "ice-exception-2.0.html", + "license": "ice-exception-2.0.LICENSE" + }, + { + "license_key": "icot-free", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-icot-free", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "icot-free.json", + "yaml": "icot-free.yml", + "html": "icot-free.html", + "license": "icot-free.LICENSE" + }, + { + "license_key": "idt-notice", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-idt-notice", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "idt-notice.json", + "yaml": "idt-notice.yml", + "html": "idt-notice.html", + "license": "idt-notice.LICENSE" + }, + { + "license_key": "iec-code-components-eula", + "category": "Permissive", + "spdx_license_key": "IEC-Code-Components-EULA", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "iec-code-components-eula.json", + "yaml": "iec-code-components-eula.yml", + "html": "iec-code-components-eula.html", + "license": "iec-code-components-eula.LICENSE" + }, + { + "license_key": "ietf", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ietf", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ietf.json", + "yaml": "ietf.yml", + "html": "ietf.html", + "license": "ietf.LICENSE" + }, + { + "license_key": "ietf-trust", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ietf-trust", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ietf-trust.json", + "yaml": "ietf-trust.yml", + "html": "ietf-trust.html", + "license": "ietf-trust.LICENSE" + }, + { + "license_key": "ijg", + "category": "Permissive", + "spdx_license_key": "IJG", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ijg.json", + "yaml": "ijg.yml", + "html": "ijg.html", + "license": "ijg.LICENSE" + }, + { + "license_key": "ijg-short", + "category": "Permissive", + "spdx_license_key": "IJG-short", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ijg-short.json", + "yaml": "ijg-short.yml", + "html": "ijg-short.html", + "license": "ijg-short.LICENSE" + }, + { + "license_key": "ilmid", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ilmid", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ilmid.json", + "yaml": "ilmid.yml", + "html": "ilmid.html", + "license": "ilmid.LICENSE" + }, + { + "license_key": "imagemagick", + "category": "Permissive", + "spdx_license_key": "ImageMagick", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "imagemagick.json", + "yaml": "imagemagick.yml", + "html": "imagemagick.html", + "license": "imagemagick.LICENSE" + }, + { + "license_key": "imagen", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-imagen", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "imagen.json", + "yaml": "imagen.yml", + "html": "imagen.html", + "license": "imagen.LICENSE" + }, + { + "license_key": "imlib2", + "category": "Copyleft Limited", + "spdx_license_key": "Imlib2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "imlib2.json", + "yaml": "imlib2.yml", + "html": "imlib2.html", + "license": "imlib2.LICENSE" + }, + { + "license_key": "independent-module-linking-exception", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-indie-module-linking-exception", + "other_spdx_license_keys": [ + "LicenseRef-scancode-independent-module-linking-exception" + ], + "is_exception": true, + "is_deprecated": false, + "json": "independent-module-linking-exception.json", + "yaml": "independent-module-linking-exception.yml", + "html": "independent-module-linking-exception.html", + "license": "independent-module-linking-exception.LICENSE" + }, + { + "license_key": "indiana-extreme", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-indiana-extreme", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "indiana-extreme.json", + "yaml": "indiana-extreme.yml", + "html": "indiana-extreme.html", + "license": "indiana-extreme.LICENSE" + }, + { + "license_key": "indiana-extreme-1.2", + "category": "Permissive", + "spdx_license_key": "xpp", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "indiana-extreme-1.2.json", + "yaml": "indiana-extreme-1.2.yml", + "html": "indiana-extreme-1.2.html", + "license": "indiana-extreme-1.2.LICENSE" + }, + { + "license_key": "infineon-free", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-infineon-free", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "infineon-free.json", + "yaml": "infineon-free.yml", + "html": "infineon-free.html", + "license": "infineon-free.LICENSE" + }, + { + "license_key": "info-zip", + "category": "Permissive", + "spdx_license_key": "Info-ZIP", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "info-zip.json", + "yaml": "info-zip.yml", + "html": "info-zip.html", + "license": "info-zip.LICENSE" + }, + { + "license_key": "info-zip-1997-10", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-info-zip-1997-10", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "info-zip-1997-10.json", + "yaml": "info-zip-1997-10.yml", + "html": "info-zip-1997-10.html", + "license": "info-zip-1997-10.LICENSE" + }, + { + "license_key": "info-zip-2001-01", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-info-zip-2001-01", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "info-zip-2001-01.json", + "yaml": "info-zip-2001-01.yml", + "html": "info-zip-2001-01.html", + "license": "info-zip-2001-01.LICENSE" + }, + { + "license_key": "info-zip-2002-02", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-info-zip-2002-02", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "info-zip-2002-02.json", + "yaml": "info-zip-2002-02.yml", + "html": "info-zip-2002-02.html", + "license": "info-zip-2002-02.LICENSE" + }, + { + "license_key": "info-zip-2003-05", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-info-zip-2003-05", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "info-zip-2003-05.json", + "yaml": "info-zip-2003-05.yml", + "html": "info-zip-2003-05.html", + "license": "info-zip-2003-05.LICENSE" + }, + { + "license_key": "info-zip-2004-05", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-info-zip-2004-05", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "info-zip-2004-05.json", + "yaml": "info-zip-2004-05.yml", + "html": "info-zip-2004-05.html", + "license": "info-zip-2004-05.LICENSE" + }, + { + "license_key": "info-zip-2005-02", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-info-zip-2005-02", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "info-zip-2005-02.json", + "yaml": "info-zip-2005-02.yml", + "html": "info-zip-2005-02.html", + "license": "info-zip-2005-02.LICENSE" + }, + { + "license_key": "info-zip-2007-03", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-info-zip-2007-03", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "info-zip-2007-03.json", + "yaml": "info-zip-2007-03.yml", + "html": "info-zip-2007-03.html", + "license": "info-zip-2007-03.LICENSE" + }, + { + "license_key": "info-zip-2009-01", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-info-zip-2009-01", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "info-zip-2009-01.json", + "yaml": "info-zip-2009-01.yml", + "html": "info-zip-2009-01.html", + "license": "info-zip-2009-01.LICENSE" + }, + { + "license_key": "infonode-1.1", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-infonode-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "infonode-1.1.json", + "yaml": "infonode-1.1.yml", + "html": "infonode-1.1.html", + "license": "infonode-1.1.LICENSE" + }, + { + "license_key": "initial-developer-public", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-initial-developer-public", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "initial-developer-public.json", + "yaml": "initial-developer-public.yml", + "html": "initial-developer-public.html", + "license": "initial-developer-public.LICENSE" + }, + { + "license_key": "inner-net-2.0", + "category": "Permissive", + "spdx_license_key": "Inner-Net-2.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-inner-net-2.0" + ], + "is_exception": false, + "is_deprecated": false, + "json": "inner-net-2.0.json", + "yaml": "inner-net-2.0.yml", + "html": "inner-net-2.0.html", + "license": "inner-net-2.0.LICENSE" + }, + { + "license_key": "inno-setup", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-inno-setup", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "inno-setup.json", + "yaml": "inno-setup.yml", + "html": "inno-setup.html", + "license": "inno-setup.LICENSE" + }, + { + "license_key": "inria-linking-exception", + "category": "Copyleft Limited", + "spdx_license_key": "QPL-1.0-INRIA-2004-exception", + "other_spdx_license_keys": [ + "LicenseRef-scancode-inria-linking-exception" + ], + "is_exception": true, + "is_deprecated": false, + "json": "inria-linking-exception.json", + "yaml": "inria-linking-exception.yml", + "html": "inria-linking-exception.html", + "license": "inria-linking-exception.LICENSE" + }, + { + "license_key": "installsite", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-installsite", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "installsite.json", + "yaml": "installsite.yml", + "html": "installsite.html", + "license": "installsite.LICENSE" + }, + { + "license_key": "intel", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-intel", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "intel.json", + "yaml": "intel.yml", + "html": "intel.html", + "license": "intel.LICENSE" + }, + { + "license_key": "intel-acpi", + "category": "Permissive", + "spdx_license_key": "Intel-ACPI", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "intel-acpi.json", + "yaml": "intel-acpi.yml", + "html": "intel-acpi.html", + "license": "intel-acpi.LICENSE" + }, + { + "license_key": "intel-bcl", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-intel-bcl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "intel-bcl.json", + "yaml": "intel-bcl.yml", + "html": "intel-bcl.html", + "license": "intel-bcl.LICENSE" + }, + { + "license_key": "intel-bsd", + "category": "Permissive", + "spdx_license_key": "BSD-3-Clause-acpica", + "other_spdx_license_keys": [ + "LicenseRef-scancode-intel-bsd" + ], + "is_exception": false, + "is_deprecated": false, + "json": "intel-bsd.json", + "yaml": "intel-bsd.yml", + "html": "intel-bsd.html", + "license": "intel-bsd.LICENSE" + }, + { + "license_key": "intel-bsd-2-clause", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-intel-bsd-2-clause", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "intel-bsd-2-clause.json", + "yaml": "intel-bsd-2-clause.yml", + "html": "intel-bsd-2-clause.html", + "license": "intel-bsd-2-clause.LICENSE" + }, + { + "license_key": "intel-bsd-export-control", + "category": "Permissive", + "spdx_license_key": "Intel", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "intel-bsd-export-control.json", + "yaml": "intel-bsd-export-control.yml", + "html": "intel-bsd-export-control.html", + "license": "intel-bsd-export-control.LICENSE" + }, + { + "license_key": "intel-code-samples", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-intel-code-samples", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "intel-code-samples.json", + "yaml": "intel-code-samples.yml", + "html": "intel-code-samples.html", + "license": "intel-code-samples.LICENSE" + }, + { + "license_key": "intel-confidential", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-intel-confidential", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "intel-confidential.json", + "yaml": "intel-confidential.yml", + "html": "intel-confidential.html", + "license": "intel-confidential.LICENSE" + }, + { + "license_key": "intel-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-intel-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "intel-firmware.json", + "yaml": "intel-firmware.yml", + "html": "intel-firmware.html", + "license": "intel-firmware.LICENSE" + }, + { + "license_key": "intel-master-eula-sw-dev-2016", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-intel-master-eula-sw-dev-2016", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "intel-master-eula-sw-dev-2016.json", + "yaml": "intel-master-eula-sw-dev-2016.yml", + "html": "intel-master-eula-sw-dev-2016.html", + "license": "intel-master-eula-sw-dev-2016.LICENSE" + }, + { + "license_key": "intel-material", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-intel-material", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "intel-material.json", + "yaml": "intel-material.yml", + "html": "intel-material.html", + "license": "intel-material.LICENSE" + }, + { + "license_key": "intel-mcu-2018", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-intel-mcu-2018", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "intel-mcu-2018.json", + "yaml": "intel-mcu-2018.yml", + "html": "intel-mcu-2018.html", + "license": "intel-mcu-2018.LICENSE" + }, + { + "license_key": "intel-microcode", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-intel-microcode", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "intel-microcode.json", + "yaml": "intel-microcode.yml", + "html": "intel-microcode.html", + "license": "intel-microcode.LICENSE" + }, + { + "license_key": "intel-osl-1989", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-intel-osl-1989", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "intel-osl-1989.json", + "yaml": "intel-osl-1989.yml", + "html": "intel-osl-1989.html", + "license": "intel-osl-1989.LICENSE" + }, + { + "license_key": "intel-osl-1993", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-intel-osl-1993", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "intel-osl-1993.json", + "yaml": "intel-osl-1993.yml", + "html": "intel-osl-1993.html", + "license": "intel-osl-1993.LICENSE" + }, + { + "license_key": "intel-royalty-free", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-intel-royalty-free", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "intel-royalty-free.json", + "yaml": "intel-royalty-free.yml", + "html": "intel-royalty-free.html", + "license": "intel-royalty-free.LICENSE" + }, + { + "license_key": "intel-sample-source-code-2015", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-intel-sample-source-code-2015", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "intel-sample-source-code-2015.json", + "yaml": "intel-sample-source-code-2015.yml", + "html": "intel-sample-source-code-2015.html", + "license": "intel-sample-source-code-2015.LICENSE" + }, + { + "license_key": "intel-scl", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-intel-scl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "intel-scl.json", + "yaml": "intel-scl.yml", + "html": "intel-scl.html", + "license": "intel-scl.LICENSE" + }, + { + "license_key": "interbase-1.0", + "category": "Copyleft", + "spdx_license_key": "Interbase-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "interbase-1.0.json", + "yaml": "interbase-1.0.yml", + "html": "interbase-1.0.html", + "license": "interbase-1.0.LICENSE" + }, + { + "license_key": "iolib-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "GNU-compiler-exception", + "other_spdx_license_keys": [ + "LicenseRef-scancode-iolib-exception-2.0" + ], + "is_exception": true, + "is_deprecated": false, + "json": "iolib-exception-2.0.json", + "yaml": "iolib-exception-2.0.yml", + "html": "iolib-exception-2.0.html", + "license": "iolib-exception-2.0.LICENSE" + }, + { + "license_key": "iozone", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-iozone", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "iozone.json", + "yaml": "iozone.yml", + "html": "iozone.html", + "license": "iozone.LICENSE" + }, + { + "license_key": "ipa-font", + "category": "Copyleft Limited", + "spdx_license_key": "IPA", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ipa-font.json", + "yaml": "ipa-font.yml", + "html": "ipa-font.html", + "license": "ipa-font.LICENSE" + }, + { + "license_key": "ipca", + "category": "CLA", + "spdx_license_key": "LicenseRef-scancode-ipca", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ipca.json", + "yaml": "ipca.yml", + "html": "ipca.html", + "license": "ipca.LICENSE" + }, + { + "license_key": "iptc-2006", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-iptc-2006", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "iptc-2006.json", + "yaml": "iptc-2006.yml", + "html": "iptc-2006.html", + "license": "iptc-2006.LICENSE" + }, + { + "license_key": "irfanview-eula", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-irfanview-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "irfanview-eula.json", + "yaml": "irfanview-eula.yml", + "html": "irfanview-eula.html", + "license": "irfanview-eula.LICENSE" + }, + { + "license_key": "isc", + "category": "Permissive", + "spdx_license_key": "ISC", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "isc.json", + "yaml": "isc.yml", + "html": "isc.html", + "license": "isc.LICENSE" + }, + { + "license_key": "iso-14496-10", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-iso-14496-10", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "iso-14496-10.json", + "yaml": "iso-14496-10.yml", + "html": "iso-14496-10.html", + "license": "iso-14496-10.LICENSE" + }, + { + "license_key": "iso-8879", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-iso-8879", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "iso-8879.json", + "yaml": "iso-8879.yml", + "html": "iso-8879.html", + "license": "iso-8879.LICENSE" + }, + { + "license_key": "iso-recorder", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-iso-recorder", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "iso-recorder.json", + "yaml": "iso-recorder.yml", + "html": "iso-recorder.html", + "license": "iso-recorder.LICENSE" + }, + { + "license_key": "isotope-cla", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-isotope-cla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "isotope-cla.json", + "yaml": "isotope-cla.yml", + "html": "isotope-cla.html", + "license": "isotope-cla.LICENSE" + }, + { + "license_key": "issl-2018", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-issl-2018", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "issl-2018.json", + "yaml": "issl-2018.yml", + "html": "issl-2018.html", + "license": "issl-2018.LICENSE" + }, + { + "license_key": "issl-2022", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-issl-2022", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "issl-2022.json", + "yaml": "issl-2022.yml", + "html": "issl-2022.html", + "license": "issl-2022.LICENSE" + }, + { + "license_key": "itc-eula", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-itc-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "itc-eula.json", + "yaml": "itc-eula.yml", + "html": "itc-eula.html", + "license": "itc-eula.LICENSE" + }, + { + "license_key": "itu", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-itu", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "itu.json", + "yaml": "itu.yml", + "html": "itu.html", + "license": "itu.LICENSE" + }, + { + "license_key": "itu-t", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-itu-t", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "itu-t.json", + "yaml": "itu-t.yml", + "html": "itu-t.html", + "license": "itu-t.LICENSE" + }, + { + "license_key": "itu-t-gpl", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-itu-t-gpl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "itu-t-gpl.json", + "yaml": "itu-t-gpl.yml", + "html": "itu-t-gpl.html", + "license": "itu-t-gpl.LICENSE" + }, + { + "license_key": "itunes", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-itunes", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "itunes.json", + "yaml": "itunes.yml", + "html": "itunes.html", + "license": "itunes.LICENSE" + }, + { + "license_key": "ja-sig", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ja-sig", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ja-sig.json", + "yaml": "ja-sig.yml", + "html": "ja-sig.html", + "license": "ja-sig.LICENSE" + }, + { + "license_key": "jahia-1.3.1", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-jahia-1.3.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jahia-1.3.1.json", + "yaml": "jahia-1.3.1.yml", + "html": "jahia-1.3.1.html", + "license": "jahia-1.3.1.LICENSE" + }, + { + "license_key": "jam", + "category": "Permissive", + "spdx_license_key": "Jam", + "other_spdx_license_keys": [ + "LicenseRef-scancode-jam" + ], + "is_exception": false, + "is_deprecated": false, + "json": "jam.json", + "yaml": "jam.yml", + "html": "jam.html", + "license": "jam.LICENSE" + }, + { + "license_key": "jam-stapl", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-jam-stapl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jam-stapl.json", + "yaml": "jam-stapl.yml", + "html": "jam-stapl.html", + "license": "jam-stapl.LICENSE" + }, + { + "license_key": "jamon", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-jamon", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jamon.json", + "yaml": "jamon.yml", + "html": "jamon.html", + "license": "jamon.LICENSE" + }, + { + "license_key": "jason-mayes", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-jason-mayes", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jason-mayes.json", + "yaml": "jason-mayes.yml", + "html": "jason-mayes.html", + "license": "jason-mayes.LICENSE" + }, + { + "license_key": "jasper-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-jasper-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jasper-1.0.json", + "yaml": "jasper-1.0.yml", + "html": "jasper-1.0.html", + "license": "jasper-1.0.LICENSE" + }, + { + "license_key": "jasper-2.0", + "category": "Permissive", + "spdx_license_key": "JasPer-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jasper-2.0.json", + "yaml": "jasper-2.0.yml", + "html": "jasper-2.0.html", + "license": "jasper-2.0.LICENSE" + }, + { + "license_key": "java-app-stub", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-java-app-stub", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "java-app-stub.json", + "yaml": "java-app-stub.yml", + "html": "java-app-stub.html", + "license": "java-app-stub.LICENSE" + }, + { + "license_key": "java-research-1.5", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-java-research-1.5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "java-research-1.5.json", + "yaml": "java-research-1.5.yml", + "html": "java-research-1.5.html", + "license": "java-research-1.5.LICENSE" + }, + { + "license_key": "java-research-1.6", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-java-research-1.6", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "java-research-1.6.json", + "yaml": "java-research-1.6.yml", + "html": "java-research-1.6.html", + "license": "java-research-1.6.LICENSE" + }, + { + "license_key": "javascript-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-javascript-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "javascript-exception-2.0.json", + "yaml": "javascript-exception-2.0.yml", + "html": "javascript-exception-2.0.html", + "license": "javascript-exception-2.0.LICENSE" + }, + { + "license_key": "jboss-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-jboss-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jboss-eula.json", + "yaml": "jboss-eula.yml", + "html": "jboss-eula.html", + "license": "jboss-eula.LICENSE" + }, + { + "license_key": "jdbm-1.00", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-jdbm-1.00", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jdbm-1.00.json", + "yaml": "jdbm-1.00.yml", + "html": "jdbm-1.00.html", + "license": "jdbm-1.00.LICENSE" + }, + { + "license_key": "jdom", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-jdom", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jdom.json", + "yaml": "jdom.yml", + "html": "jdom.html", + "license": "jdom.LICENSE" + }, + { + "license_key": "jelurida-public-1.1", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-jelurida-public-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jelurida-public-1.1.json", + "yaml": "jelurida-public-1.1.yml", + "html": "jelurida-public-1.1.html", + "license": "jelurida-public-1.1.LICENSE" + }, + { + "license_key": "jetbrains-purchase-terms", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-jetbrains-purchase-terms", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jetbrains-purchase-terms.json", + "yaml": "jetbrains-purchase-terms.yml", + "html": "jetbrains-purchase-terms.html", + "license": "jetbrains-purchase-terms.LICENSE" + }, + { + "license_key": "jetbrains-toolbox-open-source-3", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-jetbrains-toolbox-oss-3", + "other_spdx_license_keys": [ + "LicenseRef-scancode-jetbrains-toolbox-open-source-3" + ], + "is_exception": false, + "is_deprecated": false, + "json": "jetbrains-toolbox-open-source-3.json", + "yaml": "jetbrains-toolbox-open-source-3.yml", + "html": "jetbrains-toolbox-open-source-3.html", + "license": "jetbrains-toolbox-open-source-3.LICENSE" + }, + { + "license_key": "jetty", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-jetty", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jetty.json", + "yaml": "jetty.yml", + "html": "jetty.html", + "license": "jetty.LICENSE" + }, + { + "license_key": "jetty-ccla-1.1", + "category": "CLA", + "spdx_license_key": "LicenseRef-scancode-jetty-ccla-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jetty-ccla-1.1.json", + "yaml": "jetty-ccla-1.1.yml", + "html": "jetty-ccla-1.1.html", + "license": "jetty-ccla-1.1.LICENSE" + }, + { + "license_key": "jgraph", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-jgraph", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jgraph.json", + "yaml": "jgraph.yml", + "html": "jgraph.html", + "license": "jgraph.LICENSE" + }, + { + "license_key": "jgraph-general", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-jgraph-general", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jgraph-general.json", + "yaml": "jgraph-general.yml", + "html": "jgraph-general.html", + "license": "jgraph-general.LICENSE" + }, + { + "license_key": "jide-sla", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-jide-sla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jide-sla.json", + "yaml": "jide-sla.yml", + "html": "jide-sla.html", + "license": "jide-sla.LICENSE" + }, + { + "license_key": "jj2000", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-jj2000", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jj2000.json", + "yaml": "jj2000.yml", + "html": "jj2000.html", + "license": "jj2000.LICENSE" + }, + { + "license_key": "jmagnetic", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-jmagnetic", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jmagnetic.json", + "yaml": "jmagnetic.yml", + "html": "jmagnetic.html", + "license": "jmagnetic.LICENSE" + }, + { + "license_key": "josl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-josl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "josl-1.0.json", + "yaml": "josl-1.0.yml", + "html": "josl-1.0.html", + "license": "josl-1.0.LICENSE" + }, + { + "license_key": "jpegxr", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-jpegxr", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jpegxr.json", + "yaml": "jpegxr.yml", + "html": "jpegxr.html", + "license": "jpegxr.LICENSE" + }, + { + "license_key": "jpl-image", + "category": "Source-available", + "spdx_license_key": "JPL-image", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jpl-image.json", + "yaml": "jpl-image.yml", + "html": "jpl-image.html", + "license": "jpl-image.LICENSE" + }, + { + "license_key": "jpnic-idnkit", + "category": "Permissive", + "spdx_license_key": "JPNIC", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jpnic-idnkit.json", + "yaml": "jpnic-idnkit.yml", + "html": "jpnic-idnkit.html", + "license": "jpnic-idnkit.LICENSE" + }, + { + "license_key": "jpnic-mdnkit", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-jpnic-mdnkit", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jpnic-mdnkit.json", + "yaml": "jpnic-mdnkit.yml", + "html": "jpnic-mdnkit.html", + "license": "jpnic-mdnkit.LICENSE" + }, + { + "license_key": "jprs-oscl-1.1", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-jprs-oscl-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jprs-oscl-1.1.json", + "yaml": "jprs-oscl-1.1.yml", + "html": "jprs-oscl-1.1.html", + "license": "jprs-oscl-1.1.LICENSE" + }, + { + "license_key": "jpython-1.1", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-jpython-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jpython-1.1.json", + "yaml": "jpython-1.1.yml", + "html": "jpython-1.1.html", + "license": "jpython-1.1.LICENSE" + }, + { + "license_key": "jquery-pd", + "category": "Public Domain", + "spdx_license_key": "LicenseRef-scancode-jquery-pd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jquery-pd.json", + "yaml": "jquery-pd.yml", + "html": "jquery-pd.html", + "license": "jquery-pd.LICENSE" + }, + { + "license_key": "jrunner", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-jrunner", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jrunner.json", + "yaml": "jrunner.yml", + "html": "jrunner.html", + "license": "jrunner.LICENSE" + }, + { + "license_key": "jscheme", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-jscheme", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jscheme.json", + "yaml": "jscheme.yml", + "html": "jscheme.html", + "license": "jscheme.LICENSE" + }, + { + "license_key": "jsel-2.0", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-jsel-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jsel-2.0.json", + "yaml": "jsel-2.0.yml", + "html": "jsel-2.0.html", + "license": "jsel-2.0.LICENSE" + }, + { + "license_key": "jsfromhell", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-jsfromhell", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jsfromhell.json", + "yaml": "jsfromhell.yml", + "html": "jsfromhell.html", + "license": "jsfromhell.LICENSE" + }, + { + "license_key": "json", + "category": "Permissive", + "spdx_license_key": "JSON", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "json.json", + "yaml": "json.yml", + "html": "json.html", + "license": "json.LICENSE" + }, + { + "license_key": "json-js-pd", + "category": "Public Domain", + "spdx_license_key": "LicenseRef-scancode-json-js-pd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "json-js-pd.json", + "yaml": "json-js-pd.yml", + "html": "json-js-pd.html", + "license": "json-js-pd.LICENSE" + }, + { + "license_key": "json-pd", + "category": "Public Domain", + "spdx_license_key": "LicenseRef-scancode-json-pd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "json-pd.json", + "yaml": "json-pd.yml", + "html": "json-pd.html", + "license": "json-pd.LICENSE" + }, + { + "license_key": "jsr-107-jcache-spec", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-jsr-107-jcache-spec", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jsr-107-jcache-spec.json", + "yaml": "jsr-107-jcache-spec.yml", + "html": "jsr-107-jcache-spec.html", + "license": "jsr-107-jcache-spec.LICENSE" + }, + { + "license_key": "jsr-107-jcache-spec-2013", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-jsr-107-jcache-spec-2013", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jsr-107-jcache-spec-2013.json", + "yaml": "jsr-107-jcache-spec-2013.yml", + "html": "jsr-107-jcache-spec-2013.html", + "license": "jsr-107-jcache-spec-2013.LICENSE" + }, + { + "license_key": "jython", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-jython", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jython.json", + "yaml": "jython.yml", + "html": "jython.html", + "license": "jython.LICENSE" + }, + { + "license_key": "kalle-kaukonen", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-kalle-kaukonen", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "kalle-kaukonen.json", + "yaml": "kalle-kaukonen.yml", + "html": "kalle-kaukonen.html", + "license": "kalle-kaukonen.LICENSE" + }, + { + "license_key": "karl-peterson", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-karl-peterson", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "karl-peterson.json", + "yaml": "karl-peterson.yml", + "html": "karl-peterson.html", + "license": "karl-peterson.LICENSE" + }, + { + "license_key": "kastrup", + "category": "Permissive", + "spdx_license_key": "Kastrup", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "kastrup.json", + "yaml": "kastrup.yml", + "html": "kastrup.html", + "license": "kastrup.LICENSE" + }, + { + "license_key": "katharos-0.1.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-katharos-0.1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "katharos-0.1.0.json", + "yaml": "katharos-0.1.0.yml", + "html": "katharos-0.1.0.html", + "license": "katharos-0.1.0.LICENSE" + }, + { + "license_key": "katharos-0.2.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-katharos-0.2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "katharos-0.2.0.json", + "yaml": "katharos-0.2.0.yml", + "html": "katharos-0.2.0.html", + "license": "katharos-0.2.0.LICENSE" + }, + { + "license_key": "kazlib", + "category": "Permissive", + "spdx_license_key": "Kazlib", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "kazlib.json", + "yaml": "kazlib.yml", + "html": "kazlib.html", + "license": "kazlib.LICENSE" + }, + { + "license_key": "kde-accepted-gpl", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-kde-accepted-gpl", + "other_spdx_license_keys": [ + "LicenseRef-KDE-Accepted-GPL" + ], + "is_exception": false, + "is_deprecated": false, + "json": "kde-accepted-gpl.json", + "yaml": "kde-accepted-gpl.yml", + "html": "kde-accepted-gpl.html", + "license": "kde-accepted-gpl.LICENSE" + }, + { + "license_key": "kde-accepted-lgpl", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-kde-accepted-lgpl", + "other_spdx_license_keys": [ + "LicenseRef-KDE-Accepted-LGPL" + ], + "is_exception": false, + "is_deprecated": false, + "json": "kde-accepted-lgpl.json", + "yaml": "kde-accepted-lgpl.yml", + "html": "kde-accepted-lgpl.html", + "license": "kde-accepted-lgpl.LICENSE" + }, + { + "license_key": "keith-rule", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-keith-rule", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "keith-rule.json", + "yaml": "keith-rule.yml", + "html": "keith-rule.html", + "license": "keith-rule.LICENSE" + }, + { + "license_key": "kerberos", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-kerberos", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "kerberos.json", + "yaml": "kerberos.yml", + "html": "kerberos.html", + "license": "kerberos.LICENSE" + }, + { + "license_key": "kevan-stannard", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-kevan-stannard", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "kevan-stannard.json", + "yaml": "kevan-stannard.yml", + "html": "kevan-stannard.html", + "license": "kevan-stannard.LICENSE" + }, + { + "license_key": "kevlin-henney", + "category": "Permissive", + "spdx_license_key": "HPND-Kevlin-Henney", + "other_spdx_license_keys": [ + "LicenseRef-scancode-kevlin-henney" + ], + "is_exception": false, + "is_deprecated": false, + "json": "kevlin-henney.json", + "yaml": "kevlin-henney.yml", + "html": "kevlin-henney.html", + "license": "kevlin-henney.LICENSE" + }, + { + "license_key": "keypirinha", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-keypirinha", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "keypirinha.json", + "yaml": "keypirinha.yml", + "html": "keypirinha.html", + "license": "keypirinha.LICENSE" + }, + { + "license_key": "kfgqpc-uthmanic-script-hafs", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-kfgqpc-uthmanic-script-hafs", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "kfgqpc-uthmanic-script-hafs.json", + "yaml": "kfgqpc-uthmanic-script-hafs.yml", + "html": "kfgqpc-uthmanic-script-hafs.html", + "license": "kfgqpc-uthmanic-script-hafs.LICENSE" + }, + { + "license_key": "kfqf-accepted-gpl", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-kfqf-accepted-gpl", + "other_spdx_license_keys": [ + "LicenseRef-KFQF-Accepted-GPL" + ], + "is_exception": true, + "is_deprecated": false, + "json": "kfqf-accepted-gpl.json", + "yaml": "kfqf-accepted-gpl.yml", + "html": "kfqf-accepted-gpl.html", + "license": "kfqf-accepted-gpl.LICENSE" + }, + { + "license_key": "khronos", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-khronos", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "khronos.json", + "yaml": "khronos.yml", + "html": "khronos.html", + "license": "khronos.LICENSE" + }, + { + "license_key": "kicad-libraries-exception", + "category": "Copyleft Limited", + "spdx_license_key": "KiCad-libraries-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "kicad-libraries-exception.json", + "yaml": "kicad-libraries-exception.yml", + "html": "kicad-libraries-exception.html", + "license": "kicad-libraries-exception.LICENSE" + }, + { + "license_key": "knuth-ctan", + "category": "Permissive", + "spdx_license_key": "Knuth-CTAN", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "knuth-ctan.json", + "yaml": "knuth-ctan.yml", + "html": "knuth-ctan.html", + "license": "knuth-ctan.LICENSE" + }, + { + "license_key": "ko-man-page", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ko-man-page", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ko-man-page.json", + "yaml": "ko-man-page.yml", + "html": "ko-man-page.html", + "license": "ko-man-page.LICENSE" + }, + { + "license_key": "kreative-relay-fonts-free-use-1.2f", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-kreative-relay-fonts-free-1.2f", + "other_spdx_license_keys": [ + "LicenseRef-scancode-kreative-relay-fonts-free-use-1.2f" + ], + "is_exception": false, + "is_deprecated": false, + "json": "kreative-relay-fonts-free-use-1.2f.json", + "yaml": "kreative-relay-fonts-free-use-1.2f.yml", + "html": "kreative-relay-fonts-free-use-1.2f.html", + "license": "kreative-relay-fonts-free-use-1.2f.LICENSE" + }, + { + "license_key": "kumar-robotics", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-kumar-robotics", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "kumar-robotics.json", + "yaml": "kumar-robotics.yml", + "html": "kumar-robotics.html", + "license": "kumar-robotics.LICENSE" + }, + { + "license_key": "lal-1.2", + "category": "Copyleft", + "spdx_license_key": "LAL-1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lal-1.2.json", + "yaml": "lal-1.2.yml", + "html": "lal-1.2.html", + "license": "lal-1.2.LICENSE" + }, + { + "license_key": "lal-1.3", + "category": "Copyleft", + "spdx_license_key": "LAL-1.3", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lal-1.3.json", + "yaml": "lal-1.3.yml", + "html": "lal-1.3.html", + "license": "lal-1.3.LICENSE" + }, + { + "license_key": "lance-norskog-license", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-lance-norskog-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lance-norskog-license.json", + "yaml": "lance-norskog-license.yml", + "html": "lance-norskog-license.html", + "license": "lance-norskog-license.LICENSE" + }, + { + "license_key": "larabie", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-larabie", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "larabie.json", + "yaml": "larabie.yml", + "html": "larabie.html", + "license": "larabie.LICENSE" + }, + { + "license_key": "latex2e", + "category": "Permissive", + "spdx_license_key": "Latex2e", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "latex2e.json", + "yaml": "latex2e.yml", + "html": "latex2e.html", + "license": "latex2e.LICENSE" + }, + { + "license_key": "latex2e-translated-notice", + "category": "Permissive", + "spdx_license_key": "Latex2e-translated-notice", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "latex2e-translated-notice.json", + "yaml": "latex2e-translated-notice.yml", + "html": "latex2e-translated-notice.html", + "license": "latex2e-translated-notice.LICENSE" + }, + { + "license_key": "lattice-osl-2017", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-lattice-osl-2017", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lattice-osl-2017.json", + "yaml": "lattice-osl-2017.yml", + "html": "lattice-osl-2017.html", + "license": "lattice-osl-2017.LICENSE" + }, + { + "license_key": "lavantech", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-lavantech", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lavantech.json", + "yaml": "lavantech.yml", + "html": "lavantech.html", + "license": "lavantech.LICENSE" + }, + { + "license_key": "lbnl-bsd", + "category": "Permissive", + "spdx_license_key": "BSD-3-Clause-LBNL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lbnl-bsd.json", + "yaml": "lbnl-bsd.yml", + "html": "lbnl-bsd.html", + "license": "lbnl-bsd.LICENSE" + }, + { + "license_key": "lcs-telegraphics", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-lcs-telegraphics", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lcs-telegraphics.json", + "yaml": "lcs-telegraphics.yml", + "html": "lcs-telegraphics.html", + "license": "lcs-telegraphics.LICENSE" + }, + { + "license_key": "ldap-sdk-free-use", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ldap-sdk-free-use", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ldap-sdk-free-use.json", + "yaml": "ldap-sdk-free-use.yml", + "html": "ldap-sdk-free-use.html", + "license": "ldap-sdk-free-use.LICENSE" + }, + { + "license_key": "ldpc-1994", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-ldpc-1994", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ldpc-1994.json", + "yaml": "ldpc-1994.yml", + "html": "ldpc-1994.html", + "license": "ldpc-1994.LICENSE" + }, + { + "license_key": "ldpc-1997", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-ldpc-1997", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ldpc-1997.json", + "yaml": "ldpc-1997.yml", + "html": "ldpc-1997.html", + "license": "ldpc-1997.LICENSE" + }, + { + "license_key": "ldpc-1999", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-ldpc-1999", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ldpc-1999.json", + "yaml": "ldpc-1999.yml", + "html": "ldpc-1999.html", + "license": "ldpc-1999.LICENSE" + }, + { + "license_key": "ldpgpl-1", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-ldpgpl-1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ldpgpl-1.json", + "yaml": "ldpgpl-1.yml", + "html": "ldpgpl-1.html", + "license": "ldpgpl-1.LICENSE" + }, + { + "license_key": "ldpgpl-1a", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-ldpgpl-1a", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ldpgpl-1a.json", + "yaml": "ldpgpl-1a.yml", + "html": "ldpgpl-1a.html", + "license": "ldpgpl-1a.LICENSE" + }, + { + "license_key": "ldpl-2.0", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-ldpl-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ldpl-2.0.json", + "yaml": "ldpl-2.0.yml", + "html": "ldpl-2.0.html", + "license": "ldpl-2.0.LICENSE" + }, + { + "license_key": "ldpm-1998", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-ldpm-1998", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ldpm-1998.json", + "yaml": "ldpm-1998.yml", + "html": "ldpm-1998.html", + "license": "ldpm-1998.LICENSE" + }, + { + "license_key": "leap-motion-sdk-2019", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-leap-motion-sdk-2019", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "leap-motion-sdk-2019.json", + "yaml": "leap-motion-sdk-2019.yml", + "html": "leap-motion-sdk-2019.html", + "license": "leap-motion-sdk-2019.LICENSE" + }, + { + "license_key": "leptonica", + "category": "Permissive", + "spdx_license_key": "Leptonica", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "leptonica.json", + "yaml": "leptonica.yml", + "html": "leptonica.html", + "license": "leptonica.LICENSE" + }, + { + "license_key": "lgpl-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "LGPL-2.0-only", + "other_spdx_license_keys": [ + "LGPL-2.0", + "LicenseRef-LGPL-2", + "LicenseRef-LGPL-2.0" + ], + "is_exception": false, + "is_deprecated": false, + "json": "lgpl-2.0.json", + "yaml": "lgpl-2.0.yml", + "html": "lgpl-2.0.html", + "license": "lgpl-2.0.LICENSE" + }, + { + "license_key": "lgpl-2.0-fltk", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "lgpl-2.0-fltk.json", + "yaml": "lgpl-2.0-fltk.yml", + "html": "lgpl-2.0-fltk.html", + "license": "lgpl-2.0-fltk.LICENSE" + }, + { + "license_key": "lgpl-2.0-plus", + "category": "Copyleft Limited", + "spdx_license_key": "LGPL-2.0-or-later", + "other_spdx_license_keys": [ + "LGPL-2.0+", + "LicenseRef-LGPL" + ], + "is_exception": false, + "is_deprecated": false, + "json": "lgpl-2.0-plus.json", + "yaml": "lgpl-2.0-plus.yml", + "html": "lgpl-2.0-plus.html", + "license": "lgpl-2.0-plus.LICENSE" + }, + { + "license_key": "lgpl-2.0-plus-gcc", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "lgpl-2.0-plus-gcc.json", + "yaml": "lgpl-2.0-plus-gcc.yml", + "html": "lgpl-2.0-plus-gcc.html", + "license": "lgpl-2.0-plus-gcc.LICENSE" + }, + { + "license_key": "lgpl-2.1", + "category": "Copyleft Limited", + "spdx_license_key": "LGPL-2.1-only", + "other_spdx_license_keys": [ + "LGPL-2.1", + "LicenseRef-LGPL-2.1" + ], + "is_exception": false, + "is_deprecated": false, + "json": "lgpl-2.1.json", + "yaml": "lgpl-2.1.yml", + "html": "lgpl-2.1.html", + "license": "lgpl-2.1.LICENSE" + }, + { + "license_key": "lgpl-2.1-digia-qt", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "lgpl-2.1-digia-qt.json", + "yaml": "lgpl-2.1-digia-qt.yml", + "html": "lgpl-2.1-digia-qt.html", + "license": "lgpl-2.1-digia-qt.LICENSE" + }, + { + "license_key": "lgpl-2.1-nokia-qt", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "lgpl-2.1-nokia-qt.json", + "yaml": "lgpl-2.1-nokia-qt.yml", + "html": "lgpl-2.1-nokia-qt.html", + "license": "lgpl-2.1-nokia-qt.LICENSE" + }, + { + "license_key": "lgpl-2.1-nokia-qt-1.0", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "lgpl-2.1-nokia-qt-1.0.json", + "yaml": "lgpl-2.1-nokia-qt-1.0.yml", + "html": "lgpl-2.1-nokia-qt-1.0.html", + "license": "lgpl-2.1-nokia-qt-1.0.LICENSE" + }, + { + "license_key": "lgpl-2.1-nokia-qt-1.1", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "lgpl-2.1-nokia-qt-1.1.json", + "yaml": "lgpl-2.1-nokia-qt-1.1.yml", + "html": "lgpl-2.1-nokia-qt-1.1.html", + "license": "lgpl-2.1-nokia-qt-1.1.LICENSE" + }, + { + "license_key": "lgpl-2.1-plus", + "category": "Copyleft Limited", + "spdx_license_key": "LGPL-2.1-or-later", + "other_spdx_license_keys": [ + "LGPL-2.1+" + ], + "is_exception": false, + "is_deprecated": false, + "json": "lgpl-2.1-plus.json", + "yaml": "lgpl-2.1-plus.yml", + "html": "lgpl-2.1-plus.html", + "license": "lgpl-2.1-plus.LICENSE" + }, + { + "license_key": "lgpl-2.1-plus-linking", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "lgpl-2.1-plus-linking.json", + "yaml": "lgpl-2.1-plus-linking.yml", + "html": "lgpl-2.1-plus-linking.html", + "license": "lgpl-2.1-plus-linking.LICENSE" + }, + { + "license_key": "lgpl-2.1-plus-unlimited-linking", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "lgpl-2.1-plus-unlimited-linking.json", + "yaml": "lgpl-2.1-plus-unlimited-linking.yml", + "html": "lgpl-2.1-plus-unlimited-linking.html", + "license": "lgpl-2.1-plus-unlimited-linking.LICENSE" + }, + { + "license_key": "lgpl-2.1-qt-company", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "lgpl-2.1-qt-company.json", + "yaml": "lgpl-2.1-qt-company.yml", + "html": "lgpl-2.1-qt-company.html", + "license": "lgpl-2.1-qt-company.LICENSE" + }, + { + "license_key": "lgpl-2.1-qt-company-2017", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "lgpl-2.1-qt-company-2017.json", + "yaml": "lgpl-2.1-qt-company-2017.yml", + "html": "lgpl-2.1-qt-company-2017.html", + "license": "lgpl-2.1-qt-company-2017.LICENSE" + }, + { + "license_key": "lgpl-2.1-rxtx", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "lgpl-2.1-rxtx.json", + "yaml": "lgpl-2.1-rxtx.yml", + "html": "lgpl-2.1-rxtx.html", + "license": "lgpl-2.1-rxtx.LICENSE" + }, + { + "license_key": "lgpl-2.1-spell-checker", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "lgpl-2.1-spell-checker.json", + "yaml": "lgpl-2.1-spell-checker.yml", + "html": "lgpl-2.1-spell-checker.html", + "license": "lgpl-2.1-spell-checker.LICENSE" + }, + { + "license_key": "lgpl-3-plus-linking", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "lgpl-3-plus-linking.json", + "yaml": "lgpl-3-plus-linking.yml", + "html": "lgpl-3-plus-linking.html", + "license": "lgpl-3-plus-linking.LICENSE" + }, + { + "license_key": "lgpl-3.0", + "category": "Copyleft Limited", + "spdx_license_key": "LGPL-3.0-only", + "other_spdx_license_keys": [ + "LGPL-3.0" + ], + "is_exception": false, + "is_deprecated": false, + "json": "lgpl-3.0.json", + "yaml": "lgpl-3.0.yml", + "html": "lgpl-3.0.html", + "license": "lgpl-3.0.LICENSE" + }, + { + "license_key": "lgpl-3.0-cygwin", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "lgpl-3.0-cygwin.json", + "yaml": "lgpl-3.0-cygwin.yml", + "html": "lgpl-3.0-cygwin.html", + "license": "lgpl-3.0-cygwin.LICENSE" + }, + { + "license_key": "lgpl-3.0-linking-exception", + "category": "Copyleft Limited", + "spdx_license_key": "LGPL-3.0-linking-exception", + "other_spdx_license_keys": [ + "LicenseRef-scancode-lgpl-3-plus-linking", + "LicenseRef-scancode-linking-exception-lgpl-3.0" + ], + "is_exception": true, + "is_deprecated": false, + "json": "lgpl-3.0-linking-exception.json", + "yaml": "lgpl-3.0-linking-exception.yml", + "html": "lgpl-3.0-linking-exception.html", + "license": "lgpl-3.0-linking-exception.LICENSE" + }, + { + "license_key": "lgpl-3.0-plus", + "category": "Copyleft Limited", + "spdx_license_key": "LGPL-3.0-or-later", + "other_spdx_license_keys": [ + "LGPL-3.0+" + ], + "is_exception": false, + "is_deprecated": false, + "json": "lgpl-3.0-plus.json", + "yaml": "lgpl-3.0-plus.yml", + "html": "lgpl-3.0-plus.html", + "license": "lgpl-3.0-plus.LICENSE" + }, + { + "license_key": "lgpl-3.0-plus-openssl", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "lgpl-3.0-plus-openssl.json", + "yaml": "lgpl-3.0-plus-openssl.yml", + "html": "lgpl-3.0-plus-openssl.html", + "license": "lgpl-3.0-plus-openssl.LICENSE" + }, + { + "license_key": "lgpl-3.0-zeromq", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "lgpl-3.0-zeromq.json", + "yaml": "lgpl-3.0-zeromq.yml", + "html": "lgpl-3.0-zeromq.html", + "license": "lgpl-3.0-zeromq.LICENSE" + }, + { + "license_key": "lgpllr", + "category": "Copyleft Limited", + "spdx_license_key": "LGPLLR", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lgpllr.json", + "yaml": "lgpllr.yml", + "html": "lgpllr.html", + "license": "lgpllr.LICENSE" + }, + { + "license_key": "lha", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-lha", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lha.json", + "yaml": "lha.yml", + "html": "lha.html", + "license": "lha.LICENSE" + }, + { + "license_key": "libcap", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "libcap.json", + "yaml": "libcap.yml", + "html": "libcap.html", + "license": "libcap.LICENSE" + }, + { + "license_key": "liberation-font-exception", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-liberation-font-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "liberation-font-exception.json", + "yaml": "liberation-font-exception.yml", + "html": "liberation-font-exception.html", + "license": "liberation-font-exception.LICENSE" + }, + { + "license_key": "libgd-2018", + "category": "Permissive", + "spdx_license_key": "GD", + "other_spdx_license_keys": [ + "LicenseRef-scancode-libgd-2018" + ], + "is_exception": false, + "is_deprecated": false, + "json": "libgd-2018.json", + "yaml": "libgd-2018.yml", + "html": "libgd-2018.html", + "license": "libgd-2018.LICENSE" + }, + { + "license_key": "libgeotiff", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-libgeotiff", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "libgeotiff.json", + "yaml": "libgeotiff.yml", + "html": "libgeotiff.html", + "license": "libgeotiff.LICENSE" + }, + { + "license_key": "libmib", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-libmib", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "libmib.json", + "yaml": "libmib.yml", + "html": "libmib.html", + "license": "libmib.LICENSE" + }, + { + "license_key": "libmng-2007", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-libmng-2007", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "libmng-2007.json", + "yaml": "libmng-2007.yml", + "html": "libmng-2007.html", + "license": "libmng-2007.LICENSE" + }, + { + "license_key": "libpbm", + "category": "Permissive", + "spdx_license_key": "xlock", + "other_spdx_license_keys": [ + "LicenseRef-scancode-libpbm" + ], + "is_exception": false, + "is_deprecated": false, + "json": "libpbm.json", + "yaml": "libpbm.yml", + "html": "libpbm.html", + "license": "libpbm.LICENSE" + }, + { + "license_key": "libpng", + "category": "Permissive", + "spdx_license_key": "Libpng", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "libpng.json", + "yaml": "libpng.yml", + "html": "libpng.html", + "license": "libpng.LICENSE" + }, + { + "license_key": "libpng-v2", + "category": "Permissive", + "spdx_license_key": "libpng-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "libpng-v2.json", + "yaml": "libpng-v2.yml", + "html": "libpng-v2.html", + "license": "libpng-v2.LICENSE" + }, + { + "license_key": "libpri-openh323-exception", + "category": "Copyleft", + "spdx_license_key": "libpri-OpenH323-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "libpri-openh323-exception.json", + "yaml": "libpri-openh323-exception.yml", + "html": "libpri-openh323-exception.html", + "license": "libpri-openh323-exception.LICENSE" + }, + { + "license_key": "librato-exception", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-librato-exception", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "librato-exception.json", + "yaml": "librato-exception.yml", + "html": "librato-exception.html", + "license": "librato-exception.LICENSE" + }, + { + "license_key": "libselinux-pd", + "category": "Public Domain", + "spdx_license_key": "LicenseRef-scancode-libselinux-pd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "libselinux-pd.json", + "yaml": "libselinux-pd.yml", + "html": "libselinux-pd.html", + "license": "libselinux-pd.LICENSE" + }, + { + "license_key": "libsrv-1.0.2", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-libsrv-1.0.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "libsrv-1.0.2.json", + "yaml": "libsrv-1.0.2.yml", + "html": "libsrv-1.0.2.html", + "license": "libsrv-1.0.2.LICENSE" + }, + { + "license_key": "libtool-exception", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "libtool-exception.json", + "yaml": "libtool-exception.yml", + "html": "libtool-exception.html", + "license": "libtool-exception.LICENSE" + }, + { + "license_key": "libtool-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "Libtool-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "libtool-exception-2.0.json", + "yaml": "libtool-exception-2.0.yml", + "html": "libtool-exception-2.0.html", + "license": "libtool-exception-2.0.LICENSE" + }, + { + "license_key": "libtool-exception-lgpl", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-libtool-exception-lgpl", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "libtool-exception-lgpl.json", + "yaml": "libtool-exception-lgpl.yml", + "html": "libtool-exception-lgpl.html", + "license": "libtool-exception-lgpl.LICENSE" + }, + { + "license_key": "libutil-david-nugent", + "category": "Permissive", + "spdx_license_key": "libutil-David-Nugent", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "libutil-david-nugent.json", + "yaml": "libutil-david-nugent.yml", + "html": "libutil-david-nugent.html", + "license": "libutil-david-nugent.LICENSE" + }, + { + "license_key": "libwebsockets-exception", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-libwebsockets-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "libwebsockets-exception.json", + "yaml": "libwebsockets-exception.yml", + "html": "libwebsockets-exception.html", + "license": "libwebsockets-exception.LICENSE" + }, + { + "license_key": "libzip", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "libzip.json", + "yaml": "libzip.yml", + "html": "libzip.html", + "license": "libzip.LICENSE" + }, + { + "license_key": "license-file-reference", + "category": "Unstated License", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "license-file-reference.json", + "yaml": "license-file-reference.yml", + "html": "license-file-reference.html", + "license": "license-file-reference.LICENSE" + }, + { + "license_key": "liferay-dxp-eula-2.0.0-2023-06", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-Liferay-DXP-EULA-2.0.0-2023-06", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "liferay-dxp-eula-2.0.0-2023-06.json", + "yaml": "liferay-dxp-eula-2.0.0-2023-06.yml", + "html": "liferay-dxp-eula-2.0.0-2023-06.html", + "license": "liferay-dxp-eula-2.0.0-2023-06.LICENSE" + }, + { + "license_key": "liferay-ee", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-liferay-ee", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "liferay-ee.json", + "yaml": "liferay-ee.yml", + "html": "liferay-ee.html", + "license": "liferay-ee.LICENSE" + }, + { + "license_key": "liferay-marketplace-tos", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-liferay-marketplace-tos", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "liferay-marketplace-tos.json", + "yaml": "liferay-marketplace-tos.yml", + "html": "liferay-marketplace-tos.html", + "license": "liferay-marketplace-tos.LICENSE" + }, + { + "license_key": "lil-1", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-lil-1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lil-1.json", + "yaml": "lil-1.yml", + "html": "lil-1.html", + "license": "lil-1.LICENSE" + }, + { + "license_key": "liliq-p-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "LiLiQ-P-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "liliq-p-1.1.json", + "yaml": "liliq-p-1.1.yml", + "html": "liliq-p-1.1.html", + "license": "liliq-p-1.1.LICENSE" + }, + { + "license_key": "liliq-r-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "LiLiQ-R-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "liliq-r-1.1.json", + "yaml": "liliq-r-1.1.yml", + "html": "liliq-r-1.1.html", + "license": "liliq-r-1.1.LICENSE" + }, + { + "license_key": "liliq-rplus-1.1", + "category": "Copyleft", + "spdx_license_key": "LiLiQ-Rplus-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "liliq-rplus-1.1.json", + "yaml": "liliq-rplus-1.1.yml", + "html": "liliq-rplus-1.1.html", + "license": "liliq-rplus-1.1.LICENSE" + }, + { + "license_key": "lilo", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-lilo", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lilo.json", + "yaml": "lilo.yml", + "html": "lilo.html", + "license": "lilo.LICENSE" + }, + { + "license_key": "linking-exception-2.0-plus", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-linking-exception-2.0-plus", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "linking-exception-2.0-plus.json", + "yaml": "linking-exception-2.0-plus.yml", + "html": "linking-exception-2.0-plus.html", + "license": "linking-exception-2.0-plus.LICENSE" + }, + { + "license_key": "linking-exception-2.1-plus", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-linking-exception-2.1-plus", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "linking-exception-2.1-plus.json", + "yaml": "linking-exception-2.1-plus.yml", + "html": "linking-exception-2.1-plus.html", + "license": "linking-exception-2.1-plus.LICENSE" + }, + { + "license_key": "linking-exception-agpl-3.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-linking-exception-agpl-3.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "linking-exception-agpl-3.0.json", + "yaml": "linking-exception-agpl-3.0.yml", + "html": "linking-exception-agpl-3.0.html", + "license": "linking-exception-agpl-3.0.LICENSE" + }, + { + "license_key": "linking-exception-lgpl-2.0-plus", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-linking-exception-lgpl-2.0plus", + "other_spdx_license_keys": [ + "LicenseRef-scancode-linking-exception-lgpl-2.0-plus" + ], + "is_exception": true, + "is_deprecated": false, + "json": "linking-exception-lgpl-2.0-plus.json", + "yaml": "linking-exception-lgpl-2.0-plus.yml", + "html": "linking-exception-lgpl-2.0-plus.html", + "license": "linking-exception-lgpl-2.0-plus.LICENSE" + }, + { + "license_key": "linking-exception-lgpl-3.0", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "linking-exception-lgpl-3.0.json", + "yaml": "linking-exception-lgpl-3.0.yml", + "html": "linking-exception-lgpl-3.0.html", + "license": "linking-exception-lgpl-3.0.LICENSE" + }, + { + "license_key": "linotype-eula", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-linotype-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "linotype-eula.json", + "yaml": "linotype-eula.yml", + "html": "linotype-eula.html", + "license": "linotype-eula.LICENSE" + }, + { + "license_key": "linum", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "linum.json", + "yaml": "linum.yml", + "html": "linum.html", + "license": "linum.LICENSE" + }, + { + "license_key": "linux-device-drivers", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-linux-device-drivers", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "linux-device-drivers.json", + "yaml": "linux-device-drivers.yml", + "html": "linux-device-drivers.html", + "license": "linux-device-drivers.LICENSE" + }, + { + "license_key": "linux-man-pages-1-para", + "category": "Copyleft Limited", + "spdx_license_key": "Linux-man-pages-1-para", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "linux-man-pages-1-para.json", + "yaml": "linux-man-pages-1-para.yml", + "html": "linux-man-pages-1-para.html", + "license": "linux-man-pages-1-para.LICENSE" + }, + { + "license_key": "linux-man-pages-2-para", + "category": "Copyleft Limited", + "spdx_license_key": "Linux-man-pages-copyleft-2-para", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "linux-man-pages-2-para.json", + "yaml": "linux-man-pages-2-para.yml", + "html": "linux-man-pages-2-para.html", + "license": "linux-man-pages-2-para.LICENSE" + }, + { + "license_key": "linux-man-pages-copyleft-var", + "category": "Copyleft Limited", + "spdx_license_key": "Linux-man-pages-copyleft-var", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "linux-man-pages-copyleft-var.json", + "yaml": "linux-man-pages-copyleft-var.yml", + "html": "linux-man-pages-copyleft-var.html", + "license": "linux-man-pages-copyleft-var.LICENSE" + }, + { + "license_key": "linux-openib", + "category": "Permissive", + "spdx_license_key": "Linux-OpenIB", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "linux-openib.json", + "yaml": "linux-openib.yml", + "html": "linux-openib.html", + "license": "linux-openib.LICENSE" + }, + { + "license_key": "linux-syscall-exception-gpl", + "category": "Copyleft Limited", + "spdx_license_key": "Linux-syscall-note", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "linux-syscall-exception-gpl.json", + "yaml": "linux-syscall-exception-gpl.yml", + "html": "linux-syscall-exception-gpl.html", + "license": "linux-syscall-exception-gpl.LICENSE" + }, + { + "license_key": "linuxbios", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-linuxbios", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "linuxbios.json", + "yaml": "linuxbios.yml", + "html": "linuxbios.html", + "license": "linuxbios.LICENSE" + }, + { + "license_key": "linuxhowtos", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-linuxhowtos", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "linuxhowtos.json", + "yaml": "linuxhowtos.yml", + "html": "linuxhowtos.html", + "license": "linuxhowtos.LICENSE" + }, + { + "license_key": "llama-2-license-2023", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-llama-2-license-2023", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "llama-2-license-2023.json", + "yaml": "llama-2-license-2023.yml", + "html": "llama-2-license-2023.html", + "license": "llama-2-license-2023.LICENSE" + }, + { + "license_key": "llama-license-2023", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-llama-license-2023", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "llama-license-2023.json", + "yaml": "llama-license-2023.yml", + "html": "llama-license-2023.html", + "license": "llama-license-2023.LICENSE" + }, + { + "license_key": "llgpl", + "category": "Copyleft Limited", + "spdx_license_key": "LLGPL", + "other_spdx_license_keys": [ + "LicenseRef-scancode-llgpl" + ], + "is_exception": true, + "is_deprecated": false, + "json": "llgpl.json", + "yaml": "llgpl.yml", + "html": "llgpl.html", + "license": "llgpl.LICENSE" + }, + { + "license_key": "llnl", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-llnl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "llnl.json", + "yaml": "llnl.yml", + "html": "llnl.html", + "license": "llnl.LICENSE" + }, + { + "license_key": "llvm-exception", + "category": "Permissive", + "spdx_license_key": "LLVM-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "llvm-exception.json", + "yaml": "llvm-exception.yml", + "html": "llvm-exception.html", + "license": "llvm-exception.LICENSE" + }, + { + "license_key": "lmbench-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-lmbench-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "lmbench-exception-2.0.json", + "yaml": "lmbench-exception-2.0.yml", + "html": "lmbench-exception-2.0.html", + "license": "lmbench-exception-2.0.LICENSE" + }, + { + "license_key": "logica-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-logica-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "logica-1.0.json", + "yaml": "logica-1.0.yml", + "html": "logica-1.0.html", + "license": "logica-1.0.LICENSE" + }, + { + "license_key": "lontium-linux-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-lontium-linux-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lontium-linux-firmware.json", + "yaml": "lontium-linux-firmware.yml", + "html": "lontium-linux-firmware.html", + "license": "lontium-linux-firmware.LICENSE" + }, + { + "license_key": "loop", + "category": "Permissive", + "spdx_license_key": "LOOP", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "loop.json", + "yaml": "loop.yml", + "html": "loop.html", + "license": "loop.LICENSE" + }, + { + "license_key": "losla", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-losla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "losla.json", + "yaml": "losla.yml", + "html": "losla.html", + "license": "losla.LICENSE" + }, + { + "license_key": "lppl-1.0", + "category": "Copyleft", + "spdx_license_key": "LPPL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lppl-1.0.json", + "yaml": "lppl-1.0.yml", + "html": "lppl-1.0.html", + "license": "lppl-1.0.LICENSE" + }, + { + "license_key": "lppl-1.1", + "category": "Copyleft", + "spdx_license_key": "LPPL-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lppl-1.1.json", + "yaml": "lppl-1.1.yml", + "html": "lppl-1.1.html", + "license": "lppl-1.1.LICENSE" + }, + { + "license_key": "lppl-1.2", + "category": "Copyleft", + "spdx_license_key": "LPPL-1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lppl-1.2.json", + "yaml": "lppl-1.2.yml", + "html": "lppl-1.2.html", + "license": "lppl-1.2.LICENSE" + }, + { + "license_key": "lppl-1.3a", + "category": "Copyleft", + "spdx_license_key": "LPPL-1.3a", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lppl-1.3a.json", + "yaml": "lppl-1.3a.yml", + "html": "lppl-1.3a.html", + "license": "lppl-1.3a.LICENSE" + }, + { + "license_key": "lppl-1.3c", + "category": "Copyleft", + "spdx_license_key": "LPPL-1.3c", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lppl-1.3c.json", + "yaml": "lppl-1.3c.yml", + "html": "lppl-1.3c.html", + "license": "lppl-1.3c.LICENSE" + }, + { + "license_key": "lsi-proprietary-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-lsi-proprietary-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lsi-proprietary-eula.json", + "yaml": "lsi-proprietary-eula.yml", + "html": "lsi-proprietary-eula.html", + "license": "lsi-proprietary-eula.LICENSE" + }, + { + "license_key": "lucent-pl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "LPL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lucent-pl-1.0.json", + "yaml": "lucent-pl-1.0.yml", + "html": "lucent-pl-1.0.html", + "license": "lucent-pl-1.0.LICENSE" + }, + { + "license_key": "lucent-pl-1.02", + "category": "Copyleft Limited", + "spdx_license_key": "LPL-1.02", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lucent-pl-1.02.json", + "yaml": "lucent-pl-1.02.yml", + "html": "lucent-pl-1.02.html", + "license": "lucent-pl-1.02.LICENSE" + }, + { + "license_key": "lucre", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-lucre", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lucre.json", + "yaml": "lucre.yml", + "html": "lucre.html", + "license": "lucre.LICENSE" + }, + { + "license_key": "lumisoft-mail-server", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-lumisoft-mail-server", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lumisoft-mail-server.json", + "yaml": "lumisoft-mail-server.yml", + "html": "lumisoft-mail-server.html", + "license": "lumisoft-mail-server.LICENSE" + }, + { + "license_key": "luxi", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-luxi", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "luxi.json", + "yaml": "luxi.yml", + "html": "luxi.html", + "license": "luxi.LICENSE" + }, + { + "license_key": "lyubinskiy-dropdown", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-lyubinskiy-dropdown", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lyubinskiy-dropdown.json", + "yaml": "lyubinskiy-dropdown.yml", + "html": "lyubinskiy-dropdown.html", + "license": "lyubinskiy-dropdown.LICENSE" + }, + { + "license_key": "lyubinskiy-popup-window", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-lyubinskiy-popup-window", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lyubinskiy-popup-window.json", + "yaml": "lyubinskiy-popup-window.yml", + "html": "lyubinskiy-popup-window.html", + "license": "lyubinskiy-popup-window.LICENSE" + }, + { + "license_key": "lzma-cpl-exception", + "category": "Copyleft Limited", + "spdx_license_key": "LZMA-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "lzma-cpl-exception.json", + "yaml": "lzma-cpl-exception.yml", + "html": "lzma-cpl-exception.html", + "license": "lzma-cpl-exception.LICENSE" + }, + { + "license_key": "lzma-sdk-2006", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-lzma-sdk-2006", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lzma-sdk-2006.json", + "yaml": "lzma-sdk-2006.yml", + "html": "lzma-sdk-2006.html", + "license": "lzma-sdk-2006.LICENSE" + }, + { + "license_key": "lzma-sdk-2006-exception", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-lzma-sdk-2006-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "lzma-sdk-2006-exception.json", + "yaml": "lzma-sdk-2006-exception.yml", + "html": "lzma-sdk-2006-exception.html", + "license": "lzma-sdk-2006-exception.LICENSE" + }, + { + "license_key": "lzma-sdk-2008", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-lzma-sdk-2008", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lzma-sdk-2008.json", + "yaml": "lzma-sdk-2008.yml", + "html": "lzma-sdk-2008.html", + "license": "lzma-sdk-2008.LICENSE" + }, + { + "license_key": "lzma-sdk-9.11-to-9.20", + "category": "Public Domain", + "spdx_license_key": "LZMA-SDK-9.11-to-9.20", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lzma-sdk-9.11-to-9.20.json", + "yaml": "lzma-sdk-9.11-to-9.20.yml", + "html": "lzma-sdk-9.11-to-9.20.html", + "license": "lzma-sdk-9.11-to-9.20.LICENSE" + }, + { + "license_key": "lzma-sdk-9.22", + "category": "Public Domain", + "spdx_license_key": "LZMA-SDK-9.22", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lzma-sdk-9.22.json", + "yaml": "lzma-sdk-9.22.yml", + "html": "lzma-sdk-9.22.html", + "license": "lzma-sdk-9.22.LICENSE" + }, + { + "license_key": "lzma-sdk-original", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-lzma-sdk-original", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lzma-sdk-original.json", + "yaml": "lzma-sdk-original.yml", + "html": "lzma-sdk-original.html", + "license": "lzma-sdk-original.LICENSE" + }, + { + "license_key": "lzma-sdk-pd", + "category": "Public Domain", + "spdx_license_key": "LicenseRef-scancode-lzma-sdk-pd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lzma-sdk-pd.json", + "yaml": "lzma-sdk-pd.yml", + "html": "lzma-sdk-pd.html", + "license": "lzma-sdk-pd.LICENSE" + }, + { + "license_key": "m-plus", + "category": "Permissive", + "spdx_license_key": "mplus", + "other_spdx_license_keys": [ + "LicenseRef-scancode-m-plus" + ], + "is_exception": false, + "is_deprecated": false, + "json": "m-plus.json", + "yaml": "m-plus.yml", + "html": "m-plus.html", + "license": "m-plus.LICENSE" + }, + { + "license_key": "madwifi-dual", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "madwifi-dual.json", + "yaml": "madwifi-dual.yml", + "html": "madwifi-dual.html", + "license": "madwifi-dual.LICENSE" + }, + { + "license_key": "magaz", + "category": "Permissive", + "spdx_license_key": "magaz", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "magaz.json", + "yaml": "magaz.yml", + "html": "magaz.html", + "license": "magaz.LICENSE" + }, + { + "license_key": "magpie-exception-1.0", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-magpie-exception-1.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "magpie-exception-1.0.json", + "yaml": "magpie-exception-1.0.yml", + "html": "magpie-exception-1.0.html", + "license": "magpie-exception-1.0.LICENSE" + }, + { + "license_key": "mailprio", + "category": "Permissive", + "spdx_license_key": "mailprio", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mailprio.json", + "yaml": "mailprio.yml", + "html": "mailprio.html", + "license": "mailprio.LICENSE" + }, + { + "license_key": "make-human-exception", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-make-human-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "make-human-exception.json", + "yaml": "make-human-exception.yml", + "html": "make-human-exception.html", + "license": "make-human-exception.LICENSE" + }, + { + "license_key": "makeindex", + "category": "Copyleft", + "spdx_license_key": "MakeIndex", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "makeindex.json", + "yaml": "makeindex.yml", + "html": "makeindex.html", + "license": "makeindex.LICENSE" + }, + { + "license_key": "mame", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-mame", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mame.json", + "yaml": "mame.yml", + "html": "mame.html", + "license": "mame.LICENSE" + }, + { + "license_key": "manfred-klein-fonts-tos", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-manfred-klein-fonts-tos", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "manfred-klein-fonts-tos.json", + "yaml": "manfred-klein-fonts-tos.yml", + "html": "manfred-klein-fonts-tos.html", + "license": "manfred-klein-fonts-tos.LICENSE" + }, + { + "license_key": "mapbox-tos-2021", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-mapbox-tos-2021", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mapbox-tos-2021.json", + "yaml": "mapbox-tos-2021.yml", + "html": "mapbox-tos-2021.html", + "license": "mapbox-tos-2021.LICENSE" + }, + { + "license_key": "markus-kuhn-license", + "category": "Permissive", + "spdx_license_key": "HPND-Markus-Kuhn", + "other_spdx_license_keys": [ + "LicenseRef-scancode-markus-kuhn-license" + ], + "is_exception": false, + "is_deprecated": false, + "json": "markus-kuhn-license.json", + "yaml": "markus-kuhn-license.yml", + "html": "markus-kuhn-license.html", + "license": "markus-kuhn-license.LICENSE" + }, + { + "license_key": "markus-mummert-permissive", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-markus-mummert-permissive", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "markus-mummert-permissive.json", + "yaml": "markus-mummert-permissive.yml", + "html": "markus-mummert-permissive.html", + "license": "markus-mummert-permissive.LICENSE" + }, + { + "license_key": "martin-birgmeier", + "category": "Permissive", + "spdx_license_key": "Martin-Birgmeier", + "other_spdx_license_keys": [ + "LicenseRef-scancode-martin-birgmeier" + ], + "is_exception": false, + "is_deprecated": false, + "json": "martin-birgmeier.json", + "yaml": "martin-birgmeier.yml", + "html": "martin-birgmeier.html", + "license": "martin-birgmeier.LICENSE" + }, + { + "license_key": "marvell-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-marvell-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "marvell-firmware.json", + "yaml": "marvell-firmware.yml", + "html": "marvell-firmware.html", + "license": "marvell-firmware.LICENSE" + }, + { + "license_key": "marvell-firmware-2019", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-marvell-firmware-2019", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "marvell-firmware-2019.json", + "yaml": "marvell-firmware-2019.yml", + "html": "marvell-firmware-2019.html", + "license": "marvell-firmware-2019.LICENSE" + }, + { + "license_key": "matt-gallagher-attribution", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-matt-gallagher-attribution", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "matt-gallagher-attribution.json", + "yaml": "matt-gallagher-attribution.yml", + "html": "matt-gallagher-attribution.html", + "license": "matt-gallagher-attribution.LICENSE" + }, + { + "license_key": "matthew-kwan", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-matthew-kwan", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "matthew-kwan.json", + "yaml": "matthew-kwan.yml", + "html": "matthew-kwan.html", + "license": "matthew-kwan.LICENSE" + }, + { + "license_key": "matthew-welch-font-license", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-matthew-welch-font-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "matthew-welch-font-license.json", + "yaml": "matthew-welch-font-license.yml", + "html": "matthew-welch-font-license.html", + "license": "matthew-welch-font-license.LICENSE" + }, + { + "license_key": "mattkruse", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-mattkruse", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mattkruse.json", + "yaml": "mattkruse.yml", + "html": "mattkruse.html", + "license": "mattkruse.LICENSE" + }, + { + "license_key": "maxmind-geolite2-eula-2019", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-maxmind-geolite2-eula-2019", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "maxmind-geolite2-eula-2019.json", + "yaml": "maxmind-geolite2-eula-2019.yml", + "html": "maxmind-geolite2-eula-2019.html", + "license": "maxmind-geolite2-eula-2019.LICENSE" + }, + { + "license_key": "maxmind-odl", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-maxmind-odl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "maxmind-odl.json", + "yaml": "maxmind-odl.yml", + "html": "maxmind-odl.html", + "license": "maxmind-odl.LICENSE" + }, + { + "license_key": "mcafee-tou", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-mcafee-tou", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mcafee-tou.json", + "yaml": "mcafee-tou.yml", + "html": "mcafee-tou.html", + "license": "mcafee-tou.LICENSE" + }, + { + "license_key": "mcphee-slideshow", + "category": "Permissive", + "spdx_license_key": "McPhee-slideshow", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mcphee-slideshow.json", + "yaml": "mcphee-slideshow.yml", + "html": "mcphee-slideshow.html", + "license": "mcphee-slideshow.LICENSE" + }, + { + "license_key": "mcrae-pl-4-r53", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-mcrae-pl-4-r53", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mcrae-pl-4-r53.json", + "yaml": "mcrae-pl-4-r53.yml", + "html": "mcrae-pl-4-r53.html", + "license": "mcrae-pl-4-r53.LICENSE" + }, + { + "license_key": "mediainfo-lib", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-mediainfo-lib", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mediainfo-lib.json", + "yaml": "mediainfo-lib.yml", + "html": "mediainfo-lib.html", + "license": "mediainfo-lib.LICENSE" + }, + { + "license_key": "mediatek-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-mediatek-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mediatek-firmware.json", + "yaml": "mediatek-firmware.yml", + "html": "mediatek-firmware.html", + "license": "mediatek-firmware.LICENSE" + }, + { + "license_key": "mediatek-no-warranty", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-mediatek-no-warranty", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mediatek-no-warranty.json", + "yaml": "mediatek-no-warranty.yml", + "html": "mediatek-no-warranty.html", + "license": "mediatek-no-warranty.LICENSE" + }, + { + "license_key": "mediatek-proprietary-2008", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-mediatek-proprietary-2008", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mediatek-proprietary-2008.json", + "yaml": "mediatek-proprietary-2008.yml", + "html": "mediatek-proprietary-2008.html", + "license": "mediatek-proprietary-2008.LICENSE" + }, + { + "license_key": "melange", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-melange", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "melange.json", + "yaml": "melange.yml", + "html": "melange.html", + "license": "melange.LICENSE" + }, + { + "license_key": "mentalis", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "mentalis.json", + "yaml": "mentalis.yml", + "html": "mentalis.html", + "license": "mentalis.LICENSE" + }, + { + "license_key": "merit-network-derivative", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-merit-network-derivative", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "merit-network-derivative.json", + "yaml": "merit-network-derivative.yml", + "html": "merit-network-derivative.html", + "license": "merit-network-derivative.LICENSE" + }, + { + "license_key": "metageek-inssider-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-metageek-inssider-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "metageek-inssider-eula.json", + "yaml": "metageek-inssider-eula.yml", + "html": "metageek-inssider-eula.html", + "license": "metageek-inssider-eula.LICENSE" + }, + { + "license_key": "metamail", + "category": "Permissive", + "spdx_license_key": "metamail", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "metamail.json", + "yaml": "metamail.yml", + "html": "metamail.html", + "license": "metamail.LICENSE" + }, + { + "license_key": "metrolink-1.0", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-metrolink-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "metrolink-1.0.json", + "yaml": "metrolink-1.0.yml", + "html": "metrolink-1.0.html", + "license": "metrolink-1.0.LICENSE" + }, + { + "license_key": "mgopen-font-license", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-mgopen-font-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mgopen-font-license.json", + "yaml": "mgopen-font-license.yml", + "html": "mgopen-font-license.html", + "license": "mgopen-font-license.LICENSE" + }, + { + "license_key": "michael-barr", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-michael-barr", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "michael-barr.json", + "yaml": "michael-barr.yml", + "html": "michael-barr.html", + "license": "michael-barr.LICENSE" + }, + { + "license_key": "michigan-disclaimer", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-michigan-disclaimer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "michigan-disclaimer.json", + "yaml": "michigan-disclaimer.yml", + "html": "michigan-disclaimer.html", + "license": "michigan-disclaimer.LICENSE" + }, + { + "license_key": "microchip-linux-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-microchip-linux-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "microchip-linux-firmware.json", + "yaml": "microchip-linux-firmware.yml", + "html": "microchip-linux-firmware.html", + "license": "microchip-linux-firmware.LICENSE" + }, + { + "license_key": "microchip-products-2018", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-microchip-products-2018", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "microchip-products-2018.json", + "yaml": "microchip-products-2018.yml", + "html": "microchip-products-2018.html", + "license": "microchip-products-2018.LICENSE" + }, + { + "license_key": "microsoft-enterprise-library-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-enterprise-library-eula", + "other_spdx_license_keys": [ + "LicenseRef-scancode-microsoft-enterprise-library-eula" + ], + "is_exception": false, + "is_deprecated": false, + "json": "microsoft-enterprise-library-eula.json", + "yaml": "microsoft-enterprise-library-eula.yml", + "html": "microsoft-enterprise-library-eula.html", + "license": "microsoft-enterprise-library-eula.LICENSE" + }, + { + "license_key": "microsoft-windows-rally-devkit", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-microsoft-windows-rally-devkit", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "microsoft-windows-rally-devkit.json", + "yaml": "microsoft-windows-rally-devkit.yml", + "html": "microsoft-windows-rally-devkit.html", + "license": "microsoft-windows-rally-devkit.LICENSE" + }, + { + "license_key": "mif-exception", + "category": "Copyleft Limited", + "spdx_license_key": "mif-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "mif-exception.json", + "yaml": "mif-exception.yml", + "html": "mif-exception.html", + "license": "mif-exception.LICENSE" + }, + { + "license_key": "mike95", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-mike95", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mike95.json", + "yaml": "mike95.yml", + "html": "mike95.html", + "license": "mike95.LICENSE" + }, + { + "license_key": "minecraft-mod", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-minecraft-mod", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "minecraft-mod.json", + "yaml": "minecraft-mod.yml", + "html": "minecraft-mod.html", + "license": "minecraft-mod.LICENSE" + }, + { + "license_key": "mini-xml", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "mini-xml.json", + "yaml": "mini-xml.yml", + "html": "mini-xml.html", + "license": "mini-xml.LICENSE" + }, + { + "license_key": "mini-xml-exception-lgpl-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-mini-xml-exception-lgpl-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "mini-xml-exception-lgpl-2.0.json", + "yaml": "mini-xml-exception-lgpl-2.0.yml", + "html": "mini-xml-exception-lgpl-2.0.html", + "license": "mini-xml-exception-lgpl-2.0.LICENSE" + }, + { + "license_key": "minpack", + "category": "Permissive", + "spdx_license_key": "Minpack", + "other_spdx_license_keys": [ + "LicenseRef-scancode-minpack" + ], + "is_exception": false, + "is_deprecated": false, + "json": "minpack.json", + "yaml": "minpack.yml", + "html": "minpack.html", + "license": "minpack.LICENSE" + }, + { + "license_key": "mir-os", + "category": "Permissive", + "spdx_license_key": "MirOS", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mir-os.json", + "yaml": "mir-os.yml", + "html": "mir-os.html", + "license": "mir-os.LICENSE" + }, + { + "license_key": "mit", + "category": "Permissive", + "spdx_license_key": "MIT", + "other_spdx_license_keys": [ + "LicenseRef-MIT-Bootstrap", + "LicenseRef-MIT-Discord", + "LicenseRef-MIT-TC", + "LicenseRef-MIT-Diehl" + ], + "is_exception": false, + "is_deprecated": false, + "json": "mit.json", + "yaml": "mit.yml", + "html": "mit.html", + "license": "mit.LICENSE" + }, + { + "license_key": "mit-0", + "category": "Permissive", + "spdx_license_key": "MIT-0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ekioh" + ], + "is_exception": false, + "is_deprecated": false, + "json": "mit-0.json", + "yaml": "mit-0.yml", + "html": "mit-0.html", + "license": "mit-0.LICENSE" + }, + { + "license_key": "mit-1995", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-mit-1995", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mit-1995.json", + "yaml": "mit-1995.yml", + "html": "mit-1995.html", + "license": "mit-1995.LICENSE" + }, + { + "license_key": "mit-ack", + "category": "Permissive", + "spdx_license_key": "MIT-feh", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mit-ack.json", + "yaml": "mit-ack.yml", + "html": "mit-ack.html", + "license": "mit-ack.LICENSE" + }, + { + "license_key": "mit-addition", + "category": "Permissive", + "spdx_license_key": "MIT-Wu", + "other_spdx_license_keys": [ + "LicenseRef-scancode-mit-addition" + ], + "is_exception": false, + "is_deprecated": false, + "json": "mit-addition.json", + "yaml": "mit-addition.yml", + "html": "mit-addition.html", + "license": "mit-addition.LICENSE" + }, + { + "license_key": "mit-export-control", + "category": "Permissive", + "spdx_license_key": "Xerox", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mit-export-control.json", + "yaml": "mit-export-control.yml", + "html": "mit-export-control.html", + "license": "mit-export-control.LICENSE" + }, + { + "license_key": "mit-kyle-restrictions", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-mit-kyle-restrictions", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mit-kyle-restrictions.json", + "yaml": "mit-kyle-restrictions.yml", + "html": "mit-kyle-restrictions.html", + "license": "mit-kyle-restrictions.LICENSE" + }, + { + "license_key": "mit-license-1998", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-mit-license-1998", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mit-license-1998.json", + "yaml": "mit-license-1998.yml", + "html": "mit-license-1998.html", + "license": "mit-license-1998.LICENSE" + }, + { + "license_key": "mit-modern", + "category": "Permissive", + "spdx_license_key": "MIT-Modern-Variant", + "other_spdx_license_keys": [ + "LicenseRef-scancode-mit-modern" + ], + "is_exception": false, + "is_deprecated": false, + "json": "mit-modern.json", + "yaml": "mit-modern.yml", + "html": "mit-modern.html", + "license": "mit-modern.LICENSE" + }, + { + "license_key": "mit-nagy", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-mit-nagy", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mit-nagy.json", + "yaml": "mit-nagy.yml", + "html": "mit-nagy.html", + "license": "mit-nagy.LICENSE" + }, + { + "license_key": "mit-no-advert-export-control", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-mit-no-advert-export-control", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mit-no-advert-export-control.json", + "yaml": "mit-no-advert-export-control.yml", + "html": "mit-no-advert-export-control.html", + "license": "mit-no-advert-export-control.LICENSE" + }, + { + "license_key": "mit-no-false-attribs", + "category": "Permissive", + "spdx_license_key": "MITNFA", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mit-no-false-attribs.json", + "yaml": "mit-no-false-attribs.yml", + "html": "mit-no-false-attribs.html", + "license": "mit-no-false-attribs.LICENSE" + }, + { + "license_key": "mit-no-trademarks", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-mit-no-trademarks", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mit-no-trademarks.json", + "yaml": "mit-no-trademarks.yml", + "html": "mit-no-trademarks.html", + "license": "mit-no-trademarks.LICENSE" + }, + { + "license_key": "mit-old-style", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-mit-old-style", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mit-old-style.json", + "yaml": "mit-old-style.yml", + "html": "mit-old-style.html", + "license": "mit-old-style.LICENSE" + }, + { + "license_key": "mit-old-style-no-advert", + "category": "Permissive", + "spdx_license_key": "NTP", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mit-old-style-no-advert.json", + "yaml": "mit-old-style-no-advert.yml", + "html": "mit-old-style-no-advert.html", + "license": "mit-old-style-no-advert.LICENSE" + }, + { + "license_key": "mit-old-style-sparse", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-mit-old-style-sparse", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mit-old-style-sparse.json", + "yaml": "mit-old-style-sparse.yml", + "html": "mit-old-style-sparse.html", + "license": "mit-old-style-sparse.LICENSE" + }, + { + "license_key": "mit-readme", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-mit-readme", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mit-readme.json", + "yaml": "mit-readme.yml", + "html": "mit-readme.html", + "license": "mit-readme.LICENSE" + }, + { + "license_key": "mit-specification-disclaimer", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-mit-specification-disclaimer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mit-specification-disclaimer.json", + "yaml": "mit-specification-disclaimer.yml", + "html": "mit-specification-disclaimer.html", + "license": "mit-specification-disclaimer.LICENSE" + }, + { + "license_key": "mit-synopsys", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-mit-synopsys", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mit-synopsys.json", + "yaml": "mit-synopsys.yml", + "html": "mit-synopsys.html", + "license": "mit-synopsys.LICENSE" + }, + { + "license_key": "mit-taylor-variant", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-mit-taylor-variant", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mit-taylor-variant.json", + "yaml": "mit-taylor-variant.yml", + "html": "mit-taylor-variant.html", + "license": "mit-taylor-variant.LICENSE" + }, + { + "license_key": "mit-testregex", + "category": "Permissive", + "spdx_license_key": "MIT-testregex", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mit-testregex.json", + "yaml": "mit-testregex.yml", + "html": "mit-testregex.html", + "license": "mit-testregex.LICENSE" + }, + { + "license_key": "mit-veillard-variant", + "category": "Permissive", + "spdx_license_key": "ISC-Veillard", + "other_spdx_license_keys": [ + "LicenseRef-scancode-mit-veillard-variant" + ], + "is_exception": false, + "is_deprecated": false, + "json": "mit-veillard-variant.json", + "yaml": "mit-veillard-variant.yml", + "html": "mit-veillard-variant.html", + "license": "mit-veillard-variant.LICENSE" + }, + { + "license_key": "mit-with-modification-obligations", + "category": "Permissive", + "spdx_license_key": "HPND-export-US-modify", + "other_spdx_license_keys": [ + "LicenseRef-scancode-mit-with-modification-obligations", + "LicenseRef-scancode-mit-modification-obligations" + ], + "is_exception": false, + "is_deprecated": false, + "json": "mit-with-modification-obligations.json", + "yaml": "mit-with-modification-obligations.yml", + "html": "mit-with-modification-obligations.html", + "license": "mit-with-modification-obligations.LICENSE" + }, + { + "license_key": "mit-xfig", + "category": "Permissive", + "spdx_license_key": "Xfig", + "other_spdx_license_keys": [ + "LicenseRef-scancode-mit-xfig" + ], + "is_exception": false, + "is_deprecated": false, + "json": "mit-xfig.json", + "yaml": "mit-xfig.yml", + "html": "mit-xfig.html", + "license": "mit-xfig.LICENSE" + }, + { + "license_key": "mmixware", + "category": "Permissive", + "spdx_license_key": "MMIXware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mmixware.json", + "yaml": "mmixware.yml", + "html": "mmixware.html", + "license": "mmixware.LICENSE" + }, + { + "license_key": "mod-dav-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-mod-dav-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mod-dav-1.0.json", + "yaml": "mod-dav-1.0.yml", + "html": "mod-dav-1.0.html", + "license": "mod-dav-1.0.LICENSE" + }, + { + "license_key": "monetdb-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-monetdb-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "monetdb-1.1.json", + "yaml": "monetdb-1.1.yml", + "html": "monetdb-1.1.html", + "license": "monetdb-1.1.LICENSE" + }, + { + "license_key": "mongodb-sspl-1.0", + "category": "Source-available", + "spdx_license_key": "SSPL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mongodb-sspl-1.0.json", + "yaml": "mongodb-sspl-1.0.yml", + "html": "mongodb-sspl-1.0.html", + "license": "mongodb-sspl-1.0.LICENSE" + }, + { + "license_key": "monkeysaudio", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-monkeysaudio", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "monkeysaudio.json", + "yaml": "monkeysaudio.yml", + "html": "monkeysaudio.html", + "license": "monkeysaudio.LICENSE" + }, + { + "license_key": "morbig-ieee-std-usage", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-morbig-ieee-std-usage", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "morbig-ieee-std-usage.json", + "yaml": "morbig-ieee-std-usage.yml", + "html": "morbig-ieee-std-usage.html", + "license": "morbig-ieee-std-usage.LICENSE" + }, + { + "license_key": "motorola", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-motorola", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "motorola.json", + "yaml": "motorola.yml", + "html": "motorola.html", + "license": "motorola.LICENSE" + }, + { + "license_key": "motosoto-0.9.1", + "category": "Copyleft", + "spdx_license_key": "Motosoto", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "motosoto-0.9.1.json", + "yaml": "motosoto-0.9.1.yml", + "html": "motosoto-0.9.1.html", + "license": "motosoto-0.9.1.LICENSE" + }, + { + "license_key": "moxa-linux-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-moxa-linux-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "moxa-linux-firmware.json", + "yaml": "moxa-linux-firmware.yml", + "html": "moxa-linux-firmware.html", + "license": "moxa-linux-firmware.LICENSE" + }, + { + "license_key": "mozilla-gc", + "category": "Permissive", + "spdx_license_key": "Boehm-GC", + "other_spdx_license_keys": [ + "LicenseRef-scancode-mozilla-gc" + ], + "is_exception": false, + "is_deprecated": false, + "json": "mozilla-gc.json", + "yaml": "mozilla-gc.yml", + "html": "mozilla-gc.html", + "license": "mozilla-gc.LICENSE" + }, + { + "license_key": "mozilla-ospl-1.0", + "category": "Patent License", + "spdx_license_key": "LicenseRef-scancode-mozilla-ospl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mozilla-ospl-1.0.json", + "yaml": "mozilla-ospl-1.0.yml", + "html": "mozilla-ospl-1.0.html", + "license": "mozilla-ospl-1.0.LICENSE" + }, + { + "license_key": "mpeg-7", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-mpeg-7", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mpeg-7.json", + "yaml": "mpeg-7.yml", + "html": "mpeg-7.html", + "license": "mpeg-7.LICENSE" + }, + { + "license_key": "mpeg-iso", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-mpeg-iso", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mpeg-iso.json", + "yaml": "mpeg-iso.yml", + "html": "mpeg-iso.html", + "license": "mpeg-iso.LICENSE" + }, + { + "license_key": "mpeg-ssg", + "category": "Permissive", + "spdx_license_key": "MPEG-SSG", + "other_spdx_license_keys": [ + "LicenseRef-scancode-mpeg-ssg" + ], + "is_exception": false, + "is_deprecated": false, + "json": "mpeg-ssg.json", + "yaml": "mpeg-ssg.yml", + "html": "mpeg-ssg.html", + "license": "mpeg-ssg.LICENSE" + }, + { + "license_key": "mpi-permissive", + "category": "Permissive", + "spdx_license_key": "mpi-permissive", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mpi-permissive.json", + "yaml": "mpi-permissive.yml", + "html": "mpi-permissive.html", + "license": "mpi-permissive.LICENSE" + }, + { + "license_key": "mpich", + "category": "Permissive", + "spdx_license_key": "mpich2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mpich.json", + "yaml": "mpich.yml", + "html": "mpich.html", + "license": "mpich.LICENSE" + }, + { + "license_key": "mpl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "MPL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mpl-1.0.json", + "yaml": "mpl-1.0.yml", + "html": "mpl-1.0.html", + "license": "mpl-1.0.LICENSE" + }, + { + "license_key": "mpl-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "MPL-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mpl-1.1.json", + "yaml": "mpl-1.1.yml", + "html": "mpl-1.1.html", + "license": "mpl-1.1.LICENSE" + }, + { + "license_key": "mpl-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "MPL-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mpl-2.0.json", + "yaml": "mpl-2.0.yml", + "html": "mpl-2.0.html", + "license": "mpl-2.0.LICENSE" + }, + { + "license_key": "mpl-2.0-no-copyleft-exception", + "category": "Copyleft Limited", + "spdx_license_key": "MPL-2.0-no-copyleft-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "mpl-2.0-no-copyleft-exception.json", + "yaml": "mpl-2.0-no-copyleft-exception.yml", + "html": "mpl-2.0-no-copyleft-exception.html", + "license": "mpl-2.0-no-copyleft-exception.LICENSE" + }, + { + "license_key": "ms-api-code-pack-net", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-api-code-pack-net", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-api-code-pack-net.json", + "yaml": "ms-api-code-pack-net.yml", + "html": "ms-api-code-pack-net.html", + "license": "ms-api-code-pack-net.LICENSE" + }, + { + "license_key": "ms-asp-net-ajax-supplemental-terms", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-asp-net-ajax-supp-terms", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ms-asp-net-ajax-supplemental-terms" + ], + "is_exception": false, + "is_deprecated": false, + "json": "ms-asp-net-ajax-supplemental-terms.json", + "yaml": "ms-asp-net-ajax-supplemental-terms.yml", + "html": "ms-asp-net-ajax-supplemental-terms.html", + "license": "ms-asp-net-ajax-supplemental-terms.LICENSE" + }, + { + "license_key": "ms-asp-net-mvc3", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-asp-net-mvc3", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-asp-net-mvc3.json", + "yaml": "ms-asp-net-mvc3.yml", + "html": "ms-asp-net-mvc3.html", + "license": "ms-asp-net-mvc3.LICENSE" + }, + { + "license_key": "ms-asp-net-mvc4", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-asp-net-mvc4", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-asp-net-mvc4.json", + "yaml": "ms-asp-net-mvc4.yml", + "html": "ms-asp-net-mvc4.html", + "license": "ms-asp-net-mvc4.LICENSE" + }, + { + "license_key": "ms-asp-net-mvc4-extensions", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-asp-net-mvc4-extensions", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-asp-net-mvc4-extensions.json", + "yaml": "ms-asp-net-mvc4-extensions.yml", + "html": "ms-asp-net-mvc4-extensions.html", + "license": "ms-asp-net-mvc4-extensions.LICENSE" + }, + { + "license_key": "ms-asp-net-software", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-asp-net-software", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-asp-net-software.json", + "yaml": "ms-asp-net-software.yml", + "html": "ms-asp-net-software.html", + "license": "ms-asp-net-software.LICENSE" + }, + { + "license_key": "ms-asp-net-tools-pre-release", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-asp-net-tools-pre-release", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-asp-net-tools-pre-release.json", + "yaml": "ms-asp-net-tools-pre-release.yml", + "html": "ms-asp-net-tools-pre-release.html", + "license": "ms-asp-net-tools-pre-release.LICENSE" + }, + { + "license_key": "ms-asp-net-web-optimization-framework", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-asp-net-web-optimization", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ms-asp-net-web-optimization-framework" + ], + "is_exception": false, + "is_deprecated": false, + "json": "ms-asp-net-web-optimization-framework.json", + "yaml": "ms-asp-net-web-optimization-framework.yml", + "html": "ms-asp-net-web-optimization-framework.html", + "license": "ms-asp-net-web-optimization-framework.LICENSE" + }, + { + "license_key": "ms-asp-net-web-pages-2", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-asp-net-web-pages-2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-asp-net-web-pages-2.json", + "yaml": "ms-asp-net-web-pages-2.yml", + "html": "ms-asp-net-web-pages-2.html", + "license": "ms-asp-net-web-pages-2.LICENSE" + }, + { + "license_key": "ms-asp-net-web-pages-templates", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-asp-net-web-pages-templates", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-asp-net-web-pages-templates.json", + "yaml": "ms-asp-net-web-pages-templates.yml", + "html": "ms-asp-net-web-pages-templates.html", + "license": "ms-asp-net-web-pages-templates.LICENSE" + }, + { + "license_key": "ms-azure-data-studio", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-azure-data-studio", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-azure-data-studio.json", + "yaml": "ms-azure-data-studio.yml", + "html": "ms-azure-data-studio.html", + "license": "ms-azure-data-studio.LICENSE" + }, + { + "license_key": "ms-azure-spatialanchors-2.9.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-azure-spatialanchors-2.9.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-azure-spatialanchors-2.9.0.json", + "yaml": "ms-azure-spatialanchors-2.9.0.yml", + "html": "ms-azure-spatialanchors-2.9.0.html", + "license": "ms-azure-spatialanchors-2.9.0.LICENSE" + }, + { + "license_key": "ms-capicom", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-capicom", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-capicom.json", + "yaml": "ms-capicom.yml", + "html": "ms-capicom.html", + "license": "ms-capicom.LICENSE" + }, + { + "license_key": "ms-cl", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-ms-cl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-cl.json", + "yaml": "ms-cl.yml", + "html": "ms-cl.html", + "license": "ms-cl.LICENSE" + }, + { + "license_key": "ms-cla", + "category": "CLA", + "spdx_license_key": "LicenseRef-scancode-ms-cla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-cla.json", + "yaml": "ms-cla.yml", + "html": "ms-cla.html", + "license": "ms-cla.LICENSE" + }, + { + "license_key": "ms-control-spy-2.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-control-spy-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-control-spy-2.0.json", + "yaml": "ms-control-spy-2.0.yml", + "html": "ms-control-spy-2.0.html", + "license": "ms-control-spy-2.0.LICENSE" + }, + { + "license_key": "ms-data-tier-af-2022", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-data-tier-af-2022", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-data-tier-af-2022.json", + "yaml": "ms-data-tier-af-2022.yml", + "html": "ms-data-tier-af-2022.html", + "license": "ms-data-tier-af-2022.LICENSE" + }, + { + "license_key": "ms-developer-services-agreement", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-dev-services-agreement", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ms-developer-services-agreement" + ], + "is_exception": false, + "is_deprecated": false, + "json": "ms-developer-services-agreement.json", + "yaml": "ms-developer-services-agreement.yml", + "html": "ms-developer-services-agreement.html", + "license": "ms-developer-services-agreement.LICENSE" + }, + { + "license_key": "ms-developer-services-agreement-2018-06", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-dev-services-2018-06", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ms-developer-services-agreement-2018-06" + ], + "is_exception": false, + "is_deprecated": false, + "json": "ms-developer-services-agreement-2018-06.json", + "yaml": "ms-developer-services-agreement-2018-06.yml", + "html": "ms-developer-services-agreement-2018-06.html", + "license": "ms-developer-services-agreement-2018-06.LICENSE" + }, + { + "license_key": "ms-device-emulator-3.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-device-emulator-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-device-emulator-3.0.json", + "yaml": "ms-device-emulator-3.0.yml", + "html": "ms-device-emulator-3.0.html", + "license": "ms-device-emulator-3.0.LICENSE" + }, + { + "license_key": "ms-direct3d-d3d120n7-1.1.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-direct3d-d3d120n7-1.1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-direct3d-d3d120n7-1.1.0.json", + "yaml": "ms-direct3d-d3d120n7-1.1.0.yml", + "html": "ms-direct3d-d3d120n7-1.1.0.html", + "license": "ms-direct3d-d3d120n7-1.1.0.LICENSE" + }, + { + "license_key": "ms-directx-sdk-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-directx-sdk-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-directx-sdk-eula.json", + "yaml": "ms-directx-sdk-eula.yml", + "html": "ms-directx-sdk-eula.html", + "license": "ms-directx-sdk-eula.LICENSE" + }, + { + "license_key": "ms-directx-sdk-eula-2020", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-directx-sdk-eula-2020", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-directx-sdk-eula-2020.json", + "yaml": "ms-directx-sdk-eula-2020.yml", + "html": "ms-directx-sdk-eula-2020.html", + "license": "ms-directx-sdk-eula-2020.LICENSE" + }, + { + "license_key": "ms-dxsdk-d3dx-9.29.952.3", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-dxsdk-d3dx-9.29.952.3", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-dxsdk-d3dx-9.29.952.3.json", + "yaml": "ms-dxsdk-d3dx-9.29.952.3.yml", + "html": "ms-dxsdk-d3dx-9.29.952.3.html", + "license": "ms-dxsdk-d3dx-9.29.952.3.LICENSE" + }, + { + "license_key": "ms-edge-devtools-2022", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-edge-devtools-2022", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-edge-devtools-2022.json", + "yaml": "ms-edge-devtools-2022.yml", + "html": "ms-edge-devtools-2022.html", + "license": "ms-edge-devtools-2022.LICENSE" + }, + { + "license_key": "ms-edge-webview2", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-edge-webview2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-edge-webview2.json", + "yaml": "ms-edge-webview2.yml", + "html": "ms-edge-webview2.html", + "license": "ms-edge-webview2.LICENSE" + }, + { + "license_key": "ms-edge-webview2-fixed", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-edge-webview2-fixed", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-edge-webview2-fixed.json", + "yaml": "ms-edge-webview2-fixed.yml", + "html": "ms-edge-webview2-fixed.html", + "license": "ms-edge-webview2-fixed.LICENSE" + }, + { + "license_key": "ms-entity-framework-4.1", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-entity-framework-4.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-entity-framework-4.1.json", + "yaml": "ms-entity-framework-4.1.yml", + "html": "ms-entity-framework-4.1.html", + "license": "ms-entity-framework-4.1.LICENSE" + }, + { + "license_key": "ms-entity-framework-5", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-entity-framework-5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-entity-framework-5.json", + "yaml": "ms-entity-framework-5.yml", + "html": "ms-entity-framework-5.html", + "license": "ms-entity-framework-5.LICENSE" + }, + { + "license_key": "ms-eula-win-script-host", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-ms-eula-win-script-host", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-eula-win-script-host.json", + "yaml": "ms-eula-win-script-host.yml", + "html": "ms-eula-win-script-host.html", + "license": "ms-eula-win-script-host.LICENSE" + }, + { + "license_key": "ms-exchange-server-2010-sp2-sdk", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-exchange-srv-2010-sp2-sdk", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ms-exchange-server-2010-sp2-sdk" + ], + "is_exception": false, + "is_deprecated": false, + "json": "ms-exchange-server-2010-sp2-sdk.json", + "yaml": "ms-exchange-server-2010-sp2-sdk.yml", + "html": "ms-exchange-server-2010-sp2-sdk.html", + "license": "ms-exchange-server-2010-sp2-sdk.LICENSE" + }, + { + "license_key": "ms-iis-container-images-eula-2020", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-iis-container-eula-2020", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ms-iis-container-images-eula-2020" + ], + "is_exception": false, + "is_deprecated": false, + "json": "ms-iis-container-images-eula-2020.json", + "yaml": "ms-iis-container-images-eula-2020.yml", + "html": "ms-iis-container-images-eula-2020.html", + "license": "ms-iis-container-images-eula-2020.LICENSE" + }, + { + "license_key": "ms-ilmerge", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-ilmerge", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-ilmerge.json", + "yaml": "ms-ilmerge.yml", + "html": "ms-ilmerge.html", + "license": "ms-ilmerge.LICENSE" + }, + { + "license_key": "ms-invisible-eula-1.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-invisible-eula-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-invisible-eula-1.0.json", + "yaml": "ms-invisible-eula-1.0.yml", + "html": "ms-invisible-eula-1.0.html", + "license": "ms-invisible-eula-1.0.LICENSE" + }, + { + "license_key": "ms-jdbc-driver-40-sql-server", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-jdbc-driver-40-sql-server", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-jdbc-driver-40-sql-server.json", + "yaml": "ms-jdbc-driver-40-sql-server.yml", + "html": "ms-jdbc-driver-40-sql-server.html", + "license": "ms-jdbc-driver-40-sql-server.LICENSE" + }, + { + "license_key": "ms-jdbc-driver-41-sql-server", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-jdbc-driver-41-sql-server", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-jdbc-driver-41-sql-server.json", + "yaml": "ms-jdbc-driver-41-sql-server.yml", + "html": "ms-jdbc-driver-41-sql-server.html", + "license": "ms-jdbc-driver-41-sql-server.LICENSE" + }, + { + "license_key": "ms-jdbc-driver-60-sql-server", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-jdbc-driver-60-sql-server", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-jdbc-driver-60-sql-server.json", + "yaml": "ms-jdbc-driver-60-sql-server.yml", + "html": "ms-jdbc-driver-60-sql-server.html", + "license": "ms-jdbc-driver-60-sql-server.LICENSE" + }, + { + "license_key": "ms-kinext-win-sdk", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-kinext-win-sdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-kinext-win-sdk.json", + "yaml": "ms-kinext-win-sdk.yml", + "html": "ms-kinext-win-sdk.html", + "license": "ms-kinext-win-sdk.LICENSE" + }, + { + "license_key": "ms-limited-community", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-limited-community", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-limited-community.json", + "yaml": "ms-limited-community.yml", + "html": "ms-limited-community.html", + "license": "ms-limited-community.LICENSE" + }, + { + "license_key": "ms-limited-public", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "ms-limited-public.json", + "yaml": "ms-limited-public.yml", + "html": "ms-limited-public.html", + "license": "ms-limited-public.LICENSE" + }, + { + "license_key": "ms-lpl", + "category": "Permissive", + "spdx_license_key": "MS-LPL", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ms-lpl" + ], + "is_exception": false, + "is_deprecated": false, + "json": "ms-lpl.json", + "yaml": "ms-lpl.yml", + "html": "ms-lpl.html", + "license": "ms-lpl.LICENSE" + }, + { + "license_key": "ms-msn-webgrease", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-msn-webgrease", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-msn-webgrease.json", + "yaml": "ms-msn-webgrease.yml", + "html": "ms-msn-webgrease.html", + "license": "ms-msn-webgrease.LICENSE" + }, + { + "license_key": "ms-net-framework-4-supplemental-terms", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-net-framework-4-supp-terms", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ms-net-framework-4-supplemental-terms" + ], + "is_exception": false, + "is_deprecated": false, + "json": "ms-net-framework-4-supplemental-terms.json", + "yaml": "ms-net-framework-4-supplemental-terms.yml", + "html": "ms-net-framework-4-supplemental-terms.html", + "license": "ms-net-framework-4-supplemental-terms.LICENSE" + }, + { + "license_key": "ms-net-framework-deployment", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-ms-net-framework-deployment", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-net-framework-deployment.json", + "yaml": "ms-net-framework-deployment.yml", + "html": "ms-net-framework-deployment.html", + "license": "ms-net-framework-deployment.LICENSE" + }, + { + "license_key": "ms-net-library", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-net-library", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-net-library.json", + "yaml": "ms-net-library.yml", + "html": "ms-net-library.html", + "license": "ms-net-library.LICENSE" + }, + { + "license_key": "ms-net-library-2016-05", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-net-library-2016-05", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-net-library-2016-05.json", + "yaml": "ms-net-library-2016-05.yml", + "html": "ms-net-library-2016-05.html", + "license": "ms-net-library-2016-05.LICENSE" + }, + { + "license_key": "ms-net-library-2018-11", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-net-library-2018-11", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-net-library-2018-11.json", + "yaml": "ms-net-library-2018-11.yml", + "html": "ms-net-library-2018-11.html", + "license": "ms-net-library-2018-11.LICENSE" + }, + { + "license_key": "ms-net-library-2019-06", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-net-library-2019-06", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-net-library-2019-06.json", + "yaml": "ms-net-library-2019-06.yml", + "html": "ms-net-library-2019-06.html", + "license": "ms-net-library-2019-06.LICENSE" + }, + { + "license_key": "ms-net-library-2020-09", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-net-library-2020-09", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-net-library-2020-09.json", + "yaml": "ms-net-library-2020-09.yml", + "html": "ms-net-library-2020-09.html", + "license": "ms-net-library-2020-09.LICENSE" + }, + { + "license_key": "ms-nt-resource-kit", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-ms-nt-resource-kit", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-nt-resource-kit.json", + "yaml": "ms-nt-resource-kit.yml", + "html": "ms-nt-resource-kit.html", + "license": "ms-nt-resource-kit.LICENSE" + }, + { + "license_key": "ms-nuget", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-nuget", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-nuget.json", + "yaml": "ms-nuget.yml", + "html": "ms-nuget.html", + "license": "ms-nuget.LICENSE" + }, + { + "license_key": "ms-nuget-package-manager", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-nuget-package-manager", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-nuget-package-manager.json", + "yaml": "ms-nuget-package-manager.yml", + "html": "ms-nuget-package-manager.html", + "license": "ms-nuget-package-manager.LICENSE" + }, + { + "license_key": "ms-office-extensible-file", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-office-extensible-file", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-office-extensible-file.json", + "yaml": "ms-office-extensible-file.yml", + "html": "ms-office-extensible-file.html", + "license": "ms-office-extensible-file.LICENSE" + }, + { + "license_key": "ms-office-system-programs-eula", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-ms-office-system-programs-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-office-system-programs-eula.json", + "yaml": "ms-office-system-programs-eula.yml", + "html": "ms-office-system-programs-eula.html", + "license": "ms-office-system-programs-eula.LICENSE" + }, + { + "license_key": "ms-opus-patent-2012", + "category": "Patent License", + "spdx_license_key": "LicenseRef-scancode-ms-opus-patent-2012", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-opus-patent-2012.json", + "yaml": "ms-opus-patent-2012.yml", + "html": "ms-opus-patent-2012.html", + "license": "ms-opus-patent-2012.LICENSE" + }, + { + "license_key": "ms-patent-promise", + "category": "Patent License", + "spdx_license_key": "LicenseRef-scancode-ms-patent-promise", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-patent-promise.json", + "yaml": "ms-patent-promise.yml", + "html": "ms-patent-promise.html", + "license": "ms-patent-promise.LICENSE" + }, + { + "license_key": "ms-patent-promise-mono", + "category": "Patent License", + "spdx_license_key": "LicenseRef-scancode-ms-patent-promise-mono", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-patent-promise-mono.json", + "yaml": "ms-patent-promise-mono.yml", + "html": "ms-patent-promise-mono.html", + "license": "ms-patent-promise-mono.LICENSE" + }, + { + "license_key": "ms-permissive-1.1", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "ms-permissive-1.1.json", + "yaml": "ms-permissive-1.1.yml", + "html": "ms-permissive-1.1.html", + "license": "ms-permissive-1.1.LICENSE" + }, + { + "license_key": "ms-pl", + "category": "Permissive", + "spdx_license_key": "MS-PL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-pl.json", + "yaml": "ms-pl.yml", + "html": "ms-pl.html", + "license": "ms-pl.LICENSE" + }, + { + "license_key": "ms-platform-sdk", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-ms-platform-sdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-platform-sdk.json", + "yaml": "ms-platform-sdk.yml", + "html": "ms-platform-sdk.html", + "license": "ms-platform-sdk.LICENSE" + }, + { + "license_key": "ms-pre-release-sla-2023", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-pre-release-sla-2023", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-pre-release-sla-2023.json", + "yaml": "ms-pre-release-sla-2023.yml", + "html": "ms-pre-release-sla-2023.html", + "license": "ms-pre-release-sla-2023.LICENSE" + }, + { + "license_key": "ms-programsynthesis-7.22.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-programsynthesis-7.22.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-programsynthesis-7.22.0.json", + "yaml": "ms-programsynthesis-7.22.0.yml", + "html": "ms-programsynthesis-7.22.0.html", + "license": "ms-programsynthesis-7.22.0.LICENSE" + }, + { + "license_key": "ms-python-vscode-pylance-2021", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-ms-python-vscode-pylance-2021", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-python-vscode-pylance-2021.json", + "yaml": "ms-python-vscode-pylance-2021.yml", + "html": "ms-python-vscode-pylance-2021.html", + "license": "ms-python-vscode-pylance-2021.LICENSE" + }, + { + "license_key": "ms-reactive-extensions-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-reactive-extensions-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-reactive-extensions-eula.json", + "yaml": "ms-reactive-extensions-eula.yml", + "html": "ms-reactive-extensions-eula.html", + "license": "ms-reactive-extensions-eula.LICENSE" + }, + { + "license_key": "ms-refl", + "category": "Proprietary Free", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "ms-refl.json", + "yaml": "ms-refl.yml", + "html": "ms-refl.html", + "license": "ms-refl.LICENSE" + }, + { + "license_key": "ms-remote-ndis-usb-kit", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-ms-remote-ndis-usb-kit", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-remote-ndis-usb-kit.json", + "yaml": "ms-remote-ndis-usb-kit.yml", + "html": "ms-remote-ndis-usb-kit.html", + "license": "ms-remote-ndis-usb-kit.LICENSE" + }, + { + "license_key": "ms-research-shared-source", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-research-shared-source", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-research-shared-source.json", + "yaml": "ms-research-shared-source.yml", + "html": "ms-research-shared-source.html", + "license": "ms-research-shared-source.LICENSE" + }, + { + "license_key": "ms-rl", + "category": "Copyleft Limited", + "spdx_license_key": "MS-RL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-rl.json", + "yaml": "ms-rl.yml", + "html": "ms-rl.html", + "license": "ms-rl.LICENSE" + }, + { + "license_key": "ms-rsl", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-rsl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-rsl.json", + "yaml": "ms-rsl.yml", + "html": "ms-rsl.html", + "license": "ms-rsl.LICENSE" + }, + { + "license_key": "ms-silverlight-3", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-silverlight-3", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-silverlight-3.json", + "yaml": "ms-silverlight-3.yml", + "html": "ms-silverlight-3.html", + "license": "ms-silverlight-3.LICENSE" + }, + { + "license_key": "ms-specification", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-ms-specification", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-specification.json", + "yaml": "ms-specification.yml", + "html": "ms-specification.html", + "license": "ms-specification.LICENSE" + }, + { + "license_key": "ms-sql-server-compact-4.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-sql-server-compact-4.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-sql-server-compact-4.0.json", + "yaml": "ms-sql-server-compact-4.0.yml", + "html": "ms-sql-server-compact-4.0.html", + "license": "ms-sql-server-compact-4.0.LICENSE" + }, + { + "license_key": "ms-sql-server-data-tools", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-sql-server-data-tools", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-sql-server-data-tools.json", + "yaml": "ms-sql-server-data-tools.yml", + "html": "ms-sql-server-data-tools.html", + "license": "ms-sql-server-data-tools.LICENSE" + }, + { + "license_key": "ms-sspl", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ms-sspl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-sspl.json", + "yaml": "ms-sspl.yml", + "html": "ms-sspl.html", + "license": "ms-sspl.LICENSE" + }, + { + "license_key": "ms-sysinternals-sla", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-ms-sysinternals-sla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-sysinternals-sla.json", + "yaml": "ms-sysinternals-sla.yml", + "html": "ms-sysinternals-sla.html", + "license": "ms-sysinternals-sla.LICENSE" + }, + { + "license_key": "ms-testplatform-17.0.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-testplatform-17.0.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-testplatform-17.0.0.json", + "yaml": "ms-testplatform-17.0.0.yml", + "html": "ms-testplatform-17.0.0.html", + "license": "ms-testplatform-17.0.0.LICENSE" + }, + { + "license_key": "ms-ttf-eula", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-ms-ttf-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-ttf-eula.json", + "yaml": "ms-ttf-eula.yml", + "html": "ms-ttf-eula.html", + "license": "ms-ttf-eula.LICENSE" + }, + { + "license_key": "ms-typescript-msbuild-4.1.4", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-typescript-msbuild-4.1.4", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-typescript-msbuild-4.1.4.json", + "yaml": "ms-typescript-msbuild-4.1.4.yml", + "html": "ms-typescript-msbuild-4.1.4.html", + "license": "ms-typescript-msbuild-4.1.4.LICENSE" + }, + { + "license_key": "ms-visual-2008-runtime", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-visual-2008-runtime", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-visual-2008-runtime.json", + "yaml": "ms-visual-2008-runtime.yml", + "html": "ms-visual-2008-runtime.html", + "license": "ms-visual-2008-runtime.LICENSE" + }, + { + "license_key": "ms-visual-2010-runtime", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-visual-2010-runtime", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-visual-2010-runtime.json", + "yaml": "ms-visual-2010-runtime.yml", + "html": "ms-visual-2010-runtime.html", + "license": "ms-visual-2010-runtime.LICENSE" + }, + { + "license_key": "ms-visual-2015-sdk", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-visual-2015-sdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-visual-2015-sdk.json", + "yaml": "ms-visual-2015-sdk.yml", + "html": "ms-visual-2015-sdk.html", + "license": "ms-visual-2015-sdk.LICENSE" + }, + { + "license_key": "ms-visual-cpp-2015-runtime", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-visual-cpp-2015-runtime", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-visual-cpp-2015-runtime.json", + "yaml": "ms-visual-cpp-2015-runtime.yml", + "html": "ms-visual-cpp-2015-runtime.html", + "license": "ms-visual-cpp-2015-runtime.LICENSE" + }, + { + "license_key": "ms-visual-studio-2017", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-ms-visual-studio-2017", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-visual-studio-2017.json", + "yaml": "ms-visual-studio-2017.yml", + "html": "ms-visual-studio-2017.html", + "license": "ms-visual-studio-2017.LICENSE" + }, + { + "license_key": "ms-visual-studio-2017-tools", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-ms-visual-studio-2017-tools", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-visual-studio-2017-tools.json", + "yaml": "ms-visual-studio-2017-tools.yml", + "html": "ms-visual-studio-2017-tools.html", + "license": "ms-visual-studio-2017-tools.LICENSE" + }, + { + "license_key": "ms-visual-studio-code", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-visual-studio-code", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-visual-studio-code.json", + "yaml": "ms-visual-studio-code.yml", + "html": "ms-visual-studio-code.html", + "license": "ms-visual-studio-code.LICENSE" + }, + { + "license_key": "ms-visual-studio-code-2018", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-visual-studio-code-2018", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-visual-studio-code-2018.json", + "yaml": "ms-visual-studio-code-2018.yml", + "html": "ms-visual-studio-code-2018.html", + "license": "ms-visual-studio-code-2018.LICENSE" + }, + { + "license_key": "ms-visual-studio-code-2022", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-visual-studio-code-2022", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-visual-studio-code-2022.json", + "yaml": "ms-visual-studio-code-2022.yml", + "html": "ms-visual-studio-code-2022.html", + "license": "ms-visual-studio-code-2022.LICENSE" + }, + { + "license_key": "ms-vs-addons-ext-17.2.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-vs-addons-ext-17.2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-vs-addons-ext-17.2.0.json", + "yaml": "ms-vs-addons-ext-17.2.0.yml", + "html": "ms-vs-addons-ext-17.2.0.html", + "license": "ms-vs-addons-ext-17.2.0.LICENSE" + }, + { + "license_key": "ms-web-developer-tools-1.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-web-developer-tools-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-web-developer-tools-1.0.json", + "yaml": "ms-web-developer-tools-1.0.yml", + "html": "ms-web-developer-tools-1.0.html", + "license": "ms-web-developer-tools-1.0.LICENSE" + }, + { + "license_key": "ms-windows-container-base-image-eula-2020", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-win-container-eula-2020", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ms-windows-container-base-image-eula-2020" + ], + "is_exception": false, + "is_deprecated": false, + "json": "ms-windows-container-base-image-eula-2020.json", + "yaml": "ms-windows-container-base-image-eula-2020.yml", + "html": "ms-windows-container-base-image-eula-2020.html", + "license": "ms-windows-container-base-image-eula-2020.LICENSE" + }, + { + "license_key": "ms-windows-driver-kit", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-windows-driver-kit", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-windows-driver-kit.json", + "yaml": "ms-windows-driver-kit.yml", + "html": "ms-windows-driver-kit.html", + "license": "ms-windows-driver-kit.LICENSE" + }, + { + "license_key": "ms-windows-identity-foundation", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-windows-identity-foundation", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-windows-identity-foundation.json", + "yaml": "ms-windows-identity-foundation.yml", + "html": "ms-windows-identity-foundation.html", + "license": "ms-windows-identity-foundation.LICENSE" + }, + { + "license_key": "ms-windows-os-2018", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-ms-windows-os-2018", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-windows-os-2018.json", + "yaml": "ms-windows-os-2018.yml", + "html": "ms-windows-os-2018.html", + "license": "ms-windows-os-2018.LICENSE" + }, + { + "license_key": "ms-windows-sdk-server-2008-net-3.5", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-ms-win-sdk-server-2008-net-3.5", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ms-windows-sdk-server-2008-net-3.5" + ], + "is_exception": false, + "is_deprecated": false, + "json": "ms-windows-sdk-server-2008-net-3.5.json", + "yaml": "ms-windows-sdk-server-2008-net-3.5.yml", + "html": "ms-windows-sdk-server-2008-net-3.5.html", + "license": "ms-windows-sdk-server-2008-net-3.5.LICENSE" + }, + { + "license_key": "ms-windows-sdk-win10", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-ms-windows-sdk-win10", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-windows-sdk-win10.json", + "yaml": "ms-windows-sdk-win10.yml", + "html": "ms-windows-sdk-win10.html", + "license": "ms-windows-sdk-win10.LICENSE" + }, + { + "license_key": "ms-windows-sdk-win10-net-6", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-windows-sdk-win10-net-6", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-windows-sdk-win10-net-6.json", + "yaml": "ms-windows-sdk-win10-net-6.yml", + "html": "ms-windows-sdk-win10-net-6.html", + "license": "ms-windows-sdk-win10-net-6.LICENSE" + }, + { + "license_key": "ms-windows-sdk-win7-net-4", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-windows-sdk-win7-net-4", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-windows-sdk-win7-net-4.json", + "yaml": "ms-windows-sdk-win7-net-4.yml", + "html": "ms-windows-sdk-win7-net-4.html", + "license": "ms-windows-sdk-win7-net-4.LICENSE" + }, + { + "license_key": "ms-windows-server-2003-ddk", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-windows-server-2003-ddk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-windows-server-2003-ddk.json", + "yaml": "ms-windows-server-2003-ddk.yml", + "html": "ms-windows-server-2003-ddk.html", + "license": "ms-windows-server-2003-ddk.LICENSE" + }, + { + "license_key": "ms-windows-server-2003-sdk", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-windows-server-2003-sdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-windows-server-2003-sdk.json", + "yaml": "ms-windows-server-2003-sdk.yml", + "html": "ms-windows-server-2003-sdk.html", + "license": "ms-windows-server-2003-sdk.LICENSE" + }, + { + "license_key": "ms-ws-routing-spec", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ms-ws-routing-spec", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-ws-routing-spec.json", + "yaml": "ms-ws-routing-spec.yml", + "html": "ms-ws-routing-spec.html", + "license": "ms-ws-routing-spec.LICENSE" + }, + { + "license_key": "ms-xamarin-uitest3.2.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-xamarin-uitest3.2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-xamarin-uitest3.2.0.json", + "yaml": "ms-xamarin-uitest3.2.0.yml", + "html": "ms-xamarin-uitest3.2.0.html", + "license": "ms-xamarin-uitest3.2.0.LICENSE" + }, + { + "license_key": "ms-xml-core-4.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-xml-core-4.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-xml-core-4.0.json", + "yaml": "ms-xml-core-4.0.yml", + "html": "ms-xml-core-4.0.html", + "license": "ms-xml-core-4.0.LICENSE" + }, + { + "license_key": "msdn-magazine-sample-code-2007", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-msdn-magazine-sample-code-2007", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "msdn-magazine-sample-code-2007.json", + "yaml": "msdn-magazine-sample-code-2007.yml", + "html": "msdn-magazine-sample-code-2007.html", + "license": "msdn-magazine-sample-code-2007.LICENSE" + }, + { + "license_key": "msj-sample-code", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-msj-sample-code", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "msj-sample-code.json", + "yaml": "msj-sample-code.yml", + "html": "msj-sample-code.html", + "license": "msj-sample-code.LICENSE" + }, + { + "license_key": "msntp", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-msntp", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "msntp.json", + "yaml": "msntp.yml", + "html": "msntp.html", + "license": "msntp.LICENSE" + }, + { + "license_key": "msppl", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-msppl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "msppl.json", + "yaml": "msppl.yml", + "html": "msppl.html", + "license": "msppl.LICENSE" + }, + { + "license_key": "mtll", + "category": "Permissive", + "spdx_license_key": "MTLL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mtll.json", + "yaml": "mtll.yml", + "html": "mtll.html", + "license": "mtll.LICENSE" + }, + { + "license_key": "mtx-licensing-statement", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-mtx-licensing-statement", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mtx-licensing-statement.json", + "yaml": "mtx-licensing-statement.yml", + "html": "mtx-licensing-statement.html", + "license": "mtx-licensing-statement.LICENSE" + }, + { + "license_key": "mulanpsl-1.0", + "category": "Permissive", + "spdx_license_key": "MulanPSL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mulanpsl-1.0.json", + "yaml": "mulanpsl-1.0.yml", + "html": "mulanpsl-1.0.html", + "license": "mulanpsl-1.0.LICENSE" + }, + { + "license_key": "mulanpsl-1.0-en", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-mulanpsl-1.0-en", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mulanpsl-1.0-en.json", + "yaml": "mulanpsl-1.0-en.yml", + "html": "mulanpsl-1.0-en.html", + "license": "mulanpsl-1.0-en.LICENSE" + }, + { + "license_key": "mulanpsl-2.0", + "category": "Permissive", + "spdx_license_key": "MulanPSL-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mulanpsl-2.0.json", + "yaml": "mulanpsl-2.0.yml", + "html": "mulanpsl-2.0.html", + "license": "mulanpsl-2.0.LICENSE" + }, + { + "license_key": "mulanpsl-2.0-en", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-mulanpsl-2.0-en", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mulanpsl-2.0-en.json", + "yaml": "mulanpsl-2.0-en.yml", + "html": "mulanpsl-2.0-en.html", + "license": "mulanpsl-2.0-en.LICENSE" + }, + { + "license_key": "mulanpubl-1.0", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-mulanpubl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mulanpubl-1.0.json", + "yaml": "mulanpubl-1.0.yml", + "html": "mulanpubl-1.0.html", + "license": "mulanpubl-1.0.LICENSE" + }, + { + "license_key": "mulanpubl-2.0", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-mulanpubl-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mulanpubl-2.0.json", + "yaml": "mulanpubl-2.0.yml", + "html": "mulanpubl-2.0.html", + "license": "mulanpubl-2.0.LICENSE" + }, + { + "license_key": "mule-source-1.1.3", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-mule-source-1.1.3", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mule-source-1.1.3.json", + "yaml": "mule-source-1.1.3.yml", + "html": "mule-source-1.1.3.html", + "license": "mule-source-1.1.3.LICENSE" + }, + { + "license_key": "mule-source-1.1.4", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-mule-source-1.1.4", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mule-source-1.1.4.json", + "yaml": "mule-source-1.1.4.yml", + "html": "mule-source-1.1.4.html", + "license": "mule-source-1.1.4.LICENSE" + }, + { + "license_key": "mulle-kybernetik", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-mulle-kybernetik", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mulle-kybernetik.json", + "yaml": "mulle-kybernetik.yml", + "html": "mulle-kybernetik.html", + "license": "mulle-kybernetik.LICENSE" + }, + { + "license_key": "multics", + "category": "Permissive", + "spdx_license_key": "Multics", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "multics.json", + "yaml": "multics.yml", + "html": "multics.html", + "license": "multics.LICENSE" + }, + { + "license_key": "mup", + "category": "Permissive", + "spdx_license_key": "Mup", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mup.json", + "yaml": "mup.yml", + "html": "mup.html", + "license": "mup.LICENSE" + }, + { + "license_key": "musl-exception", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-musl-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "musl-exception.json", + "yaml": "musl-exception.yml", + "html": "musl-exception.html", + "license": "musl-exception.LICENSE" + }, + { + "license_key": "mut-license", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-mut-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mut-license.json", + "yaml": "mut-license.yml", + "html": "mut-license.html", + "license": "mut-license.LICENSE" + }, + { + "license_key": "mvt-1.1", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-mvt-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mvt-1.1.json", + "yaml": "mvt-1.1.yml", + "html": "mvt-1.1.html", + "license": "mvt-1.1.LICENSE" + }, + { + "license_key": "mx4j", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-mx4j", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mx4j.json", + "yaml": "mx4j.yml", + "html": "mx4j.html", + "license": "mx4j.LICENSE" + }, + { + "license_key": "mysql-connector-odbc-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-mysql-con-odbc-exception-2.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-mysql-connector-odbc-exception-2.0" + ], + "is_exception": true, + "is_deprecated": false, + "json": "mysql-connector-odbc-exception-2.0.json", + "yaml": "mysql-connector-odbc-exception-2.0.yml", + "html": "mysql-connector-odbc-exception-2.0.html", + "license": "mysql-connector-odbc-exception-2.0.LICENSE" + }, + { + "license_key": "mysql-floss-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-mysql-floss-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "mysql-floss-exception-2.0.json", + "yaml": "mysql-floss-exception-2.0.yml", + "html": "mysql-floss-exception-2.0.html", + "license": "mysql-floss-exception-2.0.LICENSE" + }, + { + "license_key": "mysql-linking-exception-2018", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-mysql-linking-exception-2018", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "mysql-linking-exception-2018.json", + "yaml": "mysql-linking-exception-2018.yml", + "html": "mysql-linking-exception-2018.html", + "license": "mysql-linking-exception-2018.LICENSE" + }, + { + "license_key": "n8n-ee-2022", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-n8n-ee-2022", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "n8n-ee-2022.json", + "yaml": "n8n-ee-2022.yml", + "html": "n8n-ee-2022.html", + "license": "n8n-ee-2022.LICENSE" + }, + { + "license_key": "naist-2003", + "category": "Permissive", + "spdx_license_key": "NAIST-2003", + "other_spdx_license_keys": [ + "LicenseRef-scancode-naist-2003" + ], + "is_exception": false, + "is_deprecated": false, + "json": "naist-2003.json", + "yaml": "naist-2003.yml", + "html": "naist-2003.html", + "license": "naist-2003.LICENSE" + }, + { + "license_key": "nant-exception-2.0-plus", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-nant-exception-2.0-plus", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "nant-exception-2.0-plus.json", + "yaml": "nant-exception-2.0-plus.yml", + "html": "nant-exception-2.0-plus.html", + "license": "nant-exception-2.0-plus.LICENSE" + }, + { + "license_key": "nasa-1.3", + "category": "Copyleft Limited", + "spdx_license_key": "NASA-1.3", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nasa-1.3.json", + "yaml": "nasa-1.3.yml", + "html": "nasa-1.3.html", + "license": "nasa-1.3.LICENSE" + }, + { + "license_key": "naughter", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-naughter", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "naughter.json", + "yaml": "naughter.yml", + "html": "naughter.html", + "license": "naughter.LICENSE" + }, + { + "license_key": "naumen", + "category": "Permissive", + "spdx_license_key": "Naumen", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "naumen.json", + "yaml": "naumen.yml", + "html": "naumen.html", + "license": "naumen.LICENSE" + }, + { + "license_key": "nbpl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "NBPL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nbpl-1.0.json", + "yaml": "nbpl-1.0.yml", + "html": "nbpl-1.0.html", + "license": "nbpl-1.0.LICENSE" + }, + { + "license_key": "ncbi", + "category": "Public Domain", + "spdx_license_key": "LicenseRef-scancode-ncbi", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ncbi.json", + "yaml": "ncbi.yml", + "html": "ncbi.html", + "license": "ncbi.LICENSE" + }, + { + "license_key": "ncgl-uk-2.0", + "category": "Free Restricted", + "spdx_license_key": "NCGL-UK-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ncgl-uk-2.0.json", + "yaml": "ncgl-uk-2.0.yml", + "html": "ncgl-uk-2.0.html", + "license": "ncgl-uk-2.0.LICENSE" + }, + { + "license_key": "ncsa-httpd-1995", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ncsa-httpd-1995", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ncsa-httpd-1995.json", + "yaml": "ncsa-httpd-1995.yml", + "html": "ncsa-httpd-1995.html", + "license": "ncsa-httpd-1995.LICENSE" + }, + { + "license_key": "nero-eula", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-nero-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nero-eula.json", + "yaml": "nero-eula.yml", + "html": "nero-eula.html", + "license": "nero-eula.LICENSE" + }, + { + "license_key": "net-snmp", + "category": "Permissive", + "spdx_license_key": "Net-SNMP", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "net-snmp.json", + "yaml": "net-snmp.yml", + "html": "net-snmp.html", + "license": "net-snmp.LICENSE" + }, + { + "license_key": "netapp-sdk-aug2020", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-netapp-sdk-aug2020", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "netapp-sdk-aug2020.json", + "yaml": "netapp-sdk-aug2020.yml", + "html": "netapp-sdk-aug2020.html", + "license": "netapp-sdk-aug2020.LICENSE" + }, + { + "license_key": "netcat", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-netcat", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "netcat.json", + "yaml": "netcat.yml", + "html": "netcat.html", + "license": "netcat.LICENSE" + }, + { + "license_key": "netcdf", + "category": "Permissive", + "spdx_license_key": "NetCDF", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "netcdf.json", + "yaml": "netcdf.yml", + "html": "netcdf.html", + "license": "netcdf.LICENSE" + }, + { + "license_key": "netcomponents", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-netcomponents", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "netcomponents.json", + "yaml": "netcomponents.yml", + "html": "netcomponents.html", + "license": "netcomponents.LICENSE" + }, + { + "license_key": "netdata-ncul1", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-netdata-ncul1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "netdata-ncul1.json", + "yaml": "netdata-ncul1.yml", + "html": "netdata-ncul1.html", + "license": "netdata-ncul1.LICENSE" + }, + { + "license_key": "netron", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-netron", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "netron.json", + "yaml": "netron.yml", + "html": "netron.html", + "license": "netron.LICENSE" + }, + { + "license_key": "netronome-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-netronome-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "netronome-firmware.json", + "yaml": "netronome-firmware.yml", + "html": "netronome-firmware.html", + "license": "netronome-firmware.LICENSE" + }, + { + "license_key": "network-time-protocol", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "network-time-protocol.json", + "yaml": "network-time-protocol.yml", + "html": "network-time-protocol.html", + "license": "network-time-protocol.LICENSE" + }, + { + "license_key": "new-relic", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-new-relic", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "new-relic.json", + "yaml": "new-relic.yml", + "html": "new-relic.html", + "license": "new-relic.LICENSE" + }, + { + "license_key": "newlib-historical", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-newlib-historical", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "newlib-historical.json", + "yaml": "newlib-historical.yml", + "html": "newlib-historical.html", + "license": "newlib-historical.LICENSE" + }, + { + "license_key": "newran", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-newran", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "newran.json", + "yaml": "newran.yml", + "html": "newran.html", + "license": "newran.LICENSE" + }, + { + "license_key": "newsletr", + "category": "Permissive", + "spdx_license_key": "Newsletr", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "newsletr.json", + "yaml": "newsletr.yml", + "html": "newsletr.html", + "license": "newsletr.LICENSE" + }, + { + "license_key": "newton-king-cla", + "category": "CLA", + "spdx_license_key": "LicenseRef-scancode-newton-king-cla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "newton-king-cla.json", + "yaml": "newton-king-cla.yml", + "html": "newton-king-cla.html", + "license": "newton-king-cla.LICENSE" + }, + { + "license_key": "nexb-eula-saas-1.1.0", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-nexb-eula-saas-1.1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nexb-eula-saas-1.1.0.json", + "yaml": "nexb-eula-saas-1.1.0.yml", + "html": "nexb-eula-saas-1.1.0.html", + "license": "nexb-eula-saas-1.1.0.LICENSE" + }, + { + "license_key": "nexb-ssla-1.1.0", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-nexb-ssla-1.1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nexb-ssla-1.1.0.json", + "yaml": "nexb-ssla-1.1.0.yml", + "html": "nexb-ssla-1.1.0.html", + "license": "nexb-ssla-1.1.0.LICENSE" + }, + { + "license_key": "ngpl", + "category": "Copyleft Limited", + "spdx_license_key": "NGPL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ngpl.json", + "yaml": "ngpl.yml", + "html": "ngpl.html", + "license": "ngpl.LICENSE" + }, + { + "license_key": "nice", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-nice", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nice.json", + "yaml": "nice.yml", + "html": "nice.html", + "license": "nice.LICENSE" + }, + { + "license_key": "nicta-exception", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-nicta-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "nicta-exception.json", + "yaml": "nicta-exception.yml", + "html": "nicta-exception.html", + "license": "nicta-exception.LICENSE" + }, + { + "license_key": "nicta-psl", + "category": "Permissive", + "spdx_license_key": "NICTA-1.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-nicta-psl" + ], + "is_exception": false, + "is_deprecated": false, + "json": "nicta-psl.json", + "yaml": "nicta-psl.yml", + "html": "nicta-psl.html", + "license": "nicta-psl.LICENSE" + }, + { + "license_key": "niels-ferguson", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-niels-ferguson", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "niels-ferguson.json", + "yaml": "niels-ferguson.yml", + "html": "niels-ferguson.html", + "license": "niels-ferguson.LICENSE" + }, + { + "license_key": "nilsson-historical", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-nilsson-historical", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nilsson-historical.json", + "yaml": "nilsson-historical.yml", + "html": "nilsson-historical.html", + "license": "nilsson-historical.LICENSE" + }, + { + "license_key": "nist-pd", + "category": "Public Domain", + "spdx_license_key": "NIST-PD", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nist-pd.json", + "yaml": "nist-pd.yml", + "html": "nist-pd.html", + "license": "nist-pd.LICENSE" + }, + { + "license_key": "nist-pd-fallback", + "category": "Permissive", + "spdx_license_key": "NIST-PD-fallback", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nist-pd-fallback.json", + "yaml": "nist-pd-fallback.yml", + "html": "nist-pd-fallback.html", + "license": "nist-pd-fallback.LICENSE" + }, + { + "license_key": "nist-software", + "category": "Permissive", + "spdx_license_key": "NIST-Software", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nist-software.json", + "yaml": "nist-software.yml", + "html": "nist-software.html", + "license": "nist-software.LICENSE" + }, + { + "license_key": "nist-srd", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-nist-srd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nist-srd.json", + "yaml": "nist-srd.yml", + "html": "nist-srd.html", + "license": "nist-srd.LICENSE" + }, + { + "license_key": "nlod-1.0", + "category": "Permissive", + "spdx_license_key": "NLOD-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nlod-1.0.json", + "yaml": "nlod-1.0.yml", + "html": "nlod-1.0.html", + "license": "nlod-1.0.LICENSE" + }, + { + "license_key": "nlod-2.0", + "category": "Permissive", + "spdx_license_key": "NLOD-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nlod-2.0.json", + "yaml": "nlod-2.0.yml", + "html": "nlod-2.0.html", + "license": "nlod-2.0.LICENSE" + }, + { + "license_key": "nlpl", + "category": "Public Domain", + "spdx_license_key": "NLPL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nlpl.json", + "yaml": "nlpl.yml", + "html": "nlpl.html", + "license": "nlpl.LICENSE" + }, + { + "license_key": "no-license", + "category": "Unstated License", + "spdx_license_key": "LicenseRef-scancode-no-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "no-license.json", + "yaml": "no-license.yml", + "html": "no-license.html", + "license": "no-license.LICENSE" + }, + { + "license_key": "node-js", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-node-js", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "node-js.json", + "yaml": "node-js.yml", + "html": "node-js.html", + "license": "node-js.LICENSE" + }, + { + "license_key": "nokia-qt-exception-1.1", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "nokia-qt-exception-1.1.json", + "yaml": "nokia-qt-exception-1.1.yml", + "html": "nokia-qt-exception-1.1.html", + "license": "nokia-qt-exception-1.1.LICENSE" + }, + { + "license_key": "nokos-1.0a", + "category": "Copyleft Limited", + "spdx_license_key": "Nokia", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nokos-1.0a.json", + "yaml": "nokos-1.0a.yml", + "html": "nokos-1.0a.html", + "license": "nokos-1.0a.LICENSE" + }, + { + "license_key": "non-violent-4.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-non-violent-4.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "non-violent-4.0.json", + "yaml": "non-violent-4.0.yml", + "html": "non-violent-4.0.html", + "license": "non-violent-4.0.LICENSE" + }, + { + "license_key": "non-violent-7.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-non-violent-7.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "non-violent-7.0.json", + "yaml": "non-violent-7.0.yml", + "html": "non-violent-7.0.html", + "license": "non-violent-7.0.LICENSE" + }, + { + "license_key": "nonexclusive", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-nonexclusive", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nonexclusive.json", + "yaml": "nonexclusive.yml", + "html": "nonexclusive.html", + "license": "nonexclusive.LICENSE" + }, + { + "license_key": "nortel-dasa", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-nortel-dasa", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nortel-dasa.json", + "yaml": "nortel-dasa.yml", + "html": "nortel-dasa.html", + "license": "nortel-dasa.LICENSE" + }, + { + "license_key": "northwoods-sla-2021", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-northwoods-sla-2021", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "northwoods-sla-2021.json", + "yaml": "northwoods-sla-2021.yml", + "html": "northwoods-sla-2021.html", + "license": "northwoods-sla-2021.LICENSE" + }, + { + "license_key": "nosl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "NOSL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nosl-1.0.json", + "yaml": "nosl-1.0.yml", + "html": "nosl-1.0.html", + "license": "nosl-1.0.LICENSE" + }, + { + "license_key": "nosl-3.0", + "category": "Copyleft", + "spdx_license_key": "NPOSL-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nosl-3.0.json", + "yaml": "nosl-3.0.yml", + "html": "nosl-3.0.html", + "license": "nosl-3.0.LICENSE" + }, + { + "license_key": "notre-dame", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-notre-dame", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "notre-dame.json", + "yaml": "notre-dame.yml", + "html": "notre-dame.html", + "license": "notre-dame.LICENSE" + }, + { + "license_key": "noweb", + "category": "Copyleft Limited", + "spdx_license_key": "Noweb", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "noweb.json", + "yaml": "noweb.yml", + "html": "noweb.html", + "license": "noweb.LICENSE" + }, + { + "license_key": "npl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "NPL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "npl-1.0.json", + "yaml": "npl-1.0.yml", + "html": "npl-1.0.html", + "license": "npl-1.0.LICENSE" + }, + { + "license_key": "npl-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "NPL-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "npl-1.1.json", + "yaml": "npl-1.1.yml", + "html": "npl-1.1.html", + "license": "npl-1.1.LICENSE" + }, + { + "license_key": "npsl-exception-0.92", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-npsl-exception-0.92", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "npsl-exception-0.92.json", + "yaml": "npsl-exception-0.92.yml", + "html": "npsl-exception-0.92.html", + "license": "npsl-exception-0.92.LICENSE" + }, + { + "license_key": "npsl-exception-0.93", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-npsl-exception-0.93", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "npsl-exception-0.93.json", + "yaml": "npsl-exception-0.93.yml", + "html": "npsl-exception-0.93.html", + "license": "npsl-exception-0.93.LICENSE" + }, + { + "license_key": "npsl-exception-0.94", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-npsl-exception-0.94", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "npsl-exception-0.94.json", + "yaml": "npsl-exception-0.94.yml", + "html": "npsl-exception-0.94.html", + "license": "npsl-exception-0.94.LICENSE" + }, + { + "license_key": "npsl-exception-0.95", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-npsl-exception-0.95", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "npsl-exception-0.95.json", + "yaml": "npsl-exception-0.95.yml", + "html": "npsl-exception-0.95.html", + "license": "npsl-exception-0.95.LICENSE" + }, + { + "license_key": "nrl", + "category": "Permissive", + "spdx_license_key": "NRL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nrl.json", + "yaml": "nrl.yml", + "html": "nrl.html", + "license": "nrl.LICENSE" + }, + { + "license_key": "nrl-permission", + "category": "Permissive", + "spdx_license_key": "CMU-Mach-nodoc", + "other_spdx_license_keys": [ + "LicenseRef-scancode-nrl-permission" + ], + "is_exception": false, + "is_deprecated": false, + "json": "nrl-permission.json", + "yaml": "nrl-permission.yml", + "html": "nrl-permission.html", + "license": "nrl-permission.LICENSE" + }, + { + "license_key": "ntlm", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ntlm", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ntlm.json", + "yaml": "ntlm.yml", + "html": "ntlm.html", + "license": "ntlm.LICENSE" + }, + { + "license_key": "ntp-0", + "category": "Permissive", + "spdx_license_key": "NTP-0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ntp-0.json", + "yaml": "ntp-0.yml", + "html": "ntp-0.html", + "license": "ntp-0.LICENSE" + }, + { + "license_key": "ntpl", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "ntpl.json", + "yaml": "ntpl.yml", + "html": "ntpl.html", + "license": "ntpl.LICENSE" + }, + { + "license_key": "ntpl-origin", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ntpl-origin", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ntpl-origin.json", + "yaml": "ntpl-origin.yml", + "html": "ntpl-origin.html", + "license": "ntpl-origin.LICENSE" + }, + { + "license_key": "nucleusicons-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-nucleusicons-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nucleusicons-eula.json", + "yaml": "nucleusicons-eula.yml", + "html": "nucleusicons-eula.html", + "license": "nucleusicons-eula.LICENSE" + }, + { + "license_key": "numerical-recipes-notice", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-numerical-recipes-notice", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "numerical-recipes-notice.json", + "yaml": "numerical-recipes-notice.yml", + "html": "numerical-recipes-notice.html", + "license": "numerical-recipes-notice.LICENSE" + }, + { + "license_key": "nunit-v2", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "nunit-v2.json", + "yaml": "nunit-v2.yml", + "html": "nunit-v2.html", + "license": "nunit-v2.LICENSE" + }, + { + "license_key": "nvidia", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-nvidia", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nvidia.json", + "yaml": "nvidia.yml", + "html": "nvidia.html", + "license": "nvidia.LICENSE" + }, + { + "license_key": "nvidia-2002", + "category": "Permissive", + "spdx_license_key": "AML-glslang", + "other_spdx_license_keys": [ + "LicenseRef-scancode-nvidia-2002" + ], + "is_exception": false, + "is_deprecated": false, + "json": "nvidia-2002.json", + "yaml": "nvidia-2002.yml", + "html": "nvidia-2002.html", + "license": "nvidia-2002.LICENSE" + }, + { + "license_key": "nvidia-apex-sdk-eula-2011", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-nvidia-apex-sdk-eula-2011", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nvidia-apex-sdk-eula-2011.json", + "yaml": "nvidia-apex-sdk-eula-2011.yml", + "html": "nvidia-apex-sdk-eula-2011.html", + "license": "nvidia-apex-sdk-eula-2011.LICENSE" + }, + { + "license_key": "nvidia-cuda-supplement-2020", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-nvidia-cuda-supplement-2020", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nvidia-cuda-supplement-2020.json", + "yaml": "nvidia-cuda-supplement-2020.yml", + "html": "nvidia-cuda-supplement-2020.html", + "license": "nvidia-cuda-supplement-2020.LICENSE" + }, + { + "license_key": "nvidia-gov", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-nvidia-gov", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nvidia-gov.json", + "yaml": "nvidia-gov.yml", + "html": "nvidia-gov.html", + "license": "nvidia-gov.LICENSE" + }, + { + "license_key": "nvidia-isaac-eula-2019.1", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-nvidia-isaac-eula-2019.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nvidia-isaac-eula-2019.1.json", + "yaml": "nvidia-isaac-eula-2019.1.yml", + "html": "nvidia-isaac-eula-2019.1.html", + "license": "nvidia-isaac-eula-2019.1.LICENSE" + }, + { + "license_key": "nvidia-ngx-eula-2019", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-nvidia-ngx-eula-2019", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nvidia-ngx-eula-2019.json", + "yaml": "nvidia-ngx-eula-2019.yml", + "html": "nvidia-ngx-eula-2019.html", + "license": "nvidia-ngx-eula-2019.LICENSE" + }, + { + "license_key": "nvidia-sdk-eula-v0.11", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-nvidia-sdk-eula-v0.11", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nvidia-sdk-eula-v0.11.json", + "yaml": "nvidia-sdk-eula-v0.11.yml", + "html": "nvidia-sdk-eula-v0.11.html", + "license": "nvidia-sdk-eula-v0.11.LICENSE" + }, + { + "license_key": "nvidia-video-codec-agreement", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-nvidia-video-codec-agreement", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nvidia-video-codec-agreement.json", + "yaml": "nvidia-video-codec-agreement.yml", + "html": "nvidia-video-codec-agreement.html", + "license": "nvidia-video-codec-agreement.LICENSE" + }, + { + "license_key": "nwhm", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-nwhm", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nwhm.json", + "yaml": "nwhm.yml", + "html": "nwhm.html", + "license": "nwhm.LICENSE" + }, + { + "license_key": "nxp-firmware-patent", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-nxp-firmware-patent", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nxp-firmware-patent.json", + "yaml": "nxp-firmware-patent.yml", + "html": "nxp-firmware-patent.html", + "license": "nxp-firmware-patent.LICENSE" + }, + { + "license_key": "nxp-linux-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-nxp-linux-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nxp-linux-firmware.json", + "yaml": "nxp-linux-firmware.yml", + "html": "nxp-linux-firmware.html", + "license": "nxp-linux-firmware.LICENSE" + }, + { + "license_key": "nxp-mc-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-nxp-mc-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nxp-mc-firmware.json", + "yaml": "nxp-mc-firmware.yml", + "html": "nxp-mc-firmware.html", + "license": "nxp-mc-firmware.LICENSE" + }, + { + "license_key": "nxp-microcontroller-proprietary", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-nxp-microctl-proprietary", + "other_spdx_license_keys": [ + "LicenseRef-scancode-nxp-microcontroller-proprietary" + ], + "is_exception": false, + "is_deprecated": false, + "json": "nxp-microcontroller-proprietary.json", + "yaml": "nxp-microcontroller-proprietary.yml", + "html": "nxp-microcontroller-proprietary.html", + "license": "nxp-microcontroller-proprietary.LICENSE" + }, + { + "license_key": "nxp-warranty-disclaimer", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-nxp-warranty-disclaimer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nxp-warranty-disclaimer.json", + "yaml": "nxp-warranty-disclaimer.yml", + "html": "nxp-warranty-disclaimer.html", + "license": "nxp-warranty-disclaimer.LICENSE" + }, + { + "license_key": "nysl-0.9982", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-nysl-0.9982", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nysl-0.9982.json", + "yaml": "nysl-0.9982.yml", + "html": "nysl-0.9982.html", + "license": "nysl-0.9982.LICENSE" + }, + { + "license_key": "nysl-0.9982-jp", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-nysl-0.9982-jp", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nysl-0.9982-jp.json", + "yaml": "nysl-0.9982-jp.yml", + "html": "nysl-0.9982-jp.html", + "license": "nysl-0.9982-jp.LICENSE" + }, + { + "license_key": "o-uda-1.0", + "category": "Permissive", + "spdx_license_key": "O-UDA-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "o-uda-1.0.json", + "yaml": "o-uda-1.0.yml", + "html": "o-uda-1.0.html", + "license": "o-uda-1.0.LICENSE" + }, + { + "license_key": "o-young-jong", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-o-young-jong", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "o-young-jong.json", + "yaml": "o-young-jong.yml", + "html": "o-young-jong.html", + "license": "o-young-jong.LICENSE" + }, + { + "license_key": "oasis-ipr-2013", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-oasis-ipr-2013", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oasis-ipr-2013.json", + "yaml": "oasis-ipr-2013.yml", + "html": "oasis-ipr-2013.html", + "license": "oasis-ipr-2013.LICENSE" + }, + { + "license_key": "oasis-ipr-policy-2014", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-oasis-ipr-policy-2014", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oasis-ipr-policy-2014.json", + "yaml": "oasis-ipr-policy-2014.yml", + "html": "oasis-ipr-policy-2014.html", + "license": "oasis-ipr-policy-2014.LICENSE" + }, + { + "license_key": "oasis-ws-security-spec", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-oasis-ws-security-spec", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oasis-ws-security-spec.json", + "yaml": "oasis-ws-security-spec.yml", + "html": "oasis-ws-security-spec.html", + "license": "oasis-ws-security-spec.LICENSE" + }, + { + "license_key": "object-form-exception-to-mit", + "category": "Permissive", + "spdx_license_key": "fmt-exception", + "other_spdx_license_keys": [ + "LicenseRef-scancode-object-form-exception-to-mit" + ], + "is_exception": true, + "is_deprecated": false, + "json": "object-form-exception-to-mit.json", + "yaml": "object-form-exception-to-mit.yml", + "html": "object-form-exception-to-mit.html", + "license": "object-form-exception-to-mit.LICENSE" + }, + { + "license_key": "ocaml-lgpl-linking-exception", + "category": "Copyleft Limited", + "spdx_license_key": "OCaml-LGPL-linking-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "ocaml-lgpl-linking-exception.json", + "yaml": "ocaml-lgpl-linking-exception.yml", + "html": "ocaml-lgpl-linking-exception.html", + "license": "ocaml-lgpl-linking-exception.LICENSE" + }, + { + "license_key": "ocb-non-military-2013", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ocb-non-military-2013", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ocb-non-military-2013.json", + "yaml": "ocb-non-military-2013.yml", + "html": "ocb-non-military-2013.html", + "license": "ocb-non-military-2013.LICENSE" + }, + { + "license_key": "ocb-open-source-2013", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ocb-open-source-2013", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ocb-open-source-2013.json", + "yaml": "ocb-open-source-2013.yml", + "html": "ocb-open-source-2013.html", + "license": "ocb-open-source-2013.LICENSE" + }, + { + "license_key": "ocb-patent-openssl-2013", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ocb-patent-openssl-2013", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ocb-patent-openssl-2013.json", + "yaml": "ocb-patent-openssl-2013.yml", + "html": "ocb-patent-openssl-2013.html", + "license": "ocb-patent-openssl-2013.LICENSE" + }, + { + "license_key": "occt-exception-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "OCCT-exception-1.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "occt-exception-1.0.json", + "yaml": "occt-exception-1.0.yml", + "html": "occt-exception-1.0.html", + "license": "occt-exception-1.0.LICENSE" + }, + { + "license_key": "occt-pl", + "category": "Copyleft Limited", + "spdx_license_key": "OCCT-PL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "occt-pl.json", + "yaml": "occt-pl.yml", + "html": "occt-pl.html", + "license": "occt-pl.LICENSE" + }, + { + "license_key": "oclc-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-oclc-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oclc-1.0.json", + "yaml": "oclc-1.0.yml", + "html": "oclc-1.0.html", + "license": "oclc-1.0.LICENSE" + }, + { + "license_key": "oclc-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "OCLC-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oclc-2.0.json", + "yaml": "oclc-2.0.yml", + "html": "oclc-2.0.html", + "license": "oclc-2.0.LICENSE" + }, + { + "license_key": "ocsl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-ocsl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ocsl-1.0.json", + "yaml": "ocsl-1.0.yml", + "html": "ocsl-1.0.html", + "license": "ocsl-1.0.LICENSE" + }, + { + "license_key": "oculus-sdk", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-oculus-sdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oculus-sdk.json", + "yaml": "oculus-sdk.yml", + "html": "oculus-sdk.html", + "license": "oculus-sdk.LICENSE" + }, + { + "license_key": "oculus-sdk-2020", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-oculus-sdk-2020", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oculus-sdk-2020.json", + "yaml": "oculus-sdk-2020.yml", + "html": "oculus-sdk-2020.html", + "license": "oculus-sdk-2020.LICENSE" + }, + { + "license_key": "oculus-sdk-3.5", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-oculus-sdk-3.5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oculus-sdk-3.5.json", + "yaml": "oculus-sdk-3.5.yml", + "html": "oculus-sdk-3.5.html", + "license": "oculus-sdk-3.5.LICENSE" + }, + { + "license_key": "odb-cpl", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-odb-cpl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "odb-cpl.json", + "yaml": "odb-cpl.yml", + "html": "odb-cpl.html", + "license": "odb-cpl.LICENSE" + }, + { + "license_key": "odb-fpl", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-odb-fpl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "odb-fpl.json", + "yaml": "odb-fpl.yml", + "html": "odb-fpl.html", + "license": "odb-fpl.LICENSE" + }, + { + "license_key": "odb-ncuel", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-odb-ncuel", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "odb-ncuel.json", + "yaml": "odb-ncuel.yml", + "html": "odb-ncuel.html", + "license": "odb-ncuel.LICENSE" + }, + { + "license_key": "odbl-1.0", + "category": "Copyleft", + "spdx_license_key": "ODbL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "odbl-1.0.json", + "yaml": "odbl-1.0.yml", + "html": "odbl-1.0.html", + "license": "odbl-1.0.LICENSE" + }, + { + "license_key": "odc-1.0", + "category": "Copyleft", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "odc-1.0.json", + "yaml": "odc-1.0.yml", + "html": "odc-1.0.html", + "license": "odc-1.0.LICENSE" + }, + { + "license_key": "odc-by-1.0", + "category": "Permissive", + "spdx_license_key": "ODC-By-1.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-odc-1.0" + ], + "is_exception": false, + "is_deprecated": false, + "json": "odc-by-1.0.json", + "yaml": "odc-by-1.0.yml", + "html": "odc-by-1.0.html", + "license": "odc-by-1.0.LICENSE" + }, + { + "license_key": "odl", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-odl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "odl.json", + "yaml": "odl.yml", + "html": "odl.html", + "license": "odl.LICENSE" + }, + { + "license_key": "odmg", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-odmg", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "odmg.json", + "yaml": "odmg.yml", + "html": "odmg.html", + "license": "odmg.LICENSE" + }, + { + "license_key": "offis", + "category": "Permissive", + "spdx_license_key": "OFFIS", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "offis.json", + "yaml": "offis.yml", + "html": "offis.html", + "license": "offis.LICENSE" + }, + { + "license_key": "ofl-1.0", + "category": "Permissive", + "spdx_license_key": "OFL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ofl-1.0.json", + "yaml": "ofl-1.0.yml", + "html": "ofl-1.0.html", + "license": "ofl-1.0.LICENSE" + }, + { + "license_key": "ofl-1.0-no-rfn", + "category": "Permissive", + "spdx_license_key": "OFL-1.0-no-RFN", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ofl-1.0-no-rfn.json", + "yaml": "ofl-1.0-no-rfn.yml", + "html": "ofl-1.0-no-rfn.html", + "license": "ofl-1.0-no-rfn.LICENSE" + }, + { + "license_key": "ofl-1.0-rfn", + "category": "Permissive", + "spdx_license_key": "OFL-1.0-RFN", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ofl-1.0-rfn.json", + "yaml": "ofl-1.0-rfn.yml", + "html": "ofl-1.0-rfn.html", + "license": "ofl-1.0-rfn.LICENSE" + }, + { + "license_key": "ofl-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "OFL-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ofl-1.1.json", + "yaml": "ofl-1.1.yml", + "html": "ofl-1.1.html", + "license": "ofl-1.1.LICENSE" + }, + { + "license_key": "ofl-1.1-no-rfn", + "category": "Permissive", + "spdx_license_key": "OFL-1.1-no-RFN", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ofl-1.1-no-rfn.json", + "yaml": "ofl-1.1-no-rfn.yml", + "html": "ofl-1.1-no-rfn.html", + "license": "ofl-1.1-no-rfn.LICENSE" + }, + { + "license_key": "ofl-1.1-rfn", + "category": "Permissive", + "spdx_license_key": "OFL-1.1-RFN", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ofl-1.1-rfn.json", + "yaml": "ofl-1.1-rfn.yml", + "html": "ofl-1.1-rfn.html", + "license": "ofl-1.1-rfn.LICENSE" + }, + { + "license_key": "ofrak-community-1.0", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-ofrak-community-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ofrak-community-1.0.json", + "yaml": "ofrak-community-1.0.yml", + "html": "ofrak-community-1.0.html", + "license": "ofrak-community-1.0.LICENSE" + }, + { + "license_key": "ogc", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ogc", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ogc.json", + "yaml": "ogc.yml", + "html": "ogc.html", + "license": "ogc.LICENSE" + }, + { + "license_key": "ogc-1.0", + "category": "Permissive", + "spdx_license_key": "OGC-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ogc-1.0.json", + "yaml": "ogc-1.0.yml", + "html": "ogc-1.0.html", + "license": "ogc-1.0.LICENSE" + }, + { + "license_key": "ogc-2006", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "ogc-2006.json", + "yaml": "ogc-2006.yml", + "html": "ogc-2006.html", + "license": "ogc-2006.LICENSE" + }, + { + "license_key": "ogc-document-2020", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ogc-document-2020", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ogc-document-2020.json", + "yaml": "ogc-document-2020.yml", + "html": "ogc-document-2020.html", + "license": "ogc-document-2020.LICENSE" + }, + { + "license_key": "ogdl-taiwan-1.0", + "category": "Permissive", + "spdx_license_key": "OGDL-Taiwan-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ogdl-taiwan-1.0.json", + "yaml": "ogdl-taiwan-1.0.yml", + "html": "ogdl-taiwan-1.0.html", + "license": "ogdl-taiwan-1.0.LICENSE" + }, + { + "license_key": "ogl-1.0a", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ogl-1.0a", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ogl-1.0a.json", + "yaml": "ogl-1.0a.yml", + "html": "ogl-1.0a.html", + "license": "ogl-1.0a.LICENSE" + }, + { + "license_key": "ogl-canada-2.0-fr", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ogl-canada-2.0-fr", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ogl-canada-2.0-fr.json", + "yaml": "ogl-canada-2.0-fr.yml", + "html": "ogl-canada-2.0-fr.html", + "license": "ogl-canada-2.0-fr.LICENSE" + }, + { + "license_key": "ogl-uk-1.0", + "category": "Permissive", + "spdx_license_key": "OGL-UK-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ogl-uk-1.0.json", + "yaml": "ogl-uk-1.0.yml", + "html": "ogl-uk-1.0.html", + "license": "ogl-uk-1.0.LICENSE" + }, + { + "license_key": "ogl-uk-2.0", + "category": "Permissive", + "spdx_license_key": "OGL-UK-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ogl-uk-2.0.json", + "yaml": "ogl-uk-2.0.yml", + "html": "ogl-uk-2.0.html", + "license": "ogl-uk-2.0.LICENSE" + }, + { + "license_key": "ogl-uk-3.0", + "category": "Permissive", + "spdx_license_key": "OGL-UK-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ogl-uk-3.0.json", + "yaml": "ogl-uk-3.0.yml", + "html": "ogl-uk-3.0.html", + "license": "ogl-uk-3.0.LICENSE" + }, + { + "license_key": "ogl-wpd-3.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ogl-wpd-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ogl-wpd-3.0.json", + "yaml": "ogl-wpd-3.0.yml", + "html": "ogl-wpd-3.0.html", + "license": "ogl-wpd-3.0.LICENSE" + }, + { + "license_key": "ohdl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-ohdl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ohdl-1.0.json", + "yaml": "ohdl-1.0.yml", + "html": "ohdl-1.0.html", + "license": "ohdl-1.0.LICENSE" + }, + { + "license_key": "okl", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-okl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "okl.json", + "yaml": "okl.yml", + "html": "okl.html", + "license": "okl.LICENSE" + }, + { + "license_key": "olf-ccla-1.0", + "category": "CLA", + "spdx_license_key": "LicenseRef-scancode-olf-ccla-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "olf-ccla-1.0.json", + "yaml": "olf-ccla-1.0.yml", + "html": "olf-ccla-1.0.html", + "license": "olf-ccla-1.0.LICENSE" + }, + { + "license_key": "olfl-1.3", + "category": "Permissive", + "spdx_license_key": "OLFL-1.3", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "olfl-1.3.json", + "yaml": "olfl-1.3.yml", + "html": "olfl-1.3.html", + "license": "olfl-1.3.LICENSE" + }, + { + "license_key": "oll-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-oll-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oll-1.0.json", + "yaml": "oll-1.0.yml", + "html": "oll-1.0.html", + "license": "oll-1.0.LICENSE" + }, + { + "license_key": "on2-patent", + "category": "Patent License", + "spdx_license_key": "LicenseRef-scancode-on2-patent", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "on2-patent.json", + "yaml": "on2-patent.yml", + "html": "on2-patent.html", + "license": "on2-patent.LICENSE" + }, + { + "license_key": "ooura-2001", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ooura-2001", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ooura-2001.json", + "yaml": "ooura-2001.yml", + "html": "ooura-2001.html", + "license": "ooura-2001.LICENSE" + }, + { + "license_key": "open-diameter", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-open-diameter", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "open-diameter.json", + "yaml": "open-diameter.yml", + "html": "open-diameter.html", + "license": "open-diameter.LICENSE" + }, + { + "license_key": "open-public", + "category": "Copyleft Limited", + "spdx_license_key": "OPL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "open-public.json", + "yaml": "open-public.yml", + "html": "open-public.html", + "license": "open-public.LICENSE" + }, + { + "license_key": "open-weights-permissive-1.0.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-open-weights-permissive-1.0.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "open-weights-permissive-1.0.0.json", + "yaml": "open-weights-permissive-1.0.0.yml", + "html": "open-weights-permissive-1.0.0.html", + "license": "open-weights-permissive-1.0.0.LICENSE" + }, + { + "license_key": "openai-tou-20230314", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-openai-tou-20230314", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openai-tou-20230314.json", + "yaml": "openai-tou-20230314.yml", + "html": "openai-tou-20230314.html", + "license": "openai-tou-20230314.LICENSE" + }, + { + "license_key": "openbd-exception-3.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-openbd-exception-3.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "openbd-exception-3.0.json", + "yaml": "openbd-exception-3.0.yml", + "html": "openbd-exception-3.0.html", + "license": "openbd-exception-3.0.LICENSE" + }, + { + "license_key": "opencarp-1.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-opencarp-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "opencarp-1.0.json", + "yaml": "opencarp-1.0.yml", + "html": "opencarp-1.0.html", + "license": "opencarp-1.0.LICENSE" + }, + { + "license_key": "opengroup", + "category": "Copyleft Limited", + "spdx_license_key": "OGTSL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "opengroup.json", + "yaml": "opengroup.yml", + "html": "opengroup.html", + "license": "opengroup.LICENSE" + }, + { + "license_key": "opengroup-pl", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-opengroup-pl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "opengroup-pl.json", + "yaml": "opengroup-pl.yml", + "html": "opengroup-pl.html", + "license": "opengroup-pl.LICENSE" + }, + { + "license_key": "openi-pl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-openi-pl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openi-pl-1.0.json", + "yaml": "openi-pl-1.0.yml", + "html": "openi-pl-1.0.html", + "license": "openi-pl-1.0.LICENSE" + }, + { + "license_key": "openjdk-assembly-exception-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "OpenJDK-assembly-exception-1.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "openjdk-assembly-exception-1.0.json", + "yaml": "openjdk-assembly-exception-1.0.yml", + "html": "openjdk-assembly-exception-1.0.html", + "license": "openjdk-assembly-exception-1.0.LICENSE" + }, + { + "license_key": "openjdk-classpath-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-openjdk-classpath-exception2.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-openjdk-classpath-exception-2.0" + ], + "is_exception": true, + "is_deprecated": false, + "json": "openjdk-classpath-exception-2.0.json", + "yaml": "openjdk-classpath-exception-2.0.yml", + "html": "openjdk-classpath-exception-2.0.html", + "license": "openjdk-classpath-exception-2.0.LICENSE" + }, + { + "license_key": "openjdk-exception", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-openjdk-exception", + "other_spdx_license_keys": [ + "Assembly-exception" + ], + "is_exception": true, + "is_deprecated": false, + "json": "openjdk-exception.json", + "yaml": "openjdk-exception.yml", + "html": "openjdk-exception.html", + "license": "openjdk-exception.LICENSE" + }, + { + "license_key": "openldap-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "OLDAP-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openldap-1.1.json", + "yaml": "openldap-1.1.yml", + "html": "openldap-1.1.html", + "license": "openldap-1.1.LICENSE" + }, + { + "license_key": "openldap-1.2", + "category": "Copyleft Limited", + "spdx_license_key": "OLDAP-1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openldap-1.2.json", + "yaml": "openldap-1.2.yml", + "html": "openldap-1.2.html", + "license": "openldap-1.2.LICENSE" + }, + { + "license_key": "openldap-1.3", + "category": "Copyleft Limited", + "spdx_license_key": "OLDAP-1.3", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openldap-1.3.json", + "yaml": "openldap-1.3.yml", + "html": "openldap-1.3.html", + "license": "openldap-1.3.LICENSE" + }, + { + "license_key": "openldap-1.4", + "category": "Copyleft Limited", + "spdx_license_key": "OLDAP-1.4", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openldap-1.4.json", + "yaml": "openldap-1.4.yml", + "html": "openldap-1.4.html", + "license": "openldap-1.4.LICENSE" + }, + { + "license_key": "openldap-2.0", + "category": "Permissive", + "spdx_license_key": "OLDAP-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openldap-2.0.json", + "yaml": "openldap-2.0.yml", + "html": "openldap-2.0.html", + "license": "openldap-2.0.LICENSE" + }, + { + "license_key": "openldap-2.0.1", + "category": "Permissive", + "spdx_license_key": "OLDAP-2.0.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openldap-2.0.1.json", + "yaml": "openldap-2.0.1.yml", + "html": "openldap-2.0.1.html", + "license": "openldap-2.0.1.LICENSE" + }, + { + "license_key": "openldap-2.1", + "category": "Permissive", + "spdx_license_key": "OLDAP-2.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openldap-2.1.json", + "yaml": "openldap-2.1.yml", + "html": "openldap-2.1.html", + "license": "openldap-2.1.LICENSE" + }, + { + "license_key": "openldap-2.2", + "category": "Permissive", + "spdx_license_key": "OLDAP-2.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openldap-2.2.json", + "yaml": "openldap-2.2.yml", + "html": "openldap-2.2.html", + "license": "openldap-2.2.LICENSE" + }, + { + "license_key": "openldap-2.2.1", + "category": "Permissive", + "spdx_license_key": "OLDAP-2.2.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openldap-2.2.1.json", + "yaml": "openldap-2.2.1.yml", + "html": "openldap-2.2.1.html", + "license": "openldap-2.2.1.LICENSE" + }, + { + "license_key": "openldap-2.2.2", + "category": "Permissive", + "spdx_license_key": "OLDAP-2.2.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openldap-2.2.2.json", + "yaml": "openldap-2.2.2.yml", + "html": "openldap-2.2.2.html", + "license": "openldap-2.2.2.LICENSE" + }, + { + "license_key": "openldap-2.3", + "category": "Permissive", + "spdx_license_key": "OLDAP-2.3", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openldap-2.3.json", + "yaml": "openldap-2.3.yml", + "html": "openldap-2.3.html", + "license": "openldap-2.3.LICENSE" + }, + { + "license_key": "openldap-2.4", + "category": "Permissive", + "spdx_license_key": "OLDAP-2.4", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openldap-2.4.json", + "yaml": "openldap-2.4.yml", + "html": "openldap-2.4.html", + "license": "openldap-2.4.LICENSE" + }, + { + "license_key": "openldap-2.5", + "category": "Permissive", + "spdx_license_key": "OLDAP-2.5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openldap-2.5.json", + "yaml": "openldap-2.5.yml", + "html": "openldap-2.5.html", + "license": "openldap-2.5.LICENSE" + }, + { + "license_key": "openldap-2.6", + "category": "Permissive", + "spdx_license_key": "OLDAP-2.6", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openldap-2.6.json", + "yaml": "openldap-2.6.yml", + "html": "openldap-2.6.html", + "license": "openldap-2.6.LICENSE" + }, + { + "license_key": "openldap-2.7", + "category": "Permissive", + "spdx_license_key": "OLDAP-2.7", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openldap-2.7.json", + "yaml": "openldap-2.7.yml", + "html": "openldap-2.7.html", + "license": "openldap-2.7.LICENSE" + }, + { + "license_key": "openldap-2.8", + "category": "Permissive", + "spdx_license_key": "OLDAP-2.8", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openldap-2.8.json", + "yaml": "openldap-2.8.yml", + "html": "openldap-2.8.html", + "license": "openldap-2.8.LICENSE" + }, + { + "license_key": "openmap", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-openmap", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openmap.json", + "yaml": "openmap.yml", + "html": "openmap.html", + "license": "openmap.LICENSE" + }, + { + "license_key": "openmarket-fastcgi", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-openmarket-fastcgi", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openmarket-fastcgi.json", + "yaml": "openmarket-fastcgi.yml", + "html": "openmarket-fastcgi.html", + "license": "openmarket-fastcgi.LICENSE" + }, + { + "license_key": "openmotif-exception-2.0-plus", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-openmotif-exception-2.0-plus", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "openmotif-exception-2.0-plus.json", + "yaml": "openmotif-exception-2.0-plus.yml", + "html": "openmotif-exception-2.0-plus.html", + "license": "openmotif-exception-2.0-plus.LICENSE" + }, + { + "license_key": "openmrs-exception-to-mpl-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-openmrs-exception-to-mpl-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "openmrs-exception-to-mpl-2.0.json", + "yaml": "openmrs-exception-to-mpl-2.0.yml", + "html": "openmrs-exception-to-mpl-2.0.html", + "license": "openmrs-exception-to-mpl-2.0.LICENSE" + }, + { + "license_key": "opennetcf-shared-source", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-opennetcf-shared-source", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "opennetcf-shared-source.json", + "yaml": "opennetcf-shared-source.yml", + "html": "opennetcf-shared-source.html", + "license": "opennetcf-shared-source.LICENSE" + }, + { + "license_key": "openorb-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-openorb-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openorb-1.0.json", + "yaml": "openorb-1.0.yml", + "html": "openorb-1.0.html", + "license": "openorb-1.0.LICENSE" + }, + { + "license_key": "openpbs-2.3", + "category": "Copyleft Limited", + "spdx_license_key": "OpenPBS-2.3", + "other_spdx_license_keys": [ + "LicenseRef-scancode-openpbs-2.3" + ], + "is_exception": false, + "is_deprecated": false, + "json": "openpbs-2.3.json", + "yaml": "openpbs-2.3.yml", + "html": "openpbs-2.3.html", + "license": "openpbs-2.3.LICENSE" + }, + { + "license_key": "openpub", + "category": "Permissive", + "spdx_license_key": "OPUBL-1.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-openpub" + ], + "is_exception": false, + "is_deprecated": false, + "json": "openpub.json", + "yaml": "openpub.yml", + "html": "openpub.html", + "license": "openpub.LICENSE" + }, + { + "license_key": "opensaml-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-opensaml-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "opensaml-1.0.json", + "yaml": "opensaml-1.0.yml", + "html": "opensaml-1.0.html", + "license": "opensaml-1.0.LICENSE" + }, + { + "license_key": "opensc-openssl-openpace-exception-gpl", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-openpace-exception-gpl", + "other_spdx_license_keys": [ + "LicenseRef-scancode-opensc-openssl-openpace-exception-gpl" + ], + "is_exception": true, + "is_deprecated": false, + "json": "opensc-openssl-openpace-exception-gpl.json", + "yaml": "opensc-openssl-openpace-exception-gpl.yml", + "html": "opensc-openssl-openpace-exception-gpl.html", + "license": "opensc-openssl-openpace-exception-gpl.LICENSE" + }, + { + "license_key": "openssh", + "category": "Permissive", + "spdx_license_key": "SSH-OpenSSH", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openssh.json", + "yaml": "openssh.yml", + "html": "openssh.html", + "license": "openssh.LICENSE" + }, + { + "license_key": "openssl", + "category": "Permissive", + "spdx_license_key": "OpenSSL-standalone", + "other_spdx_license_keys": [ + "LicenseRef-scancode-openssl" + ], + "is_exception": false, + "is_deprecated": false, + "json": "openssl.json", + "yaml": "openssl.yml", + "html": "openssl.html", + "license": "openssl.LICENSE" + }, + { + "license_key": "openssl-exception-agpl-3.0", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-openssl-exception-agpl-3.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "openssl-exception-agpl-3.0.json", + "yaml": "openssl-exception-agpl-3.0.yml", + "html": "openssl-exception-agpl-3.0.html", + "license": "openssl-exception-agpl-3.0.LICENSE" + }, + { + "license_key": "openssl-exception-agpl-3.0-monit", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-openssl-exception-agpl3.0monit", + "other_spdx_license_keys": [ + "LicenseRef-scancode-openssl-exception-agpl-3.0-monit" + ], + "is_exception": true, + "is_deprecated": false, + "json": "openssl-exception-agpl-3.0-monit.json", + "yaml": "openssl-exception-agpl-3.0-monit.yml", + "html": "openssl-exception-agpl-3.0-monit.html", + "license": "openssl-exception-agpl-3.0-monit.LICENSE" + }, + { + "license_key": "openssl-exception-agpl-3.0-plus", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-openssl-exception-agpl3.0plus", + "other_spdx_license_keys": [ + "LicenseRef-scancode-openssl-exception-agpl-3.0-plus" + ], + "is_exception": true, + "is_deprecated": false, + "json": "openssl-exception-agpl-3.0-plus.json", + "yaml": "openssl-exception-agpl-3.0-plus.yml", + "html": "openssl-exception-agpl-3.0-plus.html", + "license": "openssl-exception-agpl-3.0-plus.LICENSE" + }, + { + "license_key": "openssl-exception-gpl-2.0", + "category": "Copyleft", + "spdx_license_key": "x11vnc-openssl-exception", + "other_spdx_license_keys": [ + "LicenseRef-scancode-openssl-exception-gpl-2.0" + ], + "is_exception": true, + "is_deprecated": false, + "json": "openssl-exception-gpl-2.0.json", + "yaml": "openssl-exception-gpl-2.0.yml", + "html": "openssl-exception-gpl-2.0.html", + "license": "openssl-exception-gpl-2.0.LICENSE" + }, + { + "license_key": "openssl-exception-gpl-2.0-plus", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-openssl-exception-gpl-2.0-plus", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "openssl-exception-gpl-2.0-plus.json", + "yaml": "openssl-exception-gpl-2.0-plus.yml", + "html": "openssl-exception-gpl-2.0-plus.html", + "license": "openssl-exception-gpl-2.0-plus.LICENSE" + }, + { + "license_key": "openssl-exception-gpl-3.0-plus", + "category": "Copyleft", + "spdx_license_key": "cryptsetup-OpenSSL-exception", + "other_spdx_license_keys": [ + "LicenseRef-scancode-openssl-exception-gpl-3.0-plus" + ], + "is_exception": true, + "is_deprecated": false, + "json": "openssl-exception-gpl-3.0-plus.json", + "yaml": "openssl-exception-gpl-3.0-plus.yml", + "html": "openssl-exception-gpl-3.0-plus.html", + "license": "openssl-exception-gpl-3.0-plus.LICENSE" + }, + { + "license_key": "openssl-exception-lgpl", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-openssl-exception-lgpl", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "openssl-exception-lgpl.json", + "yaml": "openssl-exception-lgpl.yml", + "html": "openssl-exception-lgpl.html", + "license": "openssl-exception-lgpl.LICENSE" + }, + { + "license_key": "openssl-exception-lgpl-2.0-plus", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-openssl-exception-lgpl2.0plus", + "other_spdx_license_keys": [ + "LicenseRef-scancode-openssl-exception-lgpl-2.0-plus" + ], + "is_exception": true, + "is_deprecated": false, + "json": "openssl-exception-lgpl-2.0-plus.json", + "yaml": "openssl-exception-lgpl-2.0-plus.yml", + "html": "openssl-exception-lgpl-2.0-plus.html", + "license": "openssl-exception-lgpl-2.0-plus.LICENSE" + }, + { + "license_key": "openssl-exception-lgpl-3.0-plus", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-openssl-exception-lgpl3.0plus", + "other_spdx_license_keys": [ + "LicenseRef-scancode-openssl-exception-lgpl-3.0-plus" + ], + "is_exception": true, + "is_deprecated": false, + "json": "openssl-exception-lgpl-3.0-plus.json", + "yaml": "openssl-exception-lgpl-3.0-plus.yml", + "html": "openssl-exception-lgpl-3.0-plus.html", + "license": "openssl-exception-lgpl-3.0-plus.LICENSE" + }, + { + "license_key": "openssl-exception-mongodb-sspl", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-openssl-exception-mongodb-sspl", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "openssl-exception-mongodb-sspl.json", + "yaml": "openssl-exception-mongodb-sspl.yml", + "html": "openssl-exception-mongodb-sspl.html", + "license": "openssl-exception-mongodb-sspl.LICENSE" + }, + { + "license_key": "openssl-nokia-psk-contribution", + "category": "Patent License", + "spdx_license_key": "LicenseRef-scancode-openssl-nokia-psk-contribution", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "openssl-nokia-psk-contribution.json", + "yaml": "openssl-nokia-psk-contribution.yml", + "html": "openssl-nokia-psk-contribution.html", + "license": "openssl-nokia-psk-contribution.LICENSE" + }, + { + "license_key": "openssl-ssleay", + "category": "Permissive", + "spdx_license_key": "OpenSSL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openssl-ssleay.json", + "yaml": "openssl-ssleay.yml", + "html": "openssl-ssleay.html", + "license": "openssl-ssleay.LICENSE" + }, + { + "license_key": "openvision", + "category": "Permissive", + "spdx_license_key": "OpenVision", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openvision.json", + "yaml": "openvision.yml", + "html": "openvision.html", + "license": "openvision.LICENSE" + }, + { + "license_key": "openvpn-as-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-openvpn-as-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openvpn-as-eula.json", + "yaml": "openvpn-as-eula.yml", + "html": "openvpn-as-eula.html", + "license": "openvpn-as-eula.LICENSE" + }, + { + "license_key": "openvpn-openssl-exception", + "category": "Copyleft Limited", + "spdx_license_key": "openvpn-openssl-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "openvpn-openssl-exception.json", + "yaml": "openvpn-openssl-exception.yml", + "html": "openvpn-openssl-exception.html", + "license": "openvpn-openssl-exception.LICENSE" + }, + { + "license_key": "openwall-md5-permissive", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-openwall-md5-permissive", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openwall-md5-permissive.json", + "yaml": "openwall-md5-permissive.yml", + "html": "openwall-md5-permissive.html", + "license": "openwall-md5-permissive.LICENSE" + }, + { + "license_key": "opera-eula-2018", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-opera-eula-2018", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "opera-eula-2018.json", + "yaml": "opera-eula-2018.yml", + "html": "opera-eula-2018.html", + "license": "opera-eula-2018.LICENSE" + }, + { + "license_key": "opera-eula-eea-2018", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-opera-eula-eea-2018", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "opera-eula-eea-2018.json", + "yaml": "opera-eula-eea-2018.yml", + "html": "opera-eula-eea-2018.html", + "license": "opera-eula-eea-2018.LICENSE" + }, + { + "license_key": "opera-widget-1.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-opera-widget-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "opera-widget-1.0.json", + "yaml": "opera-widget-1.0.yml", + "html": "opera-widget-1.0.html", + "license": "opera-widget-1.0.LICENSE" + }, + { + "license_key": "opl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-opl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "opl-1.0.json", + "yaml": "opl-1.0.yml", + "html": "opl-1.0.html", + "license": "opl-1.0.LICENSE" + }, + { + "license_key": "opl-uk-3.0", + "category": "Permissive", + "spdx_license_key": "OPL-UK-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "opl-uk-3.0.json", + "yaml": "opl-uk-3.0.yml", + "html": "opl-uk-3.0.html", + "license": "opl-uk-3.0.LICENSE" + }, + { + "license_key": "opml-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-opml-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "opml-1.0.json", + "yaml": "opml-1.0.yml", + "html": "opml-1.0.html", + "license": "opml-1.0.LICENSE" + }, + { + "license_key": "opnl-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-opnl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "opnl-1.0.json", + "yaml": "opnl-1.0.yml", + "html": "opnl-1.0.html", + "license": "opnl-1.0.LICENSE" + }, + { + "license_key": "opnl-2.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-opnl-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "opnl-2.0.json", + "yaml": "opnl-2.0.yml", + "html": "opnl-2.0.html", + "license": "opnl-2.0.LICENSE" + }, + { + "license_key": "oracle-bcl-javaee", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-oracle-bcl-javaee", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oracle-bcl-javaee.json", + "yaml": "oracle-bcl-javaee.yml", + "html": "oracle-bcl-javaee.html", + "license": "oracle-bcl-javaee.LICENSE" + }, + { + "license_key": "oracle-bcl-javase-javafx-2012", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-oracle-bcl-javase-javafx-2012", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oracle-bcl-javase-javafx-2012.json", + "yaml": "oracle-bcl-javase-javafx-2012.yml", + "html": "oracle-bcl-javase-javafx-2012.html", + "license": "oracle-bcl-javase-javafx-2012.LICENSE" + }, + { + "license_key": "oracle-bcl-javase-javafx-2013", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-oracle-bcl-javase-javafx-2013", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oracle-bcl-javase-javafx-2013.json", + "yaml": "oracle-bcl-javase-javafx-2013.yml", + "html": "oracle-bcl-javase-javafx-2013.html", + "license": "oracle-bcl-javase-javafx-2013.LICENSE" + }, + { + "license_key": "oracle-bcl-javase-platform-javafx-2013", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-oracle-bcl-java-platform-2013", + "other_spdx_license_keys": [ + "LicenseRef-scancode-oracle-bcl-javase-platform-javafx-2013" + ], + "is_exception": false, + "is_deprecated": false, + "json": "oracle-bcl-javase-platform-javafx-2013.json", + "yaml": "oracle-bcl-javase-platform-javafx-2013.yml", + "html": "oracle-bcl-javase-platform-javafx-2013.html", + "license": "oracle-bcl-javase-platform-javafx-2013.LICENSE" + }, + { + "license_key": "oracle-bcl-javase-platform-javafx-2017", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-oracle-bcl-java-platform-2017", + "other_spdx_license_keys": [ + "LicenseRef-scancode-oracle-bcl-javase-platform-javafx-2017" + ], + "is_exception": false, + "is_deprecated": false, + "json": "oracle-bcl-javase-platform-javafx-2017.json", + "yaml": "oracle-bcl-javase-platform-javafx-2017.yml", + "html": "oracle-bcl-javase-platform-javafx-2017.html", + "license": "oracle-bcl-javase-platform-javafx-2017.LICENSE" + }, + { + "license_key": "oracle-bcl-jsse-1.0.3", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-oracle-bcl-jsse-1.0.3", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oracle-bcl-jsse-1.0.3.json", + "yaml": "oracle-bcl-jsse-1.0.3.yml", + "html": "oracle-bcl-jsse-1.0.3.html", + "license": "oracle-bcl-jsse-1.0.3.LICENSE" + }, + { + "license_key": "oracle-bsd-no-nuclear", + "category": "Free Restricted", + "spdx_license_key": "BSD-3-Clause-No-Nuclear-License-2014", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oracle-bsd-no-nuclear.json", + "yaml": "oracle-bsd-no-nuclear.yml", + "html": "oracle-bsd-no-nuclear.html", + "license": "oracle-bsd-no-nuclear.LICENSE" + }, + { + "license_key": "oracle-code-samples-bsd", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-oracle-code-samples-bsd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oracle-code-samples-bsd.json", + "yaml": "oracle-code-samples-bsd.yml", + "html": "oracle-code-samples-bsd.html", + "license": "oracle-code-samples-bsd.LICENSE" + }, + { + "license_key": "oracle-commercial-database-11g2", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-oracle-commercial-db-11g2", + "other_spdx_license_keys": [ + "LicenseRef-scancode-oracle-commercial-database-11g2" + ], + "is_exception": false, + "is_deprecated": false, + "json": "oracle-commercial-database-11g2.json", + "yaml": "oracle-commercial-database-11g2.yml", + "html": "oracle-commercial-database-11g2.html", + "license": "oracle-commercial-database-11g2.LICENSE" + }, + { + "license_key": "oracle-devtools-vsnet-dev", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-oracle-devtools-vsnet-dev", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oracle-devtools-vsnet-dev.json", + "yaml": "oracle-devtools-vsnet-dev.yml", + "html": "oracle-devtools-vsnet-dev.html", + "license": "oracle-devtools-vsnet-dev.LICENSE" + }, + { + "license_key": "oracle-entitlement-05-15", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-oracle-entitlement-05-15", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oracle-entitlement-05-15.json", + "yaml": "oracle-entitlement-05-15.yml", + "html": "oracle-entitlement-05-15.html", + "license": "oracle-entitlement-05-15.LICENSE" + }, + { + "license_key": "oracle-free-2018", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-oracle-free-2018", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oracle-free-2018.json", + "yaml": "oracle-free-2018.yml", + "html": "oracle-free-2018.html", + "license": "oracle-free-2018.LICENSE" + }, + { + "license_key": "oracle-gftc-2023-06-12", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-oracle-gftc-2023-06-12", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oracle-gftc-2023-06-12.json", + "yaml": "oracle-gftc-2023-06-12.yml", + "html": "oracle-gftc-2023-06-12.html", + "license": "oracle-gftc-2023-06-12.LICENSE" + }, + { + "license_key": "oracle-java-ee-sdk-2010", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-oracle-java-ee-sdk-2010", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oracle-java-ee-sdk-2010.json", + "yaml": "oracle-java-ee-sdk-2010.yml", + "html": "oracle-java-ee-sdk-2010.html", + "license": "oracle-java-ee-sdk-2010.LICENSE" + }, + { + "license_key": "oracle-master-agreement", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-oracle-master-agreement", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oracle-master-agreement.json", + "yaml": "oracle-master-agreement.yml", + "html": "oracle-master-agreement.html", + "license": "oracle-master-agreement.LICENSE" + }, + { + "license_key": "oracle-mysql-foss-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-oracle-mysql-foss-exception2.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-oracle-mysql-foss-exception-2.0" + ], + "is_exception": true, + "is_deprecated": false, + "json": "oracle-mysql-foss-exception-2.0.json", + "yaml": "oracle-mysql-foss-exception-2.0.yml", + "html": "oracle-mysql-foss-exception-2.0.html", + "license": "oracle-mysql-foss-exception-2.0.LICENSE" + }, + { + "license_key": "oracle-nftc-2021", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-oracle-nftc-2021", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oracle-nftc-2021.json", + "yaml": "oracle-nftc-2021.yml", + "html": "oracle-nftc-2021.html", + "license": "oracle-nftc-2021.LICENSE" + }, + { + "license_key": "oracle-openjdk-classpath-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-oracle-openjdk-exception-2.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-oracle-openjdk-classpath-exception-2.0" + ], + "is_exception": true, + "is_deprecated": false, + "json": "oracle-openjdk-classpath-exception-2.0.json", + "yaml": "oracle-openjdk-classpath-exception-2.0.yml", + "html": "oracle-openjdk-classpath-exception-2.0.html", + "license": "oracle-openjdk-classpath-exception-2.0.LICENSE" + }, + { + "license_key": "oracle-otn-javase-2019", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-oracle-otn-javase-2019", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oracle-otn-javase-2019.json", + "yaml": "oracle-otn-javase-2019.yml", + "html": "oracle-otn-javase-2019.html", + "license": "oracle-otn-javase-2019.LICENSE" + }, + { + "license_key": "oracle-sql-developer", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-oracle-sql-developer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oracle-sql-developer.json", + "yaml": "oracle-sql-developer.yml", + "html": "oracle-sql-developer.html", + "license": "oracle-sql-developer.LICENSE" + }, + { + "license_key": "oracle-web-sites-tou", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-oracle-web-sites-tou", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oracle-web-sites-tou.json", + "yaml": "oracle-web-sites-tou.yml", + "html": "oracle-web-sites-tou.html", + "license": "oracle-web-sites-tou.LICENSE" + }, + { + "license_key": "oreilly-notice", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-oreilly-notice", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oreilly-notice.json", + "yaml": "oreilly-notice.yml", + "html": "oreilly-notice.html", + "license": "oreilly-notice.LICENSE" + }, + { + "license_key": "oset-pl-2.1", + "category": "Copyleft Limited", + "spdx_license_key": "OSET-PL-2.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oset-pl-2.1.json", + "yaml": "oset-pl-2.1.yml", + "html": "oset-pl-2.1.html", + "license": "oset-pl-2.1.LICENSE" + }, + { + "license_key": "osetpl-2.1", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "osetpl-2.1.json", + "yaml": "osetpl-2.1.yml", + "html": "osetpl-2.1.html", + "license": "osetpl-2.1.LICENSE" + }, + { + "license_key": "osf-1990", + "category": "Permissive", + "spdx_license_key": "HP-1989", + "other_spdx_license_keys": [ + "LicenseRef-scancode-osf-1990" + ], + "is_exception": false, + "is_deprecated": false, + "json": "osf-1990.json", + "yaml": "osf-1990.yml", + "html": "osf-1990.html", + "license": "osf-1990.LICENSE" + }, + { + "license_key": "osgi-spec-2.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-osgi-spec-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "osgi-spec-2.0.json", + "yaml": "osgi-spec-2.0.yml", + "html": "osgi-spec-2.0.html", + "license": "osgi-spec-2.0.LICENSE" + }, + { + "license_key": "osl-1.0", + "category": "Copyleft", + "spdx_license_key": "OSL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "osl-1.0.json", + "yaml": "osl-1.0.yml", + "html": "osl-1.0.html", + "license": "osl-1.0.LICENSE" + }, + { + "license_key": "osl-1.1", + "category": "Copyleft", + "spdx_license_key": "OSL-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "osl-1.1.json", + "yaml": "osl-1.1.yml", + "html": "osl-1.1.html", + "license": "osl-1.1.LICENSE" + }, + { + "license_key": "osl-2.0", + "category": "Copyleft", + "spdx_license_key": "OSL-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "osl-2.0.json", + "yaml": "osl-2.0.yml", + "html": "osl-2.0.html", + "license": "osl-2.0.LICENSE" + }, + { + "license_key": "osl-2.1", + "category": "Copyleft", + "spdx_license_key": "OSL-2.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "osl-2.1.json", + "yaml": "osl-2.1.yml", + "html": "osl-2.1.html", + "license": "osl-2.1.LICENSE" + }, + { + "license_key": "osl-3.0", + "category": "Copyleft", + "spdx_license_key": "OSL-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "osl-3.0.json", + "yaml": "osl-3.0.yml", + "html": "osl-3.0.html", + "license": "osl-3.0.LICENSE" + }, + { + "license_key": "ossn-3.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ossn-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ossn-3.0.json", + "yaml": "ossn-3.0.yml", + "html": "ossn-3.0.html", + "license": "ossn-3.0.LICENSE" + }, + { + "license_key": "oswego-concurrent", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-oswego-concurrent", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oswego-concurrent.json", + "yaml": "oswego-concurrent.yml", + "html": "oswego-concurrent.html", + "license": "oswego-concurrent.LICENSE" + }, + { + "license_key": "other-copyleft", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-other-copyleft", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "other-copyleft.json", + "yaml": "other-copyleft.yml", + "html": "other-copyleft.html", + "license": "other-copyleft.LICENSE" + }, + { + "license_key": "other-permissive", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-other-permissive", + "other_spdx_license_keys": [ + "LicenseRef-Fedora-UltraPermissive" + ], + "is_exception": false, + "is_deprecated": false, + "json": "other-permissive.json", + "yaml": "other-permissive.yml", + "html": "other-permissive.html", + "license": "other-permissive.LICENSE" + }, + { + "license_key": "otn-dev-dist", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-otn-dev-dist", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "otn-dev-dist.json", + "yaml": "otn-dev-dist.yml", + "html": "otn-dev-dist.html", + "license": "otn-dev-dist.LICENSE" + }, + { + "license_key": "otn-dev-dist-2009", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-otn-dev-dist-2009", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "otn-dev-dist-2009.json", + "yaml": "otn-dev-dist-2009.yml", + "html": "otn-dev-dist-2009.html", + "license": "otn-dev-dist-2009.LICENSE" + }, + { + "license_key": "otn-dev-dist-2014", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-otn-dev-dist-2014", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "otn-dev-dist-2014.json", + "yaml": "otn-dev-dist-2014.yml", + "html": "otn-dev-dist-2014.html", + "license": "otn-dev-dist-2014.LICENSE" + }, + { + "license_key": "otn-dev-dist-2016", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-otn-dev-dist-2016", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "otn-dev-dist-2016.json", + "yaml": "otn-dev-dist-2016.yml", + "html": "otn-dev-dist-2016.html", + "license": "otn-dev-dist-2016.LICENSE" + }, + { + "license_key": "otn-early-adopter-2018", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-otn-early-adopter-2018", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "otn-early-adopter-2018.json", + "yaml": "otn-early-adopter-2018.yml", + "html": "otn-early-adopter-2018.html", + "license": "otn-early-adopter-2018.LICENSE" + }, + { + "license_key": "otn-early-adopter-development", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-otn-early-adopter-development", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "otn-early-adopter-development.json", + "yaml": "otn-early-adopter-development.yml", + "html": "otn-early-adopter-development.html", + "license": "otn-early-adopter-development.LICENSE" + }, + { + "license_key": "otn-standard-2014-09", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-otn-standard-2014-09", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "otn-standard-2014-09.json", + "yaml": "otn-standard-2014-09.yml", + "html": "otn-standard-2014-09.html", + "license": "otn-standard-2014-09.LICENSE" + }, + { + "license_key": "owal-1.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-owal-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "owal-1.0.json", + "yaml": "owal-1.0.yml", + "html": "owal-1.0.html", + "license": "owal-1.0.LICENSE" + }, + { + "license_key": "owf-cla-1.0-copyright", + "category": "CLA", + "spdx_license_key": "LicenseRef-scancode-owf-cla-1.0-copyright", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "owf-cla-1.0-copyright.json", + "yaml": "owf-cla-1.0-copyright.yml", + "html": "owf-cla-1.0-copyright.html", + "license": "owf-cla-1.0-copyright.LICENSE" + }, + { + "license_key": "owf-cla-1.0-copyright-patent", + "category": "CLA", + "spdx_license_key": "LicenseRef-scancode-owf-cla-1.0-copyright-patent", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "owf-cla-1.0-copyright-patent.json", + "yaml": "owf-cla-1.0-copyright-patent.yml", + "html": "owf-cla-1.0-copyright-patent.html", + "license": "owf-cla-1.0-copyright-patent.LICENSE" + }, + { + "license_key": "owfa-1-0-patent-only", + "category": "Patent License", + "spdx_license_key": "LicenseRef-scancode-owfa-1.0-patent-only", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "owfa-1-0-patent-only.json", + "yaml": "owfa-1-0-patent-only.yml", + "html": "owfa-1-0-patent-only.html", + "license": "owfa-1-0-patent-only.LICENSE" + }, + { + "license_key": "owfa-1.0", + "category": "Patent License", + "spdx_license_key": "LicenseRef-scancode-owfa-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "owfa-1.0.json", + "yaml": "owfa-1.0.yml", + "html": "owfa-1.0.html", + "license": "owfa-1.0.LICENSE" + }, + { + "license_key": "owl-0.9.4", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-owl-0.9.4", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "owl-0.9.4.json", + "yaml": "owl-0.9.4.yml", + "html": "owl-0.9.4.html", + "license": "owl-0.9.4.LICENSE" + }, + { + "license_key": "owtchart", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-owtchart", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "owtchart.json", + "yaml": "owtchart.yml", + "html": "owtchart.html", + "license": "owtchart.LICENSE" + }, + { + "license_key": "oxygen-xml-webhelp-eula", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-oxygen-xml-webhelp-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oxygen-xml-webhelp-eula.json", + "yaml": "oxygen-xml-webhelp-eula.yml", + "html": "oxygen-xml-webhelp-eula.html", + "license": "oxygen-xml-webhelp-eula.LICENSE" + }, + { + "license_key": "ozplb-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ozplb-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ozplb-1.0.json", + "yaml": "ozplb-1.0.yml", + "html": "ozplb-1.0.html", + "license": "ozplb-1.0.LICENSE" + }, + { + "license_key": "ozplb-1.1", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ozplb-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ozplb-1.1.json", + "yaml": "ozplb-1.1.yml", + "html": "ozplb-1.1.html", + "license": "ozplb-1.1.LICENSE" + }, + { + "license_key": "padl", + "category": "Permissive", + "spdx_license_key": "PADL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "padl.json", + "yaml": "padl.yml", + "html": "padl.html", + "license": "padl.LICENSE" + }, + { + "license_key": "paint-net", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-paint-net", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "paint-net.json", + "yaml": "paint-net.yml", + "html": "paint-net.html", + "license": "paint-net.LICENSE" + }, + { + "license_key": "paolo-messina-2000", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-paolo-messina-2000", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "paolo-messina-2000.json", + "yaml": "paolo-messina-2000.yml", + "html": "paolo-messina-2000.html", + "license": "paolo-messina-2000.LICENSE" + }, + { + "license_key": "paraview-1.2", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-paraview-1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "paraview-1.2.json", + "yaml": "paraview-1.2.yml", + "html": "paraview-1.2.html", + "license": "paraview-1.2.LICENSE" + }, + { + "license_key": "parity-6.0.0", + "category": "Copyleft", + "spdx_license_key": "Parity-6.0.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "parity-6.0.0.json", + "yaml": "parity-6.0.0.yml", + "html": "parity-6.0.0.html", + "license": "parity-6.0.0.LICENSE" + }, + { + "license_key": "parity-7.0.0", + "category": "Copyleft", + "spdx_license_key": "Parity-7.0.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "parity-7.0.0.json", + "yaml": "parity-7.0.0.yml", + "html": "parity-7.0.0.html", + "license": "parity-7.0.0.LICENSE" + }, + { + "license_key": "passive-aggressive", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-passive-aggressive", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "passive-aggressive.json", + "yaml": "passive-aggressive.yml", + "html": "passive-aggressive.html", + "license": "passive-aggressive.LICENSE" + }, + { + "license_key": "patent-disclaimer", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-patent-disclaimer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "patent-disclaimer.json", + "yaml": "patent-disclaimer.yml", + "html": "patent-disclaimer.html", + "license": "patent-disclaimer.LICENSE" + }, + { + "license_key": "paul-hsieh-derivative", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-paul-hsieh-derivative", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "paul-hsieh-derivative.json", + "yaml": "paul-hsieh-derivative.yml", + "html": "paul-hsieh-derivative.html", + "license": "paul-hsieh-derivative.LICENSE" + }, + { + "license_key": "paul-hsieh-exposition", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-paul-hsieh-exposition", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "paul-hsieh-exposition.json", + "yaml": "paul-hsieh-exposition.yml", + "html": "paul-hsieh-exposition.html", + "license": "paul-hsieh-exposition.LICENSE" + }, + { + "license_key": "paul-mackerras", + "category": "Permissive", + "spdx_license_key": "Mackerras-3-Clause-acknowledgment", + "other_spdx_license_keys": [ + "LicenseRef-scancode-paul-mackerras" + ], + "is_exception": false, + "is_deprecated": false, + "json": "paul-mackerras.json", + "yaml": "paul-mackerras.yml", + "html": "paul-mackerras.html", + "license": "paul-mackerras.LICENSE" + }, + { + "license_key": "paul-mackerras-binary", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-paul-mackerras-binary", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "paul-mackerras-binary.json", + "yaml": "paul-mackerras-binary.yml", + "html": "paul-mackerras-binary.html", + "license": "paul-mackerras-binary.LICENSE" + }, + { + "license_key": "paul-mackerras-new", + "category": "Permissive", + "spdx_license_key": "Mackerras-3-Clause", + "other_spdx_license_keys": [ + "LicenseRef-scancode-paul-mackerras-new" + ], + "is_exception": false, + "is_deprecated": false, + "json": "paul-mackerras-new.json", + "yaml": "paul-mackerras-new.yml", + "html": "paul-mackerras-new.html", + "license": "paul-mackerras-new.LICENSE" + }, + { + "license_key": "paul-mackerras-simplified", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-paul-mackerras-simplified", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "paul-mackerras-simplified.json", + "yaml": "paul-mackerras-simplified.yml", + "html": "paul-mackerras-simplified.html", + "license": "paul-mackerras-simplified.LICENSE" + }, + { + "license_key": "paulo-soares", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-paulo-soares", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "paulo-soares.json", + "yaml": "paulo-soares.yml", + "html": "paulo-soares.html", + "license": "paulo-soares.LICENSE" + }, + { + "license_key": "paypal-sdk-2013-2016", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-paypal-sdk-2013-2016", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "paypal-sdk-2013-2016.json", + "yaml": "paypal-sdk-2013-2016.yml", + "html": "paypal-sdk-2013-2016.html", + "license": "paypal-sdk-2013-2016.LICENSE" + }, + { + "license_key": "pbl-1.0", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-pbl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "pbl-1.0.json", + "yaml": "pbl-1.0.yml", + "html": "pbl-1.0.html", + "license": "pbl-1.0.LICENSE" + }, + { + "license_key": "pcre", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-pcre", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "pcre.json", + "yaml": "pcre.yml", + "html": "pcre.html", + "license": "pcre.LICENSE" + }, + { + "license_key": "pd-mit", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-pd-mit", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "pd-mit.json", + "yaml": "pd-mit.yml", + "html": "pd-mit.html", + "license": "pd-mit.LICENSE" + }, + { + "license_key": "pd-programming", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-pd-programming", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "pd-programming.json", + "yaml": "pd-programming.yml", + "html": "pd-programming.html", + "license": "pd-programming.LICENSE" + }, + { + "license_key": "pddl-1.0", + "category": "Public Domain", + "spdx_license_key": "PDDL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "pddl-1.0.json", + "yaml": "pddl-1.0.yml", + "html": "pddl-1.0.html", + "license": "pddl-1.0.LICENSE" + }, + { + "license_key": "pdf-creator-pilot", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-pdf-creator-pilot", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "pdf-creator-pilot.json", + "yaml": "pdf-creator-pilot.yml", + "html": "pdf-creator-pilot.html", + "license": "pdf-creator-pilot.LICENSE" + }, + { + "license_key": "pdl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-pdl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "pdl-1.0.json", + "yaml": "pdl-1.0.yml", + "html": "pdl-1.0.html", + "license": "pdl-1.0.LICENSE" + }, + { + "license_key": "perl-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-perl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "perl-1.0.json", + "yaml": "perl-1.0.yml", + "html": "perl-1.0.html", + "license": "perl-1.0.LICENSE" + }, + { + "license_key": "peter-deutsch-document", + "category": "Permissive", + "spdx_license_key": "LPD-document", + "other_spdx_license_keys": [ + "LicenseRef-scancode-peter-deutsch-document" + ], + "is_exception": false, + "is_deprecated": false, + "json": "peter-deutsch-document.json", + "yaml": "peter-deutsch-document.yml", + "html": "peter-deutsch-document.html", + "license": "peter-deutsch-document.LICENSE" + }, + { + "license_key": "pfe-proprietary-notice", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-pfe-proprietary-notice", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "pfe-proprietary-notice.json", + "yaml": "pfe-proprietary-notice.yml", + "html": "pfe-proprietary-notice.html", + "license": "pfe-proprietary-notice.LICENSE" + }, + { + "license_key": "pftijah-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-pftijah-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "pftijah-1.1.json", + "yaml": "pftijah-1.1.yml", + "html": "pftijah-1.1.html", + "license": "pftijah-1.1.LICENSE" + }, + { + "license_key": "pftus-1.1", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-pftus-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "pftus-1.1.json", + "yaml": "pftus-1.1.yml", + "html": "pftus-1.1.html", + "license": "pftus-1.1.LICENSE" + }, + { + "license_key": "phaser-academic", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-phaser-academic", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "phaser-academic.json", + "yaml": "phaser-academic.yml", + "html": "phaser-academic.html", + "license": "phaser-academic.LICENSE" + }, + { + "license_key": "phaser-ccp4", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-phaser-ccp4", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "phaser-ccp4.json", + "yaml": "phaser-ccp4.yml", + "html": "phaser-ccp4.html", + "license": "phaser-ccp4.LICENSE" + }, + { + "license_key": "phaser-phenix", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-phaser-phenix", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "phaser-phenix.json", + "yaml": "phaser-phenix.yml", + "html": "phaser-phenix.html", + "license": "phaser-phenix.LICENSE" + }, + { + "license_key": "phil-bunce", + "category": "Public Domain", + "spdx_license_key": "LicenseRef-scancode-phil-bunce", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "phil-bunce.json", + "yaml": "phil-bunce.yml", + "html": "phil-bunce.html", + "license": "phil-bunce.LICENSE" + }, + { + "license_key": "philippe-de-muyter", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-philippe-de-muyter", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "philippe-de-muyter.json", + "yaml": "philippe-de-muyter.yml", + "html": "philippe-de-muyter.html", + "license": "philippe-de-muyter.LICENSE" + }, + { + "license_key": "philips-proprietary-notice-2000", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-philips-proprietary-notice2000", + "other_spdx_license_keys": [ + "LicenseRef-scancode-philips-proprietary-notice-2000" + ], + "is_exception": false, + "is_deprecated": false, + "json": "philips-proprietary-notice-2000.json", + "yaml": "philips-proprietary-notice-2000.yml", + "html": "philips-proprietary-notice-2000.html", + "license": "philips-proprietary-notice-2000.LICENSE" + }, + { + "license_key": "phorum-2.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-phorum-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "phorum-2.0.json", + "yaml": "phorum-2.0.yml", + "html": "phorum-2.0.html", + "license": "phorum-2.0.LICENSE" + }, + { + "license_key": "php-2.0.2", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-php-2.0.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "php-2.0.2.json", + "yaml": "php-2.0.2.yml", + "html": "php-2.0.2.html", + "license": "php-2.0.2.LICENSE" + }, + { + "license_key": "php-3.0", + "category": "Permissive", + "spdx_license_key": "PHP-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "php-3.0.json", + "yaml": "php-3.0.yml", + "html": "php-3.0.html", + "license": "php-3.0.LICENSE" + }, + { + "license_key": "php-3.01", + "category": "Permissive", + "spdx_license_key": "PHP-3.01", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "php-3.01.json", + "yaml": "php-3.01.yml", + "html": "php-3.01.html", + "license": "php-3.01.LICENSE" + }, + { + "license_key": "pine", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-pine", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "pine.json", + "yaml": "pine.yml", + "html": "pine.html", + "license": "pine.LICENSE" + }, + { + "license_key": "pivotal-tou", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-pivotal-tou", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "pivotal-tou.json", + "yaml": "pivotal-tou.yml", + "html": "pivotal-tou.html", + "license": "pivotal-tou.LICENSE" + }, + { + "license_key": "pixabay-content", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-pixabay-content", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "pixabay-content.json", + "yaml": "pixabay-content.yml", + "html": "pixabay-content.html", + "license": "pixabay-content.LICENSE" + }, + { + "license_key": "pixar", + "category": "Permissive", + "spdx_license_key": "Pixar", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "pixar.json", + "yaml": "pixar.yml", + "html": "pixar.html", + "license": "pixar.LICENSE" + }, + { + "license_key": "planet-source-code", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-planet-source-code", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "planet-source-code.json", + "yaml": "planet-source-code.yml", + "html": "planet-source-code.html", + "license": "planet-source-code.LICENSE" + }, + { + "license_key": "plural-20211124", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-plural-20211124", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "plural-20211124.json", + "yaml": "plural-20211124.yml", + "html": "plural-20211124.html", + "license": "plural-20211124.LICENSE" + }, + { + "license_key": "pml-2020", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-pml-2020", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "pml-2020.json", + "yaml": "pml-2020.yml", + "html": "pml-2020.html", + "license": "pml-2020.LICENSE" + }, + { + "license_key": "pngsuite", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-pngsuite", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "pngsuite.json", + "yaml": "pngsuite.yml", + "html": "pngsuite.html", + "license": "pngsuite.LICENSE" + }, + { + "license_key": "pnmstitch", + "category": "Permissive", + "spdx_license_key": "pnmstitch", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "pnmstitch.json", + "yaml": "pnmstitch.yml", + "html": "pnmstitch.html", + "license": "pnmstitch.LICENSE" + }, + { + "license_key": "politepix-pl-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-politepix-pl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "politepix-pl-1.0.json", + "yaml": "politepix-pl-1.0.yml", + "html": "politepix-pl-1.0.html", + "license": "politepix-pl-1.0.LICENSE" + }, + { + "license_key": "polyform-defensive-1.0.0", + "category": "Source-available", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "polyform-defensive-1.0.0.json", + "yaml": "polyform-defensive-1.0.0.yml", + "html": "polyform-defensive-1.0.0.html", + "license": "polyform-defensive-1.0.0.LICENSE" + }, + { + "license_key": "polyform-free-trial-1.0.0", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-polyform-free-trial-1.0.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "polyform-free-trial-1.0.0.json", + "yaml": "polyform-free-trial-1.0.0.yml", + "html": "polyform-free-trial-1.0.0.html", + "license": "polyform-free-trial-1.0.0.LICENSE" + }, + { + "license_key": "polyform-internal-use-1.0.0", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-polyform-internal-use-1.0.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "polyform-internal-use-1.0.0.json", + "yaml": "polyform-internal-use-1.0.0.yml", + "html": "polyform-internal-use-1.0.0.html", + "license": "polyform-internal-use-1.0.0.LICENSE" + }, + { + "license_key": "polyform-noncommercial-1.0.0", + "category": "Source-available", + "spdx_license_key": "PolyForm-Noncommercial-1.0.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "polyform-noncommercial-1.0.0.json", + "yaml": "polyform-noncommercial-1.0.0.yml", + "html": "polyform-noncommercial-1.0.0.html", + "license": "polyform-noncommercial-1.0.0.LICENSE" + }, + { + "license_key": "polyform-perimeter-1.0.0", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-polyform-perimeter-1.0.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "polyform-perimeter-1.0.0.json", + "yaml": "polyform-perimeter-1.0.0.yml", + "html": "polyform-perimeter-1.0.0.html", + "license": "polyform-perimeter-1.0.0.LICENSE" + }, + { + "license_key": "polyform-shield-1.0.0", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-polyform-shield-1.0.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-polyform-defensive-1.0.0" + ], + "is_exception": false, + "is_deprecated": false, + "json": "polyform-shield-1.0.0.json", + "yaml": "polyform-shield-1.0.0.yml", + "html": "polyform-shield-1.0.0.html", + "license": "polyform-shield-1.0.0.LICENSE" + }, + { + "license_key": "polyform-small-business-1.0.0", + "category": "Source-available", + "spdx_license_key": "PolyForm-Small-Business-1.0.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "polyform-small-business-1.0.0.json", + "yaml": "polyform-small-business-1.0.0.yml", + "html": "polyform-small-business-1.0.0.html", + "license": "polyform-small-business-1.0.0.LICENSE" + }, + { + "license_key": "polyform-strict-1.0.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-polyform-strict-1.0.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "polyform-strict-1.0.0.json", + "yaml": "polyform-strict-1.0.0.yml", + "html": "polyform-strict-1.0.0.html", + "license": "polyform-strict-1.0.0.LICENSE" + }, + { + "license_key": "postgresql", + "category": "Permissive", + "spdx_license_key": "PostgreSQL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "postgresql.json", + "yaml": "postgresql.yml", + "html": "postgresql.html", + "license": "postgresql.LICENSE" + }, + { + "license_key": "powervr-tools-software-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-powervr-tools-software-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "powervr-tools-software-eula.json", + "yaml": "powervr-tools-software-eula.yml", + "html": "powervr-tools-software-eula.html", + "license": "powervr-tools-software-eula.LICENSE" + }, + { + "license_key": "ppp", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ppp", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ppp.json", + "yaml": "ppp.yml", + "html": "ppp.html", + "license": "ppp.LICENSE" + }, + { + "license_key": "proconx-modbus-rev4", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-proconx-modbus-rev4", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "proconx-modbus-rev4.json", + "yaml": "proconx-modbus-rev4.yml", + "html": "proconx-modbus-rev4.html", + "license": "proconx-modbus-rev4.LICENSE" + }, + { + "license_key": "proguard-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-proguard-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "proguard-exception-2.0.json", + "yaml": "proguard-exception-2.0.yml", + "html": "proguard-exception-2.0.html", + "license": "proguard-exception-2.0.LICENSE" + }, + { + "license_key": "proprietary", + "category": "Proprietary Free", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "proprietary.json", + "yaml": "proprietary.yml", + "html": "proprietary.html", + "license": "proprietary.LICENSE" + }, + { + "license_key": "proprietary-license", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-proprietary-license", + "other_spdx_license_keys": [ + "LicenseRef-LICENSE", + "LicenseRef-LICENSE.md" + ], + "is_exception": false, + "is_deprecated": false, + "json": "proprietary-license.json", + "yaml": "proprietary-license.yml", + "html": "proprietary-license.html", + "license": "proprietary-license.LICENSE" + }, + { + "license_key": "prosperity-1.0.1", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-prosperity-1.0.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "prosperity-1.0.1.json", + "yaml": "prosperity-1.0.1.yml", + "html": "prosperity-1.0.1.html", + "license": "prosperity-1.0.1.LICENSE" + }, + { + "license_key": "prosperity-2.0", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-prosperity-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "prosperity-2.0.json", + "yaml": "prosperity-2.0.yml", + "html": "prosperity-2.0.html", + "license": "prosperity-2.0.LICENSE" + }, + { + "license_key": "prosperity-3.0", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-prosperity-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "prosperity-3.0.json", + "yaml": "prosperity-3.0.yml", + "html": "prosperity-3.0.html", + "license": "prosperity-3.0.LICENSE" + }, + { + "license_key": "protobuf", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-protobuf", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "protobuf.json", + "yaml": "protobuf.yml", + "html": "protobuf.html", + "license": "protobuf.LICENSE" + }, + { + "license_key": "ps-or-pdf-font-exception-20170817", + "category": "Copyleft Limited", + "spdx_license_key": "PS-or-PDF-font-exception-20170817", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "ps-or-pdf-font-exception-20170817.json", + "yaml": "ps-or-pdf-font-exception-20170817.yml", + "html": "ps-or-pdf-font-exception-20170817.html", + "license": "ps-or-pdf-font-exception-20170817.LICENSE" + }, + { + "license_key": "psf-2.0", + "category": "Permissive", + "spdx_license_key": "PSF-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "psf-2.0.json", + "yaml": "psf-2.0.yml", + "html": "psf-2.0.html", + "license": "psf-2.0.LICENSE" + }, + { + "license_key": "psf-3.7.2", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-psf-3.7.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "psf-3.7.2.json", + "yaml": "psf-3.7.2.yml", + "html": "psf-3.7.2.html", + "license": "psf-3.7.2.LICENSE" + }, + { + "license_key": "psfrag", + "category": "Permissive", + "spdx_license_key": "psfrag", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "psfrag.json", + "yaml": "psfrag.yml", + "html": "psfrag.html", + "license": "psfrag.LICENSE" + }, + { + "license_key": "psutils", + "category": "Permissive", + "spdx_license_key": "psutils", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "psutils.json", + "yaml": "psutils.yml", + "html": "psutils.html", + "license": "psutils.LICENSE" + }, + { + "license_key": "psytec-freesoft", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-psytec-freesoft", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "psytec-freesoft.json", + "yaml": "psytec-freesoft.yml", + "html": "psytec-freesoft.html", + "license": "psytec-freesoft.LICENSE" + }, + { + "license_key": "public-domain", + "category": "Public Domain", + "spdx_license_key": "LicenseRef-scancode-public-domain", + "other_spdx_license_keys": [ + "LicenseRef-PublicDomain", + "LicenseRef-Fedora-Public-Domain" + ], + "is_exception": false, + "is_deprecated": false, + "json": "public-domain.json", + "yaml": "public-domain.yml", + "html": "public-domain.html", + "license": "public-domain.LICENSE" + }, + { + "license_key": "public-domain-disclaimer", + "category": "Public Domain", + "spdx_license_key": "LicenseRef-scancode-public-domain-disclaimer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "public-domain-disclaimer.json", + "yaml": "public-domain-disclaimer.yml", + "html": "public-domain-disclaimer.html", + "license": "public-domain-disclaimer.LICENSE" + }, + { + "license_key": "punycode", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-punycode", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "punycode.json", + "yaml": "punycode.yml", + "html": "punycode.html", + "license": "punycode.LICENSE" + }, + { + "license_key": "purdue-bsd", + "category": "Permissive", + "spdx_license_key": "lsof", + "other_spdx_license_keys": [ + "LicenseRef-scancode-purdue-bsd" + ], + "is_exception": false, + "is_deprecated": false, + "json": "purdue-bsd.json", + "yaml": "purdue-bsd.yml", + "html": "purdue-bsd.html", + "license": "purdue-bsd.LICENSE" + }, + { + "license_key": "pybench", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-pybench", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "pybench.json", + "yaml": "pybench.yml", + "html": "pybench.html", + "license": "pybench.LICENSE" + }, + { + "license_key": "pycrypto", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-pycrypto", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "pycrypto.json", + "yaml": "pycrypto.yml", + "html": "pycrypto.html", + "license": "pycrypto.LICENSE" + }, + { + "license_key": "pygres-2.2", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-pygres-2.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "pygres-2.2.json", + "yaml": "pygres-2.2.yml", + "html": "pygres-2.2.html", + "license": "pygres-2.2.LICENSE" + }, + { + "license_key": "python", + "category": "Permissive", + "spdx_license_key": "Python-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "python.json", + "yaml": "python.yml", + "html": "python.html", + "license": "python.LICENSE" + }, + { + "license_key": "python-2.0.1", + "category": "Permissive", + "spdx_license_key": "Python-2.0.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "python-2.0.1.json", + "yaml": "python-2.0.1.yml", + "html": "python-2.0.1.html", + "license": "python-2.0.1.LICENSE" + }, + { + "license_key": "python-cwi", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-python-cwi", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "python-cwi.json", + "yaml": "python-cwi.yml", + "html": "python-cwi.html", + "license": "python-cwi.LICENSE" + }, + { + "license_key": "python-ldap", + "category": "Permissive", + "spdx_license_key": "python-ldap", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "python-ldap.json", + "yaml": "python-ldap.yml", + "html": "python-ldap.html", + "license": "python-ldap.LICENSE" + }, + { + "license_key": "qaplug", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-qaplug", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "qaplug.json", + "yaml": "qaplug.yml", + "html": "qaplug.html", + "license": "qaplug.LICENSE" + }, + { + "license_key": "qca-linux-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-qca-linux-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "qca-linux-firmware.json", + "yaml": "qca-linux-firmware.yml", + "html": "qca-linux-firmware.html", + "license": "qca-linux-firmware.LICENSE" + }, + { + "license_key": "qca-technology", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-qca-technology", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "qca-technology.json", + "yaml": "qca-technology.yml", + "html": "qca-technology.html", + "license": "qca-technology.LICENSE" + }, + { + "license_key": "qcad-exception-gpl", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-qcad-exception-gpl", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "qcad-exception-gpl.json", + "yaml": "qcad-exception-gpl.yml", + "html": "qcad-exception-gpl.html", + "license": "qcad-exception-gpl.LICENSE" + }, + { + "license_key": "qhull", + "category": "Copyleft Limited", + "spdx_license_key": "Qhull", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "qhull.json", + "yaml": "qhull.yml", + "html": "qhull.html", + "license": "qhull.LICENSE" + }, + { + "license_key": "qlogic-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-qlogic-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "qlogic-firmware.json", + "yaml": "qlogic-firmware.yml", + "html": "qlogic-firmware.html", + "license": "qlogic-firmware.LICENSE" + }, + { + "license_key": "qlogic-microcode", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-qlogic-microcode", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "qlogic-microcode.json", + "yaml": "qlogic-microcode.yml", + "html": "qlogic-microcode.html", + "license": "qlogic-microcode.LICENSE" + }, + { + "license_key": "qpl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "QPL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "qpl-1.0.json", + "yaml": "qpl-1.0.yml", + "html": "qpl-1.0.html", + "license": "qpl-1.0.LICENSE" + }, + { + "license_key": "qpl-1.0-inria-2004", + "category": "Copyleft Limited", + "spdx_license_key": "QPL-1.0-INRIA-2004", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "qpl-1.0-inria-2004.json", + "yaml": "qpl-1.0-inria-2004.yml", + "html": "qpl-1.0-inria-2004.html", + "license": "qpl-1.0-inria-2004.LICENSE" + }, + { + "license_key": "qpopper", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-qpopper", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "qpopper.json", + "yaml": "qpopper.yml", + "html": "qpopper.html", + "license": "qpopper.LICENSE" + }, + { + "license_key": "qskinny-exception-lgpl-2.1", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-qskinny-exception-lgpl-2.1", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "qskinny-exception-lgpl-2.1.json", + "yaml": "qskinny-exception-lgpl-2.1.yml", + "html": "qskinny-exception-lgpl-2.1.html", + "license": "qskinny-exception-lgpl-2.1.LICENSE" + }, + { + "license_key": "qt-commercial-1.1", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-qt-commercial-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "qt-commercial-1.1.json", + "yaml": "qt-commercial-1.1.yml", + "html": "qt-commercial-1.1.html", + "license": "qt-commercial-1.1.LICENSE" + }, + { + "license_key": "qt-commercial-agreement-4.4.1", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-qt-commercial-agreement-4.4.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "qt-commercial-agreement-4.4.1.json", + "yaml": "qt-commercial-agreement-4.4.1.yml", + "html": "qt-commercial-agreement-4.4.1.html", + "license": "qt-commercial-agreement-4.4.1.LICENSE" + }, + { + "license_key": "qt-company-exception-2017-lgpl-2.1", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "qt-company-exception-2017-lgpl-2.1.json", + "yaml": "qt-company-exception-2017-lgpl-2.1.yml", + "html": "qt-company-exception-2017-lgpl-2.1.html", + "license": "qt-company-exception-2017-lgpl-2.1.LICENSE" + }, + { + "license_key": "qt-company-exception-lgpl-2.1", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-qt-company-exception-lgpl-2.1", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "qt-company-exception-lgpl-2.1.json", + "yaml": "qt-company-exception-lgpl-2.1.yml", + "html": "qt-company-exception-lgpl-2.1.html", + "license": "qt-company-exception-lgpl-2.1.LICENSE" + }, + { + "license_key": "qt-gpl-exception-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "Qt-GPL-exception-1.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "qt-gpl-exception-1.0.json", + "yaml": "qt-gpl-exception-1.0.yml", + "html": "qt-gpl-exception-1.0.html", + "license": "qt-gpl-exception-1.0.LICENSE" + }, + { + "license_key": "qt-kde-linking-exception", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-qt-kde-linking-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "qt-kde-linking-exception.json", + "yaml": "qt-kde-linking-exception.yml", + "html": "qt-kde-linking-exception.html", + "license": "qt-kde-linking-exception.LICENSE" + }, + { + "license_key": "qt-lgpl-exception-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "Qt-LGPL-exception-1.1", + "other_spdx_license_keys": [ + "Nokia-Qt-exception-1.1" + ], + "is_exception": true, + "is_deprecated": false, + "json": "qt-lgpl-exception-1.1.json", + "yaml": "qt-lgpl-exception-1.1.yml", + "html": "qt-lgpl-exception-1.1.html", + "license": "qt-lgpl-exception-1.1.LICENSE" + }, + { + "license_key": "qt-qca-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-qt-qca-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "qt-qca-exception-2.0.json", + "yaml": "qt-qca-exception-2.0.yml", + "html": "qt-qca-exception-2.0.html", + "license": "qt-qca-exception-2.0.LICENSE" + }, + { + "license_key": "qti-linux-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-qti-linux-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "qti-linux-firmware.json", + "yaml": "qti-linux-firmware.yml", + "html": "qti-linux-firmware.html", + "license": "qti-linux-firmware.LICENSE" + }, + { + "license_key": "qualcomm-iso", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-qualcomm-iso", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "qualcomm-iso.json", + "yaml": "qualcomm-iso.yml", + "html": "qualcomm-iso.html", + "license": "qualcomm-iso.LICENSE" + }, + { + "license_key": "qualcomm-turing", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-qualcomm-turing", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "qualcomm-turing.json", + "yaml": "qualcomm-turing.yml", + "html": "qualcomm-turing.html", + "license": "qualcomm-turing.LICENSE" + }, + { + "license_key": "quickfix-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-quickfix-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "quickfix-1.0.json", + "yaml": "quickfix-1.0.yml", + "html": "quickfix-1.0.html", + "license": "quickfix-1.0.LICENSE" + }, + { + "license_key": "quicktime", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-quicktime", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "quicktime.json", + "yaml": "quicktime.yml", + "html": "quicktime.html", + "license": "quicktime.LICENSE" + }, + { + "license_key": "quin-street", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-quin-street", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "quin-street.json", + "yaml": "quin-street.yml", + "html": "quin-street.html", + "license": "quin-street.LICENSE" + }, + { + "license_key": "quirksmode", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-quirksmode", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "quirksmode.json", + "yaml": "quirksmode.yml", + "html": "quirksmode.html", + "license": "quirksmode.LICENSE" + }, + { + "license_key": "qwt-1.0", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "qwt-1.0.json", + "yaml": "qwt-1.0.yml", + "html": "qwt-1.0.html", + "license": "qwt-1.0.LICENSE" + }, + { + "license_key": "qwt-exception-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "Qwt-exception-1.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "qwt-exception-1.0.json", + "yaml": "qwt-exception-1.0.yml", + "html": "qwt-exception-1.0.html", + "license": "qwt-exception-1.0.LICENSE" + }, + { + "license_key": "rackspace", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-rackspace", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rackspace.json", + "yaml": "rackspace.yml", + "html": "rackspace.html", + "license": "rackspace.LICENSE" + }, + { + "license_key": "radvd", + "category": "Permissive", + "spdx_license_key": "radvd", + "other_spdx_license_keys": [ + "LicenseRef-scancode-radvd" + ], + "is_exception": false, + "is_deprecated": false, + "json": "radvd.json", + "yaml": "radvd.yml", + "html": "radvd.html", + "license": "radvd.LICENSE" + }, + { + "license_key": "ralf-corsepius", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "ralf-corsepius.json", + "yaml": "ralf-corsepius.yml", + "html": "ralf-corsepius.html", + "license": "ralf-corsepius.LICENSE" + }, + { + "license_key": "ralink-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ralink-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ralink-firmware.json", + "yaml": "ralink-firmware.yml", + "html": "ralink-firmware.html", + "license": "ralink-firmware.LICENSE" + }, + { + "license_key": "rar-winrar-eula", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-rar-winrar-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rar-winrar-eula.json", + "yaml": "rar-winrar-eula.yml", + "html": "rar-winrar-eula.html", + "license": "rar-winrar-eula.LICENSE" + }, + { + "license_key": "rcsl-2.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-rcsl-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rcsl-2.0.json", + "yaml": "rcsl-2.0.yml", + "html": "rcsl-2.0.html", + "license": "rcsl-2.0.LICENSE" + }, + { + "license_key": "rcsl-3.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-rcsl-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rcsl-3.0.json", + "yaml": "rcsl-3.0.yml", + "html": "rcsl-3.0.html", + "license": "rcsl-3.0.LICENSE" + }, + { + "license_key": "rdisc", + "category": "Permissive", + "spdx_license_key": "Rdisc", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rdisc.json", + "yaml": "rdisc.yml", + "html": "rdisc.html", + "license": "rdisc.LICENSE" + }, + { + "license_key": "reading-godiva-2010", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-reading-godiva-2010", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "reading-godiva-2010.json", + "yaml": "reading-godiva-2010.yml", + "html": "reading-godiva-2010.html", + "license": "reading-godiva-2010.LICENSE" + }, + { + "license_key": "realm-platform-extension-2017", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-realm-platform-extension-2017", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "realm-platform-extension-2017.json", + "yaml": "realm-platform-extension-2017.yml", + "html": "realm-platform-extension-2017.html", + "license": "realm-platform-extension-2017.LICENSE" + }, + { + "license_key": "red-hat-attribution", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-red-hat-attribution", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "red-hat-attribution.json", + "yaml": "red-hat-attribution.yml", + "html": "red-hat-attribution.html", + "license": "red-hat-attribution.LICENSE" + }, + { + "license_key": "red-hat-bsd-simplified", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-red-hat-bsd-simplified", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "red-hat-bsd-simplified.json", + "yaml": "red-hat-bsd-simplified.yml", + "html": "red-hat-bsd-simplified.html", + "license": "red-hat-bsd-simplified.LICENSE" + }, + { + "license_key": "red-hat-logos", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-red-hat-logos", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "red-hat-logos.json", + "yaml": "red-hat-logos.yml", + "html": "red-hat-logos.html", + "license": "red-hat-logos.LICENSE" + }, + { + "license_key": "red-hat-trademarks", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-red-hat-trademarks", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "red-hat-trademarks.json", + "yaml": "red-hat-trademarks.yml", + "html": "red-hat-trademarks.html", + "license": "red-hat-trademarks.LICENSE" + }, + { + "license_key": "redis-source-available-1.0", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-redis-source-available-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "redis-source-available-1.0.json", + "yaml": "redis-source-available-1.0.yml", + "html": "redis-source-available-1.0.html", + "license": "redis-source-available-1.0.LICENSE" + }, + { + "license_key": "regexp", + "category": "Permissive", + "spdx_license_key": "Spencer-86", + "other_spdx_license_keys": [ + "LicenseRef-scancode-regexp" + ], + "is_exception": false, + "is_deprecated": false, + "json": "regexp.json", + "yaml": "regexp.yml", + "html": "regexp.html", + "license": "regexp.LICENSE" + }, + { + "license_key": "reportbug", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-reportbug", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "reportbug.json", + "yaml": "reportbug.yml", + "html": "reportbug.html", + "license": "reportbug.LICENSE" + }, + { + "license_key": "repoze", + "category": "Permissive", + "spdx_license_key": "BSD-3-Clause-Modification", + "other_spdx_license_keys": [ + "LicenseRef-scancode-repoze" + ], + "is_exception": false, + "is_deprecated": false, + "json": "repoze.json", + "yaml": "repoze.yml", + "html": "repoze.html", + "license": "repoze.LICENSE" + }, + { + "license_key": "research-disclaimer", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-research-disclaimer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "research-disclaimer.json", + "yaml": "research-disclaimer.yml", + "html": "research-disclaimer.html", + "license": "research-disclaimer.LICENSE" + }, + { + "license_key": "responsible-ai-source-1.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-responsible-ai-source-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "responsible-ai-source-1.0.json", + "yaml": "responsible-ai-source-1.0.yml", + "html": "responsible-ai-source-1.0.html", + "license": "responsible-ai-source-1.0.LICENSE" + }, + { + "license_key": "responsible-ai-source-1.1", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-responsible-ai-source-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "responsible-ai-source-1.1.json", + "yaml": "responsible-ai-source-1.1.yml", + "html": "responsible-ai-source-1.1.html", + "license": "responsible-ai-source-1.1.LICENSE" + }, + { + "license_key": "rh-eula", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-rh-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rh-eula.json", + "yaml": "rh-eula.yml", + "html": "rh-eula.html", + "license": "rh-eula.LICENSE" + }, + { + "license_key": "rh-eula-lgpl", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-rh-eula-lgpl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rh-eula-lgpl.json", + "yaml": "rh-eula-lgpl.yml", + "html": "rh-eula-lgpl.html", + "license": "rh-eula-lgpl.LICENSE" + }, + { + "license_key": "ricebsd", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ricebsd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ricebsd.json", + "yaml": "ricebsd.yml", + "html": "ricebsd.html", + "license": "ricebsd.LICENSE" + }, + { + "license_key": "richard-black", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-richard-black", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "richard-black.json", + "yaml": "richard-black.yml", + "html": "richard-black.html", + "license": "richard-black.LICENSE" + }, + { + "license_key": "ricoh-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "RSCPL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ricoh-1.0.json", + "yaml": "ricoh-1.0.yml", + "html": "ricoh-1.0.html", + "license": "ricoh-1.0.LICENSE" + }, + { + "license_key": "riverbank-sip", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-riverbank-sip", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "riverbank-sip.json", + "yaml": "riverbank-sip.yml", + "html": "riverbank-sip.html", + "license": "riverbank-sip.LICENSE" + }, + { + "license_key": "robert-hubley", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-robert-hubley", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "robert-hubley.json", + "yaml": "robert-hubley.yml", + "html": "robert-hubley.html", + "license": "robert-hubley.LICENSE" + }, + { + "license_key": "rockchip-proprietary-2022", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-rockchip-proprietary-2022", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rockchip-proprietary-2022.json", + "yaml": "rockchip-proprietary-2022.yml", + "html": "rockchip-proprietary-2022.html", + "license": "rockchip-proprietary-2022.LICENSE" + }, + { + "license_key": "rogue-wave", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-rogue-wave", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rogue-wave.json", + "yaml": "rogue-wave.yml", + "html": "rogue-wave.html", + "license": "rogue-wave.LICENSE" + }, + { + "license_key": "rpl-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "RPL-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rpl-1.1.json", + "yaml": "rpl-1.1.yml", + "html": "rpl-1.1.html", + "license": "rpl-1.1.LICENSE" + }, + { + "license_key": "rpl-1.5", + "category": "Copyleft Limited", + "spdx_license_key": "RPL-1.5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rpl-1.5.json", + "yaml": "rpl-1.5.yml", + "html": "rpl-1.5.html", + "license": "rpl-1.5.LICENSE" + }, + { + "license_key": "rpsl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "RPSL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rpsl-1.0.json", + "yaml": "rpsl-1.0.yml", + "html": "rpsl-1.0.html", + "license": "rpsl-1.0.LICENSE" + }, + { + "license_key": "rrdtool-floss-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-rrdtool-floss-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "rrdtool-floss-exception-2.0.json", + "yaml": "rrdtool-floss-exception-2.0.yml", + "html": "rrdtool-floss-exception-2.0.html", + "license": "rrdtool-floss-exception-2.0.LICENSE" + }, + { + "license_key": "rsa-1990", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-rsa-1990", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rsa-1990.json", + "yaml": "rsa-1990.yml", + "html": "rsa-1990.html", + "license": "rsa-1990.LICENSE" + }, + { + "license_key": "rsa-cryptoki", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-rsa-cryptoki", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rsa-cryptoki.json", + "yaml": "rsa-cryptoki.yml", + "html": "rsa-cryptoki.html", + "license": "rsa-cryptoki.LICENSE" + }, + { + "license_key": "rsa-demo", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-rsa-demo", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rsa-demo.json", + "yaml": "rsa-demo.yml", + "html": "rsa-demo.html", + "license": "rsa-demo.LICENSE" + }, + { + "license_key": "rsa-md2", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-rsa-md2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rsa-md2.json", + "yaml": "rsa-md2.yml", + "html": "rsa-md2.html", + "license": "rsa-md2.LICENSE" + }, + { + "license_key": "rsa-md4", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-rsa-md4", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rsa-md4.json", + "yaml": "rsa-md4.yml", + "html": "rsa-md4.html", + "license": "rsa-md4.LICENSE" + }, + { + "license_key": "rsa-md5", + "category": "Permissive", + "spdx_license_key": "RSA-MD", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rsa-md5.json", + "yaml": "rsa-md5.yml", + "html": "rsa-md5.html", + "license": "rsa-md5.LICENSE" + }, + { + "license_key": "rsa-proprietary", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-rsa-proprietary", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rsa-proprietary.json", + "yaml": "rsa-proprietary.yml", + "html": "rsa-proprietary.html", + "license": "rsa-proprietary.LICENSE" + }, + { + "license_key": "rsalv2", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-rsalv2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rsalv2.json", + "yaml": "rsalv2.yml", + "html": "rsalv2.html", + "license": "rsalv2.LICENSE" + }, + { + "license_key": "rtools-util", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-rtools-util", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rtools-util.json", + "yaml": "rtools-util.yml", + "html": "rtools-util.html", + "license": "rtools-util.LICENSE" + }, + { + "license_key": "ruby", + "category": "Copyleft Limited", + "spdx_license_key": "Ruby", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ruby.json", + "yaml": "ruby.yml", + "html": "ruby.html", + "license": "ruby.LICENSE" + }, + { + "license_key": "rubyencoder-commercial", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-rubyencoder-commercial", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rubyencoder-commercial.json", + "yaml": "rubyencoder-commercial.yml", + "html": "rubyencoder-commercial.html", + "license": "rubyencoder-commercial.LICENSE" + }, + { + "license_key": "rubyencoder-loader", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-rubyencoder-loader", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rubyencoder-loader.json", + "yaml": "rubyencoder-loader.yml", + "html": "rubyencoder-loader.html", + "license": "rubyencoder-loader.LICENSE" + }, + { + "license_key": "rute", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-rute", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rute.json", + "yaml": "rute.yml", + "html": "rute.html", + "license": "rute.LICENSE" + }, + { + "license_key": "rxtx-exception-lgpl-2.1", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-rxtx-exception-lgpl-2.1", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "rxtx-exception-lgpl-2.1.json", + "yaml": "rxtx-exception-lgpl-2.1.yml", + "html": "rxtx-exception-lgpl-2.1.html", + "license": "rxtx-exception-lgpl-2.1.LICENSE" + }, + { + "license_key": "ryszard-szopa", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ryszard-szopa", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ryszard-szopa.json", + "yaml": "ryszard-szopa.yml", + "html": "ryszard-szopa.html", + "license": "ryszard-szopa.LICENSE" + }, + { + "license_key": "saas-mit", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-saas-mit", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "saas-mit.json", + "yaml": "saas-mit.yml", + "html": "saas-mit.html", + "license": "saas-mit.LICENSE" + }, + { + "license_key": "saf", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-saf", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "saf.json", + "yaml": "saf.yml", + "html": "saf.html", + "license": "saf.LICENSE" + }, + { + "license_key": "safecopy-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-safecopy-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "safecopy-eula.json", + "yaml": "safecopy-eula.yml", + "html": "safecopy-eula.html", + "license": "safecopy-eula.LICENSE" + }, + { + "license_key": "san-francisco-font", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-san-francisco-font", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "san-francisco-font.json", + "yaml": "san-francisco-font.yml", + "html": "san-francisco-font.html", + "license": "san-francisco-font.LICENSE" + }, + { + "license_key": "sandeep", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sandeep", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sandeep.json", + "yaml": "sandeep.yml", + "html": "sandeep.html", + "license": "sandeep.LICENSE" + }, + { + "license_key": "sane-exception-2.0-plus", + "category": "Copyleft Limited", + "spdx_license_key": "SANE-exception", + "other_spdx_license_keys": [ + "LicenseRef-scancode-sane-exception-2.0-plus" + ], + "is_exception": true, + "is_deprecated": false, + "json": "sane-exception-2.0-plus.json", + "yaml": "sane-exception-2.0-plus.yml", + "html": "sane-exception-2.0-plus.html", + "license": "sane-exception-2.0-plus.LICENSE" + }, + { + "license_key": "sash", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-sash", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sash.json", + "yaml": "sash.yml", + "html": "sash.html", + "license": "sash.LICENSE" + }, + { + "license_key": "sata", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-sata", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sata.json", + "yaml": "sata.yml", + "html": "sata.html", + "license": "sata.LICENSE" + }, + { + "license_key": "sax-pd", + "category": "Public Domain", + "spdx_license_key": "SAX-PD", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sax-pd.json", + "yaml": "sax-pd.yml", + "html": "sax-pd.html", + "license": "sax-pd.LICENSE" + }, + { + "license_key": "sax-pd-2.0", + "category": "Public Domain", + "spdx_license_key": "SAX-PD-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sax-pd-2.0.json", + "yaml": "sax-pd-2.0.yml", + "html": "sax-pd-2.0.html", + "license": "sax-pd-2.0.LICENSE" + }, + { + "license_key": "saxix-mit", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-saxix-mit", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "saxix-mit.json", + "yaml": "saxix-mit.yml", + "html": "saxix-mit.html", + "license": "saxix-mit.LICENSE" + }, + { + "license_key": "saxpath", + "category": "Permissive", + "spdx_license_key": "Saxpath", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "saxpath.json", + "yaml": "saxpath.yml", + "html": "saxpath.html", + "license": "saxpath.LICENSE" + }, + { + "license_key": "sbia-b", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-sbia-b", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sbia-b.json", + "yaml": "sbia-b.yml", + "html": "sbia-b.html", + "license": "sbia-b.LICENSE" + }, + { + "license_key": "scancode-acknowledgment", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-scancode-acknowledgment", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "scancode-acknowledgment.json", + "yaml": "scancode-acknowledgment.yml", + "html": "scancode-acknowledgment.html", + "license": "scancode-acknowledgment.LICENSE" + }, + { + "license_key": "scanlogd-license", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-scanlogd-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "scanlogd-license.json", + "yaml": "scanlogd-license.yml", + "html": "scanlogd-license.html", + "license": "scanlogd-license.LICENSE" + }, + { + "license_key": "scansoft-1.2", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-scansoft-1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "scansoft-1.2.json", + "yaml": "scansoft-1.2.yml", + "html": "scansoft-1.2.html", + "license": "scansoft-1.2.LICENSE" + }, + { + "license_key": "scea-1.0", + "category": "Permissive", + "spdx_license_key": "SCEA", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "scea-1.0.json", + "yaml": "scea-1.0.yml", + "html": "scea-1.0.html", + "license": "scea-1.0.LICENSE" + }, + { + "license_key": "schemereport", + "category": "Permissive", + "spdx_license_key": "SchemeReport", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "schemereport.json", + "yaml": "schemereport.yml", + "html": "schemereport.html", + "license": "schemereport.LICENSE" + }, + { + "license_key": "scilab-en-2005", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-scilab-en", + "other_spdx_license_keys": [ + "LicenseRef-scancode-scilba-en" + ], + "is_exception": false, + "is_deprecated": false, + "json": "scilab-en-2005.json", + "yaml": "scilab-en-2005.yml", + "html": "scilab-en-2005.html", + "license": "scilab-en-2005.LICENSE" + }, + { + "license_key": "scilab-fr", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-scilab-fr", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "scilab-fr.json", + "yaml": "scilab-fr.yml", + "html": "scilab-fr.html", + "license": "scilab-fr.LICENSE" + }, + { + "license_key": "scintilla", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-scintilla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "scintilla.json", + "yaml": "scintilla.yml", + "html": "scintilla.html", + "license": "scintilla.LICENSE" + }, + { + "license_key": "scola-en", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-scola-en", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "scola-en.json", + "yaml": "scola-en.yml", + "html": "scola-en.html", + "license": "scola-en.LICENSE" + }, + { + "license_key": "scola-fr", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-scola-fr", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "scola-fr.json", + "yaml": "scola-fr.yml", + "html": "scola-fr.html", + "license": "scola-fr.LICENSE" + }, + { + "license_key": "scribbles", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-scribbles", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "scribbles.json", + "yaml": "scribbles.yml", + "html": "scribbles.html", + "license": "scribbles.LICENSE" + }, + { + "license_key": "script-asylum", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-script-asylum", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "script-asylum.json", + "yaml": "script-asylum.yml", + "html": "script-asylum.html", + "license": "script-asylum.LICENSE" + }, + { + "license_key": "script-nikhilk", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-script-nikhilk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "script-nikhilk.json", + "yaml": "script-nikhilk.yml", + "html": "script-nikhilk.html", + "license": "script-nikhilk.LICENSE" + }, + { + "license_key": "scrub", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-scrub", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "scrub.json", + "yaml": "scrub.yml", + "html": "scrub.html", + "license": "scrub.LICENSE" + }, + { + "license_key": "scsl-3.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-scsl-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "scsl-3.0.json", + "yaml": "scsl-3.0.yml", + "html": "scsl-3.0.html", + "license": "scsl-3.0.LICENSE" + }, + { + "license_key": "secret-labs-2011", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-secret-labs-2011", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "secret-labs-2011.json", + "yaml": "secret-labs-2011.yml", + "html": "secret-labs-2011.html", + "license": "secret-labs-2011.LICENSE" + }, + { + "license_key": "see-license", + "category": "Unstated License", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "see-license.json", + "yaml": "see-license.yml", + "html": "see-license.html", + "license": "see-license.LICENSE" + }, + { + "license_key": "selinux-nsa-declaration-1.0", + "category": "Public Domain", + "spdx_license_key": "libselinux-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "selinux-nsa-declaration-1.0.json", + "yaml": "selinux-nsa-declaration-1.0.yml", + "html": "selinux-nsa-declaration-1.0.html", + "license": "selinux-nsa-declaration-1.0.LICENSE" + }, + { + "license_key": "semgrep-registry", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-semgrep-registry", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "semgrep-registry.json", + "yaml": "semgrep-registry.yml", + "html": "semgrep-registry.html", + "license": "semgrep-registry.LICENSE" + }, + { + "license_key": "sencha-app-floss-exception", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-sencha-app-floss-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "sencha-app-floss-exception.json", + "yaml": "sencha-app-floss-exception.yml", + "html": "sencha-app-floss-exception.html", + "license": "sencha-app-floss-exception.LICENSE" + }, + { + "license_key": "sencha-commercial", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-sencha-commercial", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sencha-commercial.json", + "yaml": "sencha-commercial.yml", + "html": "sencha-commercial.html", + "license": "sencha-commercial.LICENSE" + }, + { + "license_key": "sencha-commercial-3.17", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-sencha-commercial-3.17", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sencha-commercial-3.17.json", + "yaml": "sencha-commercial-3.17.yml", + "html": "sencha-commercial-3.17.html", + "license": "sencha-commercial-3.17.LICENSE" + }, + { + "license_key": "sencha-commercial-3.9", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-sencha-commercial-3.9", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sencha-commercial-3.9.json", + "yaml": "sencha-commercial-3.9.yml", + "html": "sencha-commercial-3.9.html", + "license": "sencha-commercial-3.9.LICENSE" + }, + { + "license_key": "sencha-dev-floss-exception", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-sencha-dev-floss-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "sencha-dev-floss-exception.json", + "yaml": "sencha-dev-floss-exception.yml", + "html": "sencha-dev-floss-exception.html", + "license": "sencha-dev-floss-exception.LICENSE" + }, + { + "license_key": "sendmail", + "category": "Permissive", + "spdx_license_key": "Sendmail", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sendmail.json", + "yaml": "sendmail.yml", + "html": "sendmail.html", + "license": "sendmail.LICENSE" + }, + { + "license_key": "sendmail-8.23", + "category": "Copyleft Limited", + "spdx_license_key": "Sendmail-8.23", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sendmail-8.23.json", + "yaml": "sendmail-8.23.yml", + "html": "sendmail-8.23.html", + "license": "sendmail-8.23.LICENSE" + }, + { + "license_key": "service-comp-arch", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-service-comp-arch", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "service-comp-arch.json", + "yaml": "service-comp-arch.yml", + "html": "service-comp-arch.html", + "license": "service-comp-arch.LICENSE" + }, + { + "license_key": "sfl-license", + "category": "Permissive", + "spdx_license_key": "iMatix", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sfl-license.json", + "yaml": "sfl-license.yml", + "html": "sfl-license.html", + "license": "sfl-license.LICENSE" + }, + { + "license_key": "sgi-cid-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-sgi-cid-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sgi-cid-1.0.json", + "yaml": "sgi-cid-1.0.yml", + "html": "sgi-cid-1.0.html", + "license": "sgi-cid-1.0.LICENSE" + }, + { + "license_key": "sgi-freeb-1.1", + "category": "Permissive", + "spdx_license_key": "SGI-B-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sgi-freeb-1.1.json", + "yaml": "sgi-freeb-1.1.yml", + "html": "sgi-freeb-1.1.html", + "license": "sgi-freeb-1.1.LICENSE" + }, + { + "license_key": "sgi-freeb-2.0", + "category": "Permissive", + "spdx_license_key": "SGI-B-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sgi-freeb-2.0.json", + "yaml": "sgi-freeb-2.0.yml", + "html": "sgi-freeb-2.0.html", + "license": "sgi-freeb-2.0.LICENSE" + }, + { + "license_key": "sgi-fslb-1.0", + "category": "Free Restricted", + "spdx_license_key": "SGI-B-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sgi-fslb-1.0.json", + "yaml": "sgi-fslb-1.0.yml", + "html": "sgi-fslb-1.0.html", + "license": "sgi-fslb-1.0.LICENSE" + }, + { + "license_key": "sgi-glx-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-sgi-glx-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sgi-glx-1.0.json", + "yaml": "sgi-glx-1.0.yml", + "html": "sgi-glx-1.0.html", + "license": "sgi-glx-1.0.LICENSE" + }, + { + "license_key": "sglib", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-sglib", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sglib.json", + "yaml": "sglib.yml", + "html": "sglib.html", + "license": "sglib.LICENSE" + }, + { + "license_key": "sgp4", + "category": "Permissive", + "spdx_license_key": "SGP4", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sgp4.json", + "yaml": "sgp4.yml", + "html": "sgp4.html", + "license": "sgp4.LICENSE" + }, + { + "license_key": "sh-cla-1.1", + "category": "CLA", + "spdx_license_key": "LicenseRef-scancode-sh-cla-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sh-cla-1.1.json", + "yaml": "sh-cla-1.1.yml", + "html": "sh-cla-1.1.html", + "license": "sh-cla-1.1.LICENSE" + }, + { + "license_key": "shavlik-eula", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-shavlik-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "shavlik-eula.json", + "yaml": "shavlik-eula.yml", + "html": "shavlik-eula.html", + "license": "shavlik-eula.LICENSE" + }, + { + "license_key": "shital-shah", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-shital-shah", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "shital-shah.json", + "yaml": "shital-shah.yml", + "html": "shital-shah.html", + "license": "shital-shah.LICENSE" + }, + { + "license_key": "shl-0.5", + "category": "Permissive", + "spdx_license_key": "SHL-0.5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "shl-0.5.json", + "yaml": "shl-0.5.yml", + "html": "shl-0.5.html", + "license": "shl-0.5.LICENSE" + }, + { + "license_key": "shl-0.51", + "category": "Permissive", + "spdx_license_key": "SHL-0.51", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "shl-0.51.json", + "yaml": "shl-0.51.yml", + "html": "shl-0.51.html", + "license": "shl-0.51.LICENSE" + }, + { + "license_key": "shl-2.0", + "category": "Permissive", + "spdx_license_key": "SHL-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "shl-2.0.json", + "yaml": "shl-2.0.yml", + "html": "shl-2.0.html", + "license": "shl-2.0.LICENSE" + }, + { + "license_key": "shl-2.1", + "category": "Permissive", + "spdx_license_key": "SHL-2.1", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "shl-2.1.json", + "yaml": "shl-2.1.yml", + "html": "shl-2.1.html", + "license": "shl-2.1.LICENSE" + }, + { + "license_key": "signal-gpl-3.0-exception", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-signal-gpl-3.0-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "signal-gpl-3.0-exception.json", + "yaml": "signal-gpl-3.0-exception.yml", + "html": "signal-gpl-3.0-exception.html", + "license": "signal-gpl-3.0-exception.LICENSE" + }, + { + "license_key": "silicon-image-2007", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-silicon-image-2007", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "silicon-image-2007.json", + "yaml": "silicon-image-2007.yml", + "html": "silicon-image-2007.html", + "license": "silicon-image-2007.LICENSE" + }, + { + "license_key": "simpl-1.1", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-simpl-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "simpl-1.1.json", + "yaml": "simpl-1.1.yml", + "html": "simpl-1.1.html", + "license": "simpl-1.1.LICENSE" + }, + { + "license_key": "simpl-2.0", + "category": "Copyleft", + "spdx_license_key": "SimPL-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "simpl-2.0.json", + "yaml": "simpl-2.0.yml", + "html": "simpl-2.0.html", + "license": "simpl-2.0.LICENSE" + }, + { + "license_key": "six-labors-split-1.0", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-six-labors-split-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "six-labors-split-1.0.json", + "yaml": "six-labors-split-1.0.yml", + "html": "six-labors-split-1.0.html", + "license": "six-labors-split-1.0.LICENSE" + }, + { + "license_key": "skip-2014", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-skip-2014", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "skip-2014.json", + "yaml": "skip-2014.yml", + "html": "skip-2014.html", + "license": "skip-2014.LICENSE" + }, + { + "license_key": "sl", + "category": "Permissive", + "spdx_license_key": "SL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sl.json", + "yaml": "sl.yml", + "html": "sl.html", + "license": "sl.LICENSE" + }, + { + "license_key": "sleepycat", + "category": "Copyleft", + "spdx_license_key": "Sleepycat", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sleepycat.json", + "yaml": "sleepycat.yml", + "html": "sleepycat.html", + "license": "sleepycat.LICENSE" + }, + { + "license_key": "slf4j-2005", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "slf4j-2005.json", + "yaml": "slf4j-2005.yml", + "html": "slf4j-2005.html", + "license": "slf4j-2005.LICENSE" + }, + { + "license_key": "slf4j-2008", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "slf4j-2008.json", + "yaml": "slf4j-2008.yml", + "html": "slf4j-2008.html", + "license": "slf4j-2008.LICENSE" + }, + { + "license_key": "slint-commercial-2.0", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-slint-commercial-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "slint-commercial-2.0.json", + "yaml": "slint-commercial-2.0.yml", + "html": "slint-commercial-2.0.html", + "license": "slint-commercial-2.0.LICENSE" + }, + { + "license_key": "slint-royalty-free-1.0", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-slint-royalty-free-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "slint-royalty-free-1.0.json", + "yaml": "slint-royalty-free-1.0.yml", + "html": "slint-royalty-free-1.0.html", + "license": "slint-royalty-free-1.0.LICENSE" + }, + { + "license_key": "slysoft-eula", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-slysoft-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "slysoft-eula.json", + "yaml": "slysoft-eula.yml", + "html": "slysoft-eula.html", + "license": "slysoft-eula.LICENSE" + }, + { + "license_key": "smail-gpl", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-smail-gpl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "smail-gpl.json", + "yaml": "smail-gpl.yml", + "html": "smail-gpl.html", + "license": "smail-gpl.LICENSE" + }, + { + "license_key": "smartlabs-freeware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-smartlabs-freeware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "smartlabs-freeware.json", + "yaml": "smartlabs-freeware.yml", + "html": "smartlabs-freeware.html", + "license": "smartlabs-freeware.LICENSE" + }, + { + "license_key": "smppl", + "category": "Copyleft Limited", + "spdx_license_key": "SMPPL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "smppl.json", + "yaml": "smppl.yml", + "html": "smppl.html", + "license": "smppl.LICENSE" + }, + { + "license_key": "smsc-non-commercial-2012", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-smsc-non-commercial-2012", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "smsc-non-commercial-2012.json", + "yaml": "smsc-non-commercial-2012.yml", + "html": "smsc-non-commercial-2012.html", + "license": "smsc-non-commercial-2012.LICENSE" + }, + { + "license_key": "snapeda-design-exception-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-snapeda-design-exception-1.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "snapeda-design-exception-1.0.json", + "yaml": "snapeda-design-exception-1.0.yml", + "html": "snapeda-design-exception-1.0.html", + "license": "snapeda-design-exception-1.0.LICENSE" + }, + { + "license_key": "snia", + "category": "Copyleft", + "spdx_license_key": "SNIA", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "snia.json", + "yaml": "snia.yml", + "html": "snia.html", + "license": "snia.LICENSE" + }, + { + "license_key": "snmp4j-smi", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-snmp4j-smi", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "snmp4j-smi.json", + "yaml": "snmp4j-smi.yml", + "html": "snmp4j-smi.html", + "license": "snmp4j-smi.LICENSE" + }, + { + "license_key": "snprintf", + "category": "Permissive", + "spdx_license_key": "snprintf", + "other_spdx_license_keys": [ + "LicenseRef-scancode-snprintf" + ], + "is_exception": false, + "is_deprecated": false, + "json": "snprintf.json", + "yaml": "snprintf.yml", + "html": "snprintf.html", + "license": "snprintf.LICENSE" + }, + { + "license_key": "softerra-ldap-browser-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-softerra-ldap-browser-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "softerra-ldap-browser-eula.json", + "yaml": "softerra-ldap-browser-eula.yml", + "html": "softerra-ldap-browser-eula.html", + "license": "softerra-ldap-browser-eula.LICENSE" + }, + { + "license_key": "softfloat", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-softfloat", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "softfloat.json", + "yaml": "softfloat.yml", + "html": "softfloat.html", + "license": "softfloat.LICENSE" + }, + { + "license_key": "softfloat-2.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-softfloat-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "softfloat-2.0.json", + "yaml": "softfloat-2.0.yml", + "html": "softfloat-2.0.html", + "license": "softfloat-2.0.LICENSE" + }, + { + "license_key": "softfloat-2c", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-softfloat-2c", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "softfloat-2c.json", + "yaml": "softfloat-2c.yml", + "html": "softfloat-2c.html", + "license": "softfloat-2c.LICENSE" + }, + { + "license_key": "softsurfer", + "category": "Permissive", + "spdx_license_key": "softSurfer", + "other_spdx_license_keys": [ + "LicenseRef-scancode-softsurfer" + ], + "is_exception": false, + "is_deprecated": false, + "json": "softsurfer.json", + "yaml": "softsurfer.yml", + "html": "softsurfer.html", + "license": "softsurfer.LICENSE" + }, + { + "license_key": "solace-software-eula-2020", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-solace-software-eula-2020", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "solace-software-eula-2020.json", + "yaml": "solace-software-eula-2020.yml", + "html": "solace-software-eula-2020.html", + "license": "solace-software-eula-2020.LICENSE" + }, + { + "license_key": "soundex", + "category": "Permissive", + "spdx_license_key": "Soundex", + "other_spdx_license_keys": [ + "LicenseRef-scancode-soundex" + ], + "is_exception": false, + "is_deprecated": false, + "json": "soundex.json", + "yaml": "soundex.yml", + "html": "soundex.html", + "license": "soundex.LICENSE" + }, + { + "license_key": "sourcegraph-enterprise-2018", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-sourcegraph-enterprise-2018", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sourcegraph-enterprise-2018.json", + "yaml": "sourcegraph-enterprise-2018.yml", + "html": "sourcegraph-enterprise-2018.html", + "license": "sourcegraph-enterprise-2018.LICENSE" + }, + { + "license_key": "spark-jive", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-spark-jive", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "spark-jive.json", + "yaml": "spark-jive.yml", + "html": "spark-jive.html", + "license": "spark-jive.LICENSE" + }, + { + "license_key": "sparky", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-sparky", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sparky.json", + "yaml": "sparky.yml", + "html": "sparky.html", + "license": "sparky.LICENSE" + }, + { + "license_key": "speechworks-1.1", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-speechworks-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "speechworks-1.1.json", + "yaml": "speechworks-1.1.yml", + "html": "speechworks-1.1.html", + "license": "speechworks-1.1.LICENSE" + }, + { + "license_key": "spell-checker-exception-lgpl-2.1-plus", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-spell-exception-lgpl-2.1-plus", + "other_spdx_license_keys": [ + "LicenseRef-scancode-spell-checker-exception-lgpl-2.1-plus" + ], + "is_exception": true, + "is_deprecated": false, + "json": "spell-checker-exception-lgpl-2.1-plus.json", + "yaml": "spell-checker-exception-lgpl-2.1-plus.yml", + "html": "spell-checker-exception-lgpl-2.1-plus.html", + "license": "spell-checker-exception-lgpl-2.1-plus.LICENSE" + }, + { + "license_key": "spl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "SPL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "spl-1.0.json", + "yaml": "spl-1.0.yml", + "html": "spl-1.0.html", + "license": "spl-1.0.LICENSE" + }, + { + "license_key": "splunk-3pp-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-splunk-3pp-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "splunk-3pp-eula.json", + "yaml": "splunk-3pp-eula.yml", + "html": "splunk-3pp-eula.html", + "license": "splunk-3pp-eula.LICENSE" + }, + { + "license_key": "splunk-mint-tos-2018", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-splunk-mint-tos-2018", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "splunk-mint-tos-2018.json", + "yaml": "splunk-mint-tos-2018.yml", + "html": "splunk-mint-tos-2018.html", + "license": "splunk-mint-tos-2018.LICENSE" + }, + { + "license_key": "splunk-sla", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-splunk-sla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "splunk-sla.json", + "yaml": "splunk-sla.yml", + "html": "splunk-sla.html", + "license": "splunk-sla.LICENSE" + }, + { + "license_key": "square-cla", + "category": "CLA", + "spdx_license_key": "LicenseRef-scancode-square-cla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "square-cla.json", + "yaml": "square-cla.yml", + "html": "square-cla.html", + "license": "square-cla.LICENSE" + }, + { + "license_key": "squeak", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-squeak", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "squeak.json", + "yaml": "squeak.yml", + "html": "squeak.html", + "license": "squeak.LICENSE" + }, + { + "license_key": "srgb", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-srgb", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "srgb.json", + "yaml": "srgb.yml", + "html": "srgb.html", + "license": "srgb.LICENSE" + }, + { + "license_key": "ssh-keyscan", + "category": "Permissive", + "spdx_license_key": "ssh-keyscan", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ssh-keyscan.json", + "yaml": "ssh-keyscan.yml", + "html": "ssh-keyscan.html", + "license": "ssh-keyscan.LICENSE" + }, + { + "license_key": "ssleay", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ssleay", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ssleay.json", + "yaml": "ssleay.yml", + "html": "ssleay.html", + "license": "ssleay.LICENSE" + }, + { + "license_key": "ssleay-windows", + "category": "Permissive", + "spdx_license_key": "SSLeay-standalone", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ssleay-windows" + ], + "is_exception": false, + "is_deprecated": false, + "json": "ssleay-windows.json", + "yaml": "ssleay-windows.yml", + "html": "ssleay-windows.html", + "license": "ssleay-windows.LICENSE" + }, + { + "license_key": "st-bsd-restricted", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-st-bsd-restricted", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "st-bsd-restricted.json", + "yaml": "st-bsd-restricted.yml", + "html": "st-bsd-restricted.html", + "license": "st-bsd-restricted.LICENSE" + }, + { + "license_key": "st-mcd-2.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-st-mcd-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "st-mcd-2.0.json", + "yaml": "st-mcd-2.0.yml", + "html": "st-mcd-2.0.html", + "license": "st-mcd-2.0.LICENSE" + }, + { + "license_key": "stable-diffusion-2022-08-22", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-stable-diffusion-2022-08-22", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "stable-diffusion-2022-08-22.json", + "yaml": "stable-diffusion-2022-08-22.yml", + "html": "stable-diffusion-2022-08-22.html", + "license": "stable-diffusion-2022-08-22.LICENSE" + }, + { + "license_key": "standard-ml-nj", + "category": "Permissive", + "spdx_license_key": "SMLNJ", + "other_spdx_license_keys": [ + "StandardML-NJ" + ], + "is_exception": false, + "is_deprecated": false, + "json": "standard-ml-nj.json", + "yaml": "standard-ml-nj.yml", + "html": "standard-ml-nj.html", + "license": "standard-ml-nj.LICENSE" + }, + { + "license_key": "stanford-mrouted", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-stanford-mrouted", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "stanford-mrouted.json", + "yaml": "stanford-mrouted.yml", + "html": "stanford-mrouted.html", + "license": "stanford-mrouted.LICENSE" + }, + { + "license_key": "stanford-pvrg", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-stanford-pvrg", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "stanford-pvrg.json", + "yaml": "stanford-pvrg.yml", + "html": "stanford-pvrg.html", + "license": "stanford-pvrg.LICENSE" + }, + { + "license_key": "statewizard", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-statewizard", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "statewizard.json", + "yaml": "statewizard.yml", + "html": "statewizard.html", + "license": "statewizard.LICENSE" + }, + { + "license_key": "stax", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-stax", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "stax.json", + "yaml": "stax.yml", + "html": "stax.html", + "license": "stax.LICENSE" + }, + { + "license_key": "stlport-2000", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-stlport-2000", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "stlport-2000.json", + "yaml": "stlport-2000.yml", + "html": "stlport-2000.html", + "license": "stlport-2000.LICENSE" + }, + { + "license_key": "stlport-4.5", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-stlport-4.5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "stlport-4.5.json", + "yaml": "stlport-4.5.yml", + "html": "stlport-4.5.html", + "license": "stlport-4.5.LICENSE" + }, + { + "license_key": "stmicroelectronics-centrallabs", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-stmicroelectronics-centrallabs", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "stmicroelectronics-centrallabs.json", + "yaml": "stmicroelectronics-centrallabs.yml", + "html": "stmicroelectronics-centrallabs.html", + "license": "stmicroelectronics-centrallabs.LICENSE" + }, + { + "license_key": "stmicroelectronics-linux-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-stmicro-linux-firmware", + "other_spdx_license_keys": [ + "LicenseRef-scancode-stmicroelectronics-linux-firmware" + ], + "is_exception": false, + "is_deprecated": false, + "json": "stmicroelectronics-linux-firmware.json", + "yaml": "stmicroelectronics-linux-firmware.yml", + "html": "stmicroelectronics-linux-firmware.html", + "license": "stmicroelectronics-linux-firmware.LICENSE" + }, + { + "license_key": "stream-benchmark", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-stream-benchmark", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "stream-benchmark.json", + "yaml": "stream-benchmark.yml", + "html": "stream-benchmark.html", + "license": "stream-benchmark.LICENSE" + }, + { + "license_key": "strongswan-exception", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-strongswan-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "strongswan-exception.json", + "yaml": "strongswan-exception.yml", + "html": "strongswan-exception.html", + "license": "strongswan-exception.LICENSE" + }, + { + "license_key": "stu-nicholls", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-stu-nicholls", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "stu-nicholls.json", + "yaml": "stu-nicholls.yml", + "html": "stu-nicholls.html", + "license": "stu-nicholls.LICENSE" + }, + { + "license_key": "stunnel-exception", + "category": "Copyleft Limited", + "spdx_license_key": "stunnel-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "stunnel-exception.json", + "yaml": "stunnel-exception.yml", + "html": "stunnel-exception.html", + "license": "stunnel-exception.LICENSE" + }, + { + "license_key": "subcommander-exception-2.0-plus", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-subcommander-exception-2.0plus", + "other_spdx_license_keys": [ + "LicenseRef-scancode-subcommander-exception-2.0-plus" + ], + "is_exception": true, + "is_deprecated": false, + "json": "subcommander-exception-2.0-plus.json", + "yaml": "subcommander-exception-2.0-plus.yml", + "html": "subcommander-exception-2.0-plus.html", + "license": "subcommander-exception-2.0-plus.LICENSE" + }, + { + "license_key": "sugarcrm-1.1.3", + "category": "Copyleft", + "spdx_license_key": "SugarCRM-1.1.3", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sugarcrm-1.1.3.json", + "yaml": "sugarcrm-1.1.3.yml", + "html": "sugarcrm-1.1.3.html", + "license": "sugarcrm-1.1.3.LICENSE" + }, + { + "license_key": "sun-bcl-11-06", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-11-06", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-bcl-11-06.json", + "yaml": "sun-bcl-11-06.yml", + "html": "sun-bcl-11-06.html", + "license": "sun-bcl-11-06.LICENSE" + }, + { + "license_key": "sun-bcl-11-07", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-11-07", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-bcl-11-07.json", + "yaml": "sun-bcl-11-07.yml", + "html": "sun-bcl-11-07.html", + "license": "sun-bcl-11-07.LICENSE" + }, + { + "license_key": "sun-bcl-11-08", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-11-08", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-bcl-11-08.json", + "yaml": "sun-bcl-11-08.yml", + "html": "sun-bcl-11-08.html", + "license": "sun-bcl-11-08.LICENSE" + }, + { + "license_key": "sun-bcl-j2re-1.2.x", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-j2re-1.2.x", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-bcl-j2re-1.2.x.json", + "yaml": "sun-bcl-j2re-1.2.x.yml", + "html": "sun-bcl-j2re-1.2.x.html", + "license": "sun-bcl-j2re-1.2.x.LICENSE" + }, + { + "license_key": "sun-bcl-j2re-1.4.2", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-j2re-1.4.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-bcl-j2re-1.4.2.json", + "yaml": "sun-bcl-j2re-1.4.2.yml", + "html": "sun-bcl-j2re-1.4.2.html", + "license": "sun-bcl-j2re-1.4.2.LICENSE" + }, + { + "license_key": "sun-bcl-j2re-1.4.x", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-j2re-1.4.x", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-bcl-j2re-1.4.x.json", + "yaml": "sun-bcl-j2re-1.4.x.yml", + "html": "sun-bcl-j2re-1.4.x.html", + "license": "sun-bcl-j2re-1.4.x.LICENSE" + }, + { + "license_key": "sun-bcl-j2re-5.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-j2re-5.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-bcl-j2re-5.0.json", + "yaml": "sun-bcl-j2re-5.0.yml", + "html": "sun-bcl-j2re-5.0.html", + "license": "sun-bcl-j2re-5.0.LICENSE" + }, + { + "license_key": "sun-bcl-java-servlet-imp-2.1.1", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-java-servlet-imp-2.1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-bcl-java-servlet-imp-2.1.1.json", + "yaml": "sun-bcl-java-servlet-imp-2.1.1.yml", + "html": "sun-bcl-java-servlet-imp-2.1.1.html", + "license": "sun-bcl-java-servlet-imp-2.1.1.LICENSE" + }, + { + "license_key": "sun-bcl-javahelp", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-javahelp", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-bcl-javahelp.json", + "yaml": "sun-bcl-javahelp.yml", + "html": "sun-bcl-javahelp.html", + "license": "sun-bcl-javahelp.LICENSE" + }, + { + "license_key": "sun-bcl-jimi-sdk", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-jimi-sdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-bcl-jimi-sdk.json", + "yaml": "sun-bcl-jimi-sdk.yml", + "html": "sun-bcl-jimi-sdk.html", + "license": "sun-bcl-jimi-sdk.LICENSE" + }, + { + "license_key": "sun-bcl-jre6", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-jre6", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-bcl-jre6.json", + "yaml": "sun-bcl-jre6.yml", + "html": "sun-bcl-jre6.html", + "license": "sun-bcl-jre6.LICENSE" + }, + { + "license_key": "sun-bcl-jsmq", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-jsmq", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-bcl-jsmq.json", + "yaml": "sun-bcl-jsmq.yml", + "html": "sun-bcl-jsmq.html", + "license": "sun-bcl-jsmq.LICENSE" + }, + { + "license_key": "sun-bcl-opendmk", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-opendmk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-bcl-opendmk.json", + "yaml": "sun-bcl-opendmk.yml", + "html": "sun-bcl-opendmk.html", + "license": "sun-bcl-opendmk.LICENSE" + }, + { + "license_key": "sun-bcl-openjdk", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-openjdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-bcl-openjdk.json", + "yaml": "sun-bcl-openjdk.yml", + "html": "sun-bcl-openjdk.html", + "license": "sun-bcl-openjdk.LICENSE" + }, + { + "license_key": "sun-bcl-sdk-1.3", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-sdk-1.3", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-bcl-sdk-1.3.json", + "yaml": "sun-bcl-sdk-1.3.yml", + "html": "sun-bcl-sdk-1.3.html", + "license": "sun-bcl-sdk-1.3.LICENSE" + }, + { + "license_key": "sun-bcl-sdk-1.4.2", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-sdk-1.4.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-bcl-sdk-1.4.2.json", + "yaml": "sun-bcl-sdk-1.4.2.yml", + "html": "sun-bcl-sdk-1.4.2.html", + "license": "sun-bcl-sdk-1.4.2.LICENSE" + }, + { + "license_key": "sun-bcl-sdk-5.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-sdk-5.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-bcl-sdk-5.0.json", + "yaml": "sun-bcl-sdk-5.0.yml", + "html": "sun-bcl-sdk-5.0.html", + "license": "sun-bcl-sdk-5.0.LICENSE" + }, + { + "license_key": "sun-bcl-sdk-6.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-sdk-6.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-bcl-sdk-6.0.json", + "yaml": "sun-bcl-sdk-6.0.yml", + "html": "sun-bcl-sdk-6.0.html", + "license": "sun-bcl-sdk-6.0.LICENSE" + }, + { + "license_key": "sun-bcl-web-start", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-web-start", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-bcl-web-start.json", + "yaml": "sun-bcl-web-start.yml", + "html": "sun-bcl-web-start.html", + "license": "sun-bcl-web-start.LICENSE" + }, + { + "license_key": "sun-bsd-extra", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-sun-bsd-extra", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-bsd-extra.json", + "yaml": "sun-bsd-extra.yml", + "html": "sun-bsd-extra.html", + "license": "sun-bsd-extra.LICENSE" + }, + { + "license_key": "sun-bsd-no-nuclear", + "category": "Free Restricted", + "spdx_license_key": "BSD-3-Clause-No-Nuclear-License", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-bsd-no-nuclear.json", + "yaml": "sun-bsd-no-nuclear.yml", + "html": "sun-bsd-no-nuclear.html", + "license": "sun-bsd-no-nuclear.LICENSE" + }, + { + "license_key": "sun-cc-pp-1.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-cc-pp-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-cc-pp-1.0.json", + "yaml": "sun-cc-pp-1.0.yml", + "html": "sun-cc-pp-1.0.html", + "license": "sun-cc-pp-1.0.LICENSE" + }, + { + "license_key": "sun-communications-api", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-communications-api", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-communications-api.json", + "yaml": "sun-communications-api.yml", + "html": "sun-communications-api.html", + "license": "sun-communications-api.LICENSE" + }, + { + "license_key": "sun-ejb-spec-2.1", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-ejb-spec-2.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-ejb-spec-2.1.json", + "yaml": "sun-ejb-spec-2.1.yml", + "html": "sun-ejb-spec-2.1.html", + "license": "sun-ejb-spec-2.1.LICENSE" + }, + { + "license_key": "sun-ejb-spec-3.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-ejb-spec-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-ejb-spec-3.0.json", + "yaml": "sun-ejb-spec-3.0.yml", + "html": "sun-ejb-spec-3.0.html", + "license": "sun-ejb-spec-3.0.LICENSE" + }, + { + "license_key": "sun-entitlement-03-15", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-entitlement-03-15", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-entitlement-03-15.json", + "yaml": "sun-entitlement-03-15.yml", + "html": "sun-entitlement-03-15.html", + "license": "sun-entitlement-03-15.LICENSE" + }, + { + "license_key": "sun-entitlement-jaf", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-entitlement-jaf", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-entitlement-jaf.json", + "yaml": "sun-entitlement-jaf.yml", + "html": "sun-entitlement-jaf.html", + "license": "sun-entitlement-jaf.LICENSE" + }, + { + "license_key": "sun-glassfish", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-glassfish", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-glassfish.json", + "yaml": "sun-glassfish.yml", + "html": "sun-glassfish.html", + "license": "sun-glassfish.LICENSE" + }, + { + "license_key": "sun-iiop", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-iiop", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-iiop.json", + "yaml": "sun-iiop.yml", + "html": "sun-iiop.html", + "license": "sun-iiop.LICENSE" + }, + { + "license_key": "sun-java-transaction-api", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-java-transaction-api", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-java-transaction-api.json", + "yaml": "sun-java-transaction-api.yml", + "html": "sun-java-transaction-api.html", + "license": "sun-java-transaction-api.LICENSE" + }, + { + "license_key": "sun-java-web-services-dev-pack-1.6", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-java-web-services-dev-1.6", + "other_spdx_license_keys": [ + "LicenseRef-scancode-sun-java-web-services-dev-pack-1.6" + ], + "is_exception": false, + "is_deprecated": false, + "json": "sun-java-web-services-dev-pack-1.6.json", + "yaml": "sun-java-web-services-dev-pack-1.6.yml", + "html": "sun-java-web-services-dev-pack-1.6.html", + "license": "sun-java-web-services-dev-pack-1.6.LICENSE" + }, + { + "license_key": "sun-javamail", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-javamail", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-javamail.json", + "yaml": "sun-javamail.yml", + "html": "sun-javamail.html", + "license": "sun-javamail.LICENSE" + }, + { + "license_key": "sun-jsr-spec-04-2006", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-jsr-spec-04-2006", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-jsr-spec-04-2006.json", + "yaml": "sun-jsr-spec-04-2006.yml", + "html": "sun-jsr-spec-04-2006.html", + "license": "sun-jsr-spec-04-2006.LICENSE" + }, + { + "license_key": "sun-jta-spec-1.0.1", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-jta-spec-1.0.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-jta-spec-1.0.1.json", + "yaml": "sun-jta-spec-1.0.1.yml", + "html": "sun-jta-spec-1.0.1.html", + "license": "sun-jta-spec-1.0.1.LICENSE" + }, + { + "license_key": "sun-jta-spec-1.0.1b", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-jta-spec-1.0.1b", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-jta-spec-1.0.1b.json", + "yaml": "sun-jta-spec-1.0.1b.yml", + "html": "sun-jta-spec-1.0.1b.html", + "license": "sun-jta-spec-1.0.1b.LICENSE" + }, + { + "license_key": "sun-no-high-risk-activities", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-sun-no-high-risk-activities", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-no-high-risk-activities.json", + "yaml": "sun-no-high-risk-activities.yml", + "html": "sun-no-high-risk-activities.html", + "license": "sun-no-high-risk-activities.LICENSE" + }, + { + "license_key": "sun-ppp", + "category": "Permissive", + "spdx_license_key": "Sun-PPP", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-ppp.json", + "yaml": "sun-ppp.yml", + "html": "sun-ppp.html", + "license": "sun-ppp.LICENSE" + }, + { + "license_key": "sun-project-x", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-project-x", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-project-x.json", + "yaml": "sun-project-x.yml", + "html": "sun-project-x.html", + "license": "sun-project-x.LICENSE" + }, + { + "license_key": "sun-prop-non-commercial", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-prop-non-commercial", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-prop-non-commercial.json", + "yaml": "sun-prop-non-commercial.yml", + "html": "sun-prop-non-commercial.html", + "license": "sun-prop-non-commercial.LICENSE" + }, + { + "license_key": "sun-proprietary-jdk", + "category": "Commercial", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "sun-proprietary-jdk.json", + "yaml": "sun-proprietary-jdk.yml", + "html": "sun-proprietary-jdk.html", + "license": "sun-proprietary-jdk.LICENSE" + }, + { + "license_key": "sun-rpc", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-sun-rpc", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-rpc.json", + "yaml": "sun-rpc.yml", + "html": "sun-rpc.html", + "license": "sun-rpc.LICENSE" + }, + { + "license_key": "sun-sdk-spec-1.1", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-sdk-spec-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-sdk-spec-1.1.json", + "yaml": "sun-sdk-spec-1.1.yml", + "html": "sun-sdk-spec-1.1.html", + "license": "sun-sdk-spec-1.1.LICENSE" + }, + { + "license_key": "sun-sissl-1.0", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-sun-sissl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-sissl-1.0.json", + "yaml": "sun-sissl-1.0.yml", + "html": "sun-sissl-1.0.html", + "license": "sun-sissl-1.0.LICENSE" + }, + { + "license_key": "sun-sissl-1.1", + "category": "Proprietary Free", + "spdx_license_key": "SISSL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-sissl-1.1.json", + "yaml": "sun-sissl-1.1.yml", + "html": "sun-sissl-1.1.html", + "license": "sun-sissl-1.1.LICENSE" + }, + { + "license_key": "sun-sissl-1.2", + "category": "Proprietary Free", + "spdx_license_key": "SISSL-1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-sissl-1.2.json", + "yaml": "sun-sissl-1.2.yml", + "html": "sun-sissl-1.2.html", + "license": "sun-sissl-1.2.LICENSE" + }, + { + "license_key": "sun-source", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-sun-source", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-source.json", + "yaml": "sun-source.yml", + "html": "sun-source.html", + "license": "sun-source.LICENSE" + }, + { + "license_key": "sun-ssscfr-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-sun-ssscfr-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-ssscfr-1.1.json", + "yaml": "sun-ssscfr-1.1.yml", + "html": "sun-ssscfr-1.1.html", + "license": "sun-ssscfr-1.1.LICENSE" + }, + { + "license_key": "sunpro", + "category": "Permissive", + "spdx_license_key": "SunPro", + "other_spdx_license_keys": [ + "LicenseRef-scancode-sunpro" + ], + "is_exception": false, + "is_deprecated": false, + "json": "sunpro.json", + "yaml": "sunpro.yml", + "html": "sunpro.html", + "license": "sunpro.LICENSE" + }, + { + "license_key": "sunsoft", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-sunsoft", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sunsoft.json", + "yaml": "sunsoft.yml", + "html": "sunsoft.html", + "license": "sunsoft.LICENSE" + }, + { + "license_key": "supervisor", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-supervisor", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "supervisor.json", + "yaml": "supervisor.yml", + "html": "supervisor.html", + "license": "supervisor.LICENSE" + }, + { + "license_key": "sustainable-use-1.0", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-sustainable-use-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sustainable-use-1.0.json", + "yaml": "sustainable-use-1.0.yml", + "html": "sustainable-use-1.0.html", + "license": "sustainable-use-1.0.LICENSE" + }, + { + "license_key": "svndiff", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-svndiff", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "svndiff.json", + "yaml": "svndiff.yml", + "html": "svndiff.html", + "license": "svndiff.LICENSE" + }, + { + "license_key": "swi-exception", + "category": "Copyleft Limited", + "spdx_license_key": "SWI-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "swi-exception.json", + "yaml": "swi-exception.yml", + "html": "swi-exception.html", + "license": "swi-exception.LICENSE" + }, + { + "license_key": "swig", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-swig", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "swig.json", + "yaml": "swig.yml", + "html": "swig.html", + "license": "swig.LICENSE" + }, + { + "license_key": "swl", + "category": "Permissive", + "spdx_license_key": "SWL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "swl.json", + "yaml": "swl.yml", + "html": "swl.html", + "license": "swl.LICENSE" + }, + { + "license_key": "swrule", + "category": "Permissive", + "spdx_license_key": "swrule", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "swrule.json", + "yaml": "swrule.yml", + "html": "swrule.html", + "license": "swrule.LICENSE" + }, + { + "license_key": "sybase", + "category": "Proprietary Free", + "spdx_license_key": "Watcom-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sybase.json", + "yaml": "sybase.yml", + "html": "sybase.html", + "license": "sybase.LICENSE" + }, + { + "license_key": "symlinks", + "category": "Public Domain", + "spdx_license_key": "Symlinks", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "symlinks.json", + "yaml": "symlinks.yml", + "html": "symlinks.html", + "license": "symlinks.LICENSE" + }, + { + "license_key": "symphonysoft", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-symphonysoft", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "symphonysoft.json", + "yaml": "symphonysoft.yml", + "html": "symphonysoft.html", + "license": "symphonysoft.LICENSE" + }, + { + "license_key": "synopsys-attribution", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-synopsys-attribution", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "synopsys-attribution.json", + "yaml": "synopsys-attribution.yml", + "html": "synopsys-attribution.html", + "license": "synopsys-attribution.LICENSE" + }, + { + "license_key": "synopsys-mit", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-synopsys-mit", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "synopsys-mit.json", + "yaml": "synopsys-mit.yml", + "html": "synopsys-mit.html", + "license": "synopsys-mit.LICENSE" + }, + { + "license_key": "syntext-serna-exception-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-syntext-serna-exception-1.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "syntext-serna-exception-1.0.json", + "yaml": "syntext-serna-exception-1.0.yml", + "html": "syntext-serna-exception-1.0.html", + "license": "syntext-serna-exception-1.0.LICENSE" + }, + { + "license_key": "synthesis-toolkit", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-synthesis-toolkit", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "synthesis-toolkit.json", + "yaml": "synthesis-toolkit.yml", + "html": "synthesis-toolkit.html", + "license": "synthesis-toolkit.LICENSE" + }, + { + "license_key": "t-engine-public", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-t-engine-public", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "t-engine-public.json", + "yaml": "t-engine-public.yml", + "html": "t-engine-public.html", + "license": "t-engine-public.LICENSE" + }, + { + "license_key": "t-license-1.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-t-license-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "t-license-1.0.json", + "yaml": "t-license-1.0.yml", + "html": "t-license-1.0.html", + "license": "t-license-1.0.LICENSE" + }, + { + "license_key": "t-license-2.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-t-license-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "t-license-2.0.json", + "yaml": "t-license-2.0.yml", + "html": "t-license-2.0.html", + "license": "t-license-2.0.LICENSE" + }, + { + "license_key": "t-license-2.1", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-t-license-2.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "t-license-2.1.json", + "yaml": "t-license-2.1.yml", + "html": "t-license-2.1.html", + "license": "t-license-2.1.LICENSE" + }, + { + "license_key": "t-license-2.2", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-t-license-2.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "t-license-2.2.json", + "yaml": "t-license-2.2.yml", + "html": "t-license-2.2.html", + "license": "t-license-2.2.LICENSE" + }, + { + "license_key": "t-license-amp-t-kernel", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-t-license-amp-t-kernel", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "t-license-amp-t-kernel.json", + "yaml": "t-license-amp-t-kernel.yml", + "html": "t-license-amp-t-kernel.html", + "license": "t-license-amp-t-kernel.LICENSE" + }, + { + "license_key": "t-license-amp-tkse", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-t-license-amp-tkse", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "t-license-amp-tkse.json", + "yaml": "t-license-amp-tkse.yml", + "html": "t-license-amp-tkse.html", + "license": "t-license-amp-tkse.LICENSE" + }, + { + "license_key": "t-license-smp-t-kernel", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-t-license-smp-t-kernel", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "t-license-smp-t-kernel.json", + "yaml": "t-license-smp-t-kernel.yml", + "html": "t-license-smp-t-kernel.html", + "license": "t-license-smp-t-kernel.LICENSE" + }, + { + "license_key": "t-license-smp-tkse", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-t-license-smp-tkse", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "t-license-smp-tkse.json", + "yaml": "t-license-smp-tkse.yml", + "html": "t-license-smp-tkse.html", + "license": "t-license-smp-tkse.LICENSE" + }, + { + "license_key": "t-license-tkse", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-t-license-tkse", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "t-license-tkse.json", + "yaml": "t-license-tkse.yml", + "html": "t-license-tkse.html", + "license": "t-license-tkse.LICENSE" + }, + { + "license_key": "takao-abe", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-takao-abe", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "takao-abe.json", + "yaml": "takao-abe.yml", + "html": "takao-abe.html", + "license": "takao-abe.LICENSE" + }, + { + "license_key": "takuya-ooura", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-takuya-ooura", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "takuya-ooura.json", + "yaml": "takuya-ooura.yml", + "html": "takuya-ooura.html", + "license": "takuya-ooura.LICENSE" + }, + { + "license_key": "taligent-jdk", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-taligent-jdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "taligent-jdk.json", + "yaml": "taligent-jdk.yml", + "html": "taligent-jdk.html", + "license": "taligent-jdk.LICENSE" + }, + { + "license_key": "tanuki-community-sla-1.0", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-tanuki-community-sla-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tanuki-community-sla-1.0.json", + "yaml": "tanuki-community-sla-1.0.yml", + "html": "tanuki-community-sla-1.0.html", + "license": "tanuki-community-sla-1.0.LICENSE" + }, + { + "license_key": "tanuki-community-sla-1.1", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-tanuki-community-sla-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tanuki-community-sla-1.1.json", + "yaml": "tanuki-community-sla-1.1.yml", + "html": "tanuki-community-sla-1.1.html", + "license": "tanuki-community-sla-1.1.LICENSE" + }, + { + "license_key": "tanuki-community-sla-1.2", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-tanuki-community-sla-1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tanuki-community-sla-1.2.json", + "yaml": "tanuki-community-sla-1.2.yml", + "html": "tanuki-community-sla-1.2.html", + "license": "tanuki-community-sla-1.2.LICENSE" + }, + { + "license_key": "tanuki-community-sla-1.3", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-tanuki-community-sla-1.3", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tanuki-community-sla-1.3.json", + "yaml": "tanuki-community-sla-1.3.yml", + "html": "tanuki-community-sla-1.3.html", + "license": "tanuki-community-sla-1.3.LICENSE" + }, + { + "license_key": "tanuki-development", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-tanuki-development", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tanuki-development.json", + "yaml": "tanuki-development.yml", + "html": "tanuki-development.html", + "license": "tanuki-development.LICENSE" + }, + { + "license_key": "tanuki-maintenance", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-tanuki-maintenance", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tanuki-maintenance.json", + "yaml": "tanuki-maintenance.yml", + "html": "tanuki-maintenance.html", + "license": "tanuki-maintenance.LICENSE" + }, + { + "license_key": "tapr-ohl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "TAPR-OHL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tapr-ohl-1.0.json", + "yaml": "tapr-ohl-1.0.yml", + "html": "tapr-ohl-1.0.html", + "license": "tapr-ohl-1.0.LICENSE" + }, + { + "license_key": "tatu-ylonen", + "category": "Permissive", + "spdx_license_key": "SSH-short", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tatu-ylonen.json", + "yaml": "tatu-ylonen.yml", + "html": "tatu-ylonen.html", + "license": "tatu-ylonen.LICENSE" + }, + { + "license_key": "tcg-spec-license-v1", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-tcg-spec-license-v1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tcg-spec-license-v1.json", + "yaml": "tcg-spec-license-v1.yml", + "html": "tcg-spec-license-v1.html", + "license": "tcg-spec-license-v1.LICENSE" + }, + { + "license_key": "tcl", + "category": "Permissive", + "spdx_license_key": "TCL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tcl.json", + "yaml": "tcl.yml", + "html": "tcl.html", + "license": "tcl.LICENSE" + }, + { + "license_key": "tcp-wrappers", + "category": "Permissive", + "spdx_license_key": "TCP-wrappers", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tcp-wrappers.json", + "yaml": "tcp-wrappers.yml", + "html": "tcp-wrappers.html", + "license": "tcp-wrappers.LICENSE" + }, + { + "license_key": "teamdev-services", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-teamdev-services", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "teamdev-services.json", + "yaml": "teamdev-services.yml", + "html": "teamdev-services.html", + "license": "teamdev-services.LICENSE" + }, + { + "license_key": "tekhvc", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-tekhvc", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tekhvc.json", + "yaml": "tekhvc.yml", + "html": "tekhvc.html", + "license": "tekhvc.LICENSE" + }, + { + "license_key": "telerik-eula", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-telerik-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "telerik-eula.json", + "yaml": "telerik-eula.yml", + "html": "telerik-eula.html", + "license": "telerik-eula.LICENSE" + }, + { + "license_key": "tenable-nessus", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-tenable-nessus", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tenable-nessus.json", + "yaml": "tenable-nessus.yml", + "html": "tenable-nessus.html", + "license": "tenable-nessus.LICENSE" + }, + { + "license_key": "term-readkey", + "category": "Permissive", + "spdx_license_key": "TermReadKey", + "other_spdx_license_keys": [ + "LicenseRef-scancode-term-readkey" + ], + "is_exception": false, + "is_deprecated": false, + "json": "term-readkey.json", + "yaml": "term-readkey.yml", + "html": "term-readkey.html", + "license": "term-readkey.LICENSE" + }, + { + "license_key": "tested-software", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-tested-software", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tested-software.json", + "yaml": "tested-software.yml", + "html": "tested-software.html", + "license": "tested-software.LICENSE" + }, + { + "license_key": "tex-exception", + "category": "Copyleft Limited", + "spdx_license_key": "Texinfo-exception", + "other_spdx_license_keys": [ + "LicenseRef-scancode-tex-exception" + ], + "is_exception": true, + "is_deprecated": false, + "json": "tex-exception.json", + "yaml": "tex-exception.yml", + "html": "tex-exception.html", + "license": "tex-exception.LICENSE" + }, + { + "license_key": "tex-live", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-tex-live", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tex-live.json", + "yaml": "tex-live.yml", + "html": "tex-live.html", + "license": "tex-live.LICENSE" + }, + { + "license_key": "tfl", + "category": "Public Domain", + "spdx_license_key": "LicenseRef-scancode-tfl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tfl.json", + "yaml": "tfl.yml", + "html": "tfl.html", + "license": "tfl.LICENSE" + }, + { + "license_key": "tgc-spec-license-v2", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-tcg-spec-license-v2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tgc-spec-license-v2.json", + "yaml": "tgc-spec-license-v2.yml", + "html": "tgc-spec-license-v2.html", + "license": "tgc-spec-license-v2.LICENSE" + }, + { + "license_key": "tgppl-1.0", + "category": "Copyleft", + "spdx_license_key": "TGPPL-1.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-tgppl-1.0" + ], + "is_exception": false, + "is_deprecated": false, + "json": "tgppl-1.0.json", + "yaml": "tgppl-1.0.yml", + "html": "tgppl-1.0.html", + "license": "tgppl-1.0.LICENSE" + }, + { + "license_key": "the-stack-tos-2023-07", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-the-stack-tos-2023-07", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "the-stack-tos-2023-07.json", + "yaml": "the-stack-tos-2023-07.yml", + "html": "the-stack-tos-2023-07.html", + "license": "the-stack-tos-2023-07.LICENSE" + }, + { + "license_key": "things-i-made-public-license", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-things-i-made-public-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "things-i-made-public-license.json", + "yaml": "things-i-made-public-license.yml", + "html": "things-i-made-public-license.html", + "license": "things-i-made-public-license.LICENSE" + }, + { + "license_key": "thomas-bandt", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-thomas-bandt", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "thomas-bandt.json", + "yaml": "thomas-bandt.yml", + "html": "thomas-bandt.html", + "license": "thomas-bandt.LICENSE" + }, + { + "license_key": "thor-pl", + "category": "Copyleft Limited", + "spdx_license_key": "TPL-1.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-thor-pl" + ], + "is_exception": false, + "is_deprecated": false, + "json": "thor-pl.json", + "yaml": "thor-pl.yml", + "html": "thor-pl.html", + "license": "thor-pl.LICENSE" + }, + { + "license_key": "ti-broadband-apps", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ti-broadband-apps", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ti-broadband-apps.json", + "yaml": "ti-broadband-apps.yml", + "html": "ti-broadband-apps.html", + "license": "ti-broadband-apps.LICENSE" + }, + { + "license_key": "ti-linux-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ti-linux-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ti-linux-firmware.json", + "yaml": "ti-linux-firmware.yml", + "html": "ti-linux-firmware.html", + "license": "ti-linux-firmware.LICENSE" + }, + { + "license_key": "ti-restricted", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-ti-restricted", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ti-restricted.json", + "yaml": "ti-restricted.yml", + "html": "ti-restricted.html", + "license": "ti-restricted.LICENSE" + }, + { + "license_key": "tidy", + "category": "Permissive", + "spdx_license_key": "HTMLTIDY", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tidy.json", + "yaml": "tidy.yml", + "html": "tidy.html", + "license": "tidy.LICENSE" + }, + { + "license_key": "tiger-crypto", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-tiger-crypto", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tiger-crypto.json", + "yaml": "tiger-crypto.yml", + "html": "tiger-crypto.html", + "license": "tiger-crypto.LICENSE" + }, + { + "license_key": "tigra-calendar-3.2", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-tigra-calendar-3.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tigra-calendar-3.2.json", + "yaml": "tigra-calendar-3.2.yml", + "html": "tigra-calendar-3.2.html", + "license": "tigra-calendar-3.2.LICENSE" + }, + { + "license_key": "tigra-calendar-4.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-tigra-calendar-4.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tigra-calendar-4.0.json", + "yaml": "tigra-calendar-4.0.yml", + "html": "tigra-calendar-4.0.html", + "license": "tigra-calendar-4.0.LICENSE" + }, + { + "license_key": "tim-janik-2003", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-tim-janik-2003", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tim-janik-2003.json", + "yaml": "tim-janik-2003.yml", + "html": "tim-janik-2003.html", + "license": "tim-janik-2003.LICENSE" + }, + { + "license_key": "timestamp-picker", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-timestamp-picker", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "timestamp-picker.json", + "yaml": "timestamp-picker.yml", + "html": "timestamp-picker.html", + "license": "timestamp-picker.LICENSE" + }, + { + "license_key": "tizen-sdk", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-tizen-sdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tizen-sdk.json", + "yaml": "tizen-sdk.yml", + "html": "tizen-sdk.html", + "license": "tizen-sdk.LICENSE" + }, + { + "license_key": "tmate", + "category": "Copyleft", + "spdx_license_key": "TMate", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tmate.json", + "yaml": "tmate.yml", + "html": "tmate.html", + "license": "tmate.LICENSE" + }, + { + "license_key": "toppers-educational", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-toppers-educational", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "toppers-educational.json", + "yaml": "toppers-educational.yml", + "html": "toppers-educational.html", + "license": "toppers-educational.LICENSE" + }, + { + "license_key": "toppers-license", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-toppers-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "toppers-license.json", + "yaml": "toppers-license.yml", + "html": "toppers-license.html", + "license": "toppers-license.LICENSE" + }, + { + "license_key": "torque-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "TORQUE-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "torque-1.1.json", + "yaml": "torque-1.1.yml", + "html": "torque-1.1.html", + "license": "torque-1.1.LICENSE" + }, + { + "license_key": "tosl", + "category": "Copyleft", + "spdx_license_key": "TOSL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tosl.json", + "yaml": "tosl.yml", + "html": "tosl.html", + "license": "tosl.LICENSE" + }, + { + "license_key": "tpdl", + "category": "Permissive", + "spdx_license_key": "TPDL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tpdl.json", + "yaml": "tpdl.yml", + "html": "tpdl.html", + "license": "tpdl.LICENSE" + }, + { + "license_key": "tpl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-tpl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tpl-1.0.json", + "yaml": "tpl-1.0.yml", + "html": "tpl-1.0.html", + "license": "tpl-1.0.LICENSE" + }, + { + "license_key": "tpl-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-tpl-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tpl-2.0.json", + "yaml": "tpl-2.0.yml", + "html": "tpl-2.0.html", + "license": "tpl-2.0.LICENSE" + }, + { + "license_key": "trademark-notice", + "category": "Unstated License", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "trademark-notice.json", + "yaml": "trademark-notice.yml", + "html": "trademark-notice.html", + "license": "trademark-notice.LICENSE" + }, + { + "license_key": "trca-odl-1.0", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-trca-odl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "trca-odl-1.0.json", + "yaml": "trca-odl-1.0.yml", + "html": "trca-odl-1.0.html", + "license": "trca-odl-1.0.LICENSE" + }, + { + "license_key": "treeview-developer", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-treeview-developer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "treeview-developer.json", + "yaml": "treeview-developer.yml", + "html": "treeview-developer.html", + "license": "treeview-developer.LICENSE" + }, + { + "license_key": "treeview-distributor", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-treeview-distributor", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "treeview-distributor.json", + "yaml": "treeview-distributor.yml", + "html": "treeview-distributor.html", + "license": "treeview-distributor.LICENSE" + }, + { + "license_key": "triptracker", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-triptracker", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "triptracker.json", + "yaml": "triptracker.yml", + "html": "triptracker.html", + "license": "triptracker.LICENSE" + }, + { + "license_key": "trolltech-gpl-exception-1.0", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-trolltech-gpl-exception-1.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "trolltech-gpl-exception-1.0.json", + "yaml": "trolltech-gpl-exception-1.0.yml", + "html": "trolltech-gpl-exception-1.0.html", + "license": "trolltech-gpl-exception-1.0.LICENSE" + }, + { + "license_key": "trolltech-gpl-exception-1.1", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-trolltech-gpl-exception-1.1", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "trolltech-gpl-exception-1.1.json", + "yaml": "trolltech-gpl-exception-1.1.yml", + "html": "trolltech-gpl-exception-1.1.html", + "license": "trolltech-gpl-exception-1.1.LICENSE" + }, + { + "license_key": "trolltech-gpl-exception-1.2", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-trolltech-gpl-exception-1.2", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "trolltech-gpl-exception-1.2.json", + "yaml": "trolltech-gpl-exception-1.2.yml", + "html": "trolltech-gpl-exception-1.2.html", + "license": "trolltech-gpl-exception-1.2.LICENSE" + }, + { + "license_key": "truecrypt-3.1", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-truecrypt-3.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "truecrypt-3.1.json", + "yaml": "truecrypt-3.1.yml", + "html": "truecrypt-3.1.html", + "license": "truecrypt-3.1.LICENSE" + }, + { + "license_key": "trustonic-proprietary-2013", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-trustonic-proprietary-2013", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "trustonic-proprietary-2013.json", + "yaml": "trustonic-proprietary-2013.yml", + "html": "trustonic-proprietary-2013.html", + "license": "trustonic-proprietary-2013.LICENSE" + }, + { + "license_key": "tsl-2018", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-tsl-2018", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tsl-2018.json", + "yaml": "tsl-2018.yml", + "html": "tsl-2018.html", + "license": "tsl-2018.LICENSE" + }, + { + "license_key": "tsl-2020", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-tsl-2020", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tsl-2020.json", + "yaml": "tsl-2020.yml", + "html": "tsl-2020.html", + "license": "tsl-2020.LICENSE" + }, + { + "license_key": "tso-license", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-tso-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tso-license.json", + "yaml": "tso-license.yml", + "html": "tso-license.html", + "license": "tso-license.LICENSE" + }, + { + "license_key": "ttcl", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ttcl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ttcl.json", + "yaml": "ttcl.yml", + "html": "ttcl.html", + "license": "ttcl.LICENSE" + }, + { + "license_key": "ttf2pt1", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "ttf2pt1.json", + "yaml": "ttf2pt1.yml", + "html": "ttf2pt1.html", + "license": "ttf2pt1.LICENSE" + }, + { + "license_key": "ttwl", + "category": "Permissive", + "spdx_license_key": "TTWL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ttwl.json", + "yaml": "ttwl.yml", + "html": "ttwl.html", + "license": "ttwl.LICENSE" + }, + { + "license_key": "ttyp0", + "category": "Permissive", + "spdx_license_key": "TTYP0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ttyp0" + ], + "is_exception": false, + "is_deprecated": false, + "json": "ttyp0.json", + "yaml": "ttyp0.yml", + "html": "ttyp0.html", + "license": "ttyp0.LICENSE" + }, + { + "license_key": "tu-berlin", + "category": "Permissive", + "spdx_license_key": "TU-Berlin-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tu-berlin.json", + "yaml": "tu-berlin.yml", + "html": "tu-berlin.html", + "license": "tu-berlin.LICENSE" + }, + { + "license_key": "tu-berlin-2.0", + "category": "Permissive", + "spdx_license_key": "TU-Berlin-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tu-berlin-2.0.json", + "yaml": "tu-berlin-2.0.yml", + "html": "tu-berlin-2.0.html", + "license": "tu-berlin-2.0.LICENSE" + }, + { + "license_key": "tumbolia", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-tumbolia", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tumbolia.json", + "yaml": "tumbolia.yml", + "html": "tumbolia.html", + "license": "tumbolia.LICENSE" + }, + { + "license_key": "twisted-snmp", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-twisted-snmp", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "twisted-snmp.json", + "yaml": "twisted-snmp.yml", + "html": "twisted-snmp.html", + "license": "twisted-snmp.LICENSE" + }, + { + "license_key": "txl-10.5", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-txl-10.5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "txl-10.5.json", + "yaml": "txl-10.5.yml", + "html": "txl-10.5.html", + "license": "txl-10.5.LICENSE" + }, + { + "license_key": "u-boot-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "u-boot-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "u-boot-exception-2.0.json", + "yaml": "u-boot-exception-2.0.yml", + "html": "u-boot-exception-2.0.html", + "license": "u-boot-exception-2.0.LICENSE" + }, + { + "license_key": "ubc", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ubc", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ubc.json", + "yaml": "ubc.yml", + "html": "ubc.html", + "license": "ubc.LICENSE" + }, + { + "license_key": "ubdl", + "category": "Copyleft Limited", + "spdx_license_key": "UBDL-exception", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ubdl" + ], + "is_exception": true, + "is_deprecated": false, + "json": "ubdl.json", + "yaml": "ubdl.yml", + "html": "ubdl.html", + "license": "ubdl.LICENSE" + }, + { + "license_key": "ubuntu-font-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-ubuntu-font-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ubuntu-font-1.0.json", + "yaml": "ubuntu-font-1.0.yml", + "html": "ubuntu-font-1.0.html", + "license": "ubuntu-font-1.0.LICENSE" + }, + { + "license_key": "ucar", + "category": "Permissive", + "spdx_license_key": "UCAR", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ucar.json", + "yaml": "ucar.yml", + "html": "ucar.html", + "license": "ucar.LICENSE" + }, + { + "license_key": "ucl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "UCL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ucl-1.0.json", + "yaml": "ucl-1.0.yml", + "html": "ucl-1.0.html", + "license": "ucl-1.0.LICENSE" + }, + { + "license_key": "ugui", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ugui", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ugui.json", + "yaml": "ugui.yml", + "html": "ugui.html", + "license": "ugui.LICENSE" + }, + { + "license_key": "ulem", + "category": "Permissive", + "spdx_license_key": "ulem", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ulem.json", + "yaml": "ulem.yml", + "html": "ulem.html", + "license": "ulem.LICENSE" + }, + { + "license_key": "umich-merit", + "category": "Permissive", + "spdx_license_key": "UMich-Merit", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "umich-merit.json", + "yaml": "umich-merit.yml", + "html": "umich-merit.html", + "license": "umich-merit.LICENSE" + }, + { + "license_key": "unbuntu-font-1.0", + "category": "Free Restricted", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "unbuntu-font-1.0.json", + "yaml": "unbuntu-font-1.0.yml", + "html": "unbuntu-font-1.0.html", + "license": "unbuntu-font-1.0.LICENSE" + }, + { + "license_key": "unicode", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-unicode", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "unicode.json", + "yaml": "unicode.yml", + "html": "unicode.html", + "license": "unicode.LICENSE" + }, + { + "license_key": "unicode-data-software", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "unicode-data-software.json", + "yaml": "unicode-data-software.yml", + "html": "unicode-data-software.html", + "license": "unicode-data-software.LICENSE" + }, + { + "license_key": "unicode-dfs-2015", + "category": "Permissive", + "spdx_license_key": "Unicode-DFS-2015", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "unicode-dfs-2015.json", + "yaml": "unicode-dfs-2015.yml", + "html": "unicode-dfs-2015.html", + "license": "unicode-dfs-2015.LICENSE" + }, + { + "license_key": "unicode-dfs-2016", + "category": "Permissive", + "spdx_license_key": "Unicode-DFS-2016", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "unicode-dfs-2016.json", + "yaml": "unicode-dfs-2016.yml", + "html": "unicode-dfs-2016.html", + "license": "unicode-dfs-2016.LICENSE" + }, + { + "license_key": "unicode-icu-58", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-unicode-icu-58", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "unicode-icu-58.json", + "yaml": "unicode-icu-58.yml", + "html": "unicode-icu-58.html", + "license": "unicode-icu-58.LICENSE" + }, + { + "license_key": "unicode-mappings", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-unicode-mappings", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "unicode-mappings.json", + "yaml": "unicode-mappings.yml", + "html": "unicode-mappings.html", + "license": "unicode-mappings.LICENSE" + }, + { + "license_key": "unicode-tou", + "category": "Proprietary Free", + "spdx_license_key": "Unicode-TOU", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "unicode-tou.json", + "yaml": "unicode-tou.yml", + "html": "unicode-tou.html", + "license": "unicode-tou.LICENSE" + }, + { + "license_key": "unicode-v3", + "category": "Permissive", + "spdx_license_key": "Unicode-3.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-unicode-v3" + ], + "is_exception": false, + "is_deprecated": false, + "json": "unicode-v3.json", + "yaml": "unicode-v3.yml", + "html": "unicode-v3.html", + "license": "unicode-v3.LICENSE" + }, + { + "license_key": "universal-foss-exception-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "Universal-FOSS-exception-1.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "universal-foss-exception-1.0.json", + "yaml": "universal-foss-exception-1.0.yml", + "html": "universal-foss-exception-1.0.html", + "license": "universal-foss-exception-1.0.LICENSE" + }, + { + "license_key": "unixcrypt", + "category": "Permissive", + "spdx_license_key": "UnixCrypt", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "unixcrypt.json", + "yaml": "unixcrypt.yml", + "html": "unixcrypt.html", + "license": "unixcrypt.LICENSE" + }, + { + "license_key": "unknown", + "category": "Unstated License", + "spdx_license_key": "LicenseRef-scancode-unknown", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "unknown.json", + "yaml": "unknown.yml", + "html": "unknown.html", + "license": "unknown.LICENSE" + }, + { + "license_key": "unknown-license-reference", + "category": "Unstated License", + "spdx_license_key": "LicenseRef-scancode-unknown-license-reference", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "unknown-license-reference.json", + "yaml": "unknown-license-reference.yml", + "html": "unknown-license-reference.html", + "license": "unknown-license-reference.LICENSE" + }, + { + "license_key": "unknown-spdx", + "category": "Unstated License", + "spdx_license_key": "LicenseRef-scancode-unknown-spdx", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "unknown-spdx.json", + "yaml": "unknown-spdx.yml", + "html": "unknown-spdx.html", + "license": "unknown-spdx.LICENSE" + }, + { + "license_key": "unlicense", + "category": "Public Domain", + "spdx_license_key": "Unlicense", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "unlicense.json", + "yaml": "unlicense.yml", + "html": "unlicense.html", + "license": "unlicense.LICENSE" + }, + { + "license_key": "unlimited-binary-linking", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-unlimited-binary-linking", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "unlimited-binary-linking.json", + "yaml": "unlimited-binary-linking.yml", + "html": "unlimited-binary-linking.html", + "license": "unlimited-binary-linking.LICENSE" + }, + { + "license_key": "unlimited-binary-use-exception", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-unlimited-binary-use-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "unlimited-binary-use-exception.json", + "yaml": "unlimited-binary-use-exception.yml", + "html": "unlimited-binary-use-exception.html", + "license": "unlimited-binary-use-exception.LICENSE" + }, + { + "license_key": "unlimited-linking-exception-gpl", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-unlimited-link-exception-gpl", + "other_spdx_license_keys": [ + "LicenseRef-scancode-unlimited-linking-exception-gpl" + ], + "is_exception": true, + "is_deprecated": false, + "json": "unlimited-linking-exception-gpl.json", + "yaml": "unlimited-linking-exception-gpl.yml", + "html": "unlimited-linking-exception-gpl.html", + "license": "unlimited-linking-exception-gpl.LICENSE" + }, + { + "license_key": "unlimited-linking-exception-lgpl", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-unlimited-link-exception-lgpl", + "other_spdx_license_keys": [ + "LicenseRef-scancode-unlimited-linking-exception-lgpl" + ], + "is_exception": true, + "is_deprecated": false, + "json": "unlimited-linking-exception-lgpl.json", + "yaml": "unlimited-linking-exception-lgpl.yml", + "html": "unlimited-linking-exception-lgpl.html", + "license": "unlimited-linking-exception-lgpl.LICENSE" + }, + { + "license_key": "unpbook", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-unpbook", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "unpbook.json", + "yaml": "unpbook.yml", + "html": "unpbook.html", + "license": "unpbook.LICENSE" + }, + { + "license_key": "unpublished-source", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-unpublished-source", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "unpublished-source.json", + "yaml": "unpublished-source.yml", + "html": "unpublished-source.html", + "license": "unpublished-source.LICENSE" + }, + { + "license_key": "unrar", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-unrar", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "unrar.json", + "yaml": "unrar.yml", + "html": "unrar.html", + "license": "unrar.LICENSE" + }, + { + "license_key": "unrar-v3", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-unrar-v3", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "unrar-v3.json", + "yaml": "unrar-v3.yml", + "html": "unrar-v3.html", + "license": "unrar-v3.LICENSE" + }, + { + "license_key": "unsplash", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-unsplash", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "unsplash.json", + "yaml": "unsplash.yml", + "html": "unsplash.html", + "license": "unsplash.LICENSE" + }, + { + "license_key": "uofu-rfpl", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-uofu-rfpl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "uofu-rfpl.json", + "yaml": "uofu-rfpl.yml", + "html": "uofu-rfpl.html", + "license": "uofu-rfpl.LICENSE" + }, + { + "license_key": "uoi-ncsa", + "category": "Permissive", + "spdx_license_key": "NCSA", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "uoi-ncsa.json", + "yaml": "uoi-ncsa.yml", + "html": "uoi-ncsa.html", + "license": "uoi-ncsa.LICENSE" + }, + { + "license_key": "upl-1.0", + "category": "Permissive", + "spdx_license_key": "UPL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "upl-1.0.json", + "yaml": "upl-1.0.yml", + "html": "upl-1.0.html", + "license": "upl-1.0.LICENSE" + }, + { + "license_key": "upx-exception-2.0-plus", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-upx-exception-2.0-plus", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "upx-exception-2.0-plus.json", + "yaml": "upx-exception-2.0-plus.yml", + "html": "upx-exception-2.0-plus.html", + "license": "upx-exception-2.0-plus.LICENSE" + }, + { + "license_key": "urt-rle", + "category": "Copyleft Limited", + "spdx_license_key": "URT-RLE", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "urt-rle.json", + "yaml": "urt-rle.yml", + "html": "urt-rle.html", + "license": "urt-rle.LICENSE" + }, + { + "license_key": "us-govt-geotranform", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-us-govt-geotranform", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "us-govt-geotranform.json", + "yaml": "us-govt-geotranform.yml", + "html": "us-govt-geotranform.html", + "license": "us-govt-geotranform.LICENSE" + }, + { + "license_key": "us-govt-public-domain", + "category": "Public Domain", + "spdx_license_key": "LicenseRef-scancode-us-govt-public-domain", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "us-govt-public-domain.json", + "yaml": "us-govt-public-domain.yml", + "html": "us-govt-public-domain.html", + "license": "us-govt-public-domain.LICENSE" + }, + { + "license_key": "us-govt-unlimited-rights", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-us-govt-unlimited-rights", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "us-govt-unlimited-rights.json", + "yaml": "us-govt-unlimited-rights.yml", + "html": "us-govt-unlimited-rights.html", + "license": "us-govt-unlimited-rights.LICENSE" + }, + { + "license_key": "usrobotics-permissive", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-usrobotics-permissive", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "usrobotics-permissive.json", + "yaml": "usrobotics-permissive.yml", + "html": "usrobotics-permissive.html", + "license": "usrobotics-permissive.LICENSE" + }, + { + "license_key": "utopia", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-utopia", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "utopia.json", + "yaml": "utopia.yml", + "html": "utopia.html", + "license": "utopia.LICENSE" + }, + { + "license_key": "vaadin-cvdl-4.0", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-vaadin-cvdl-4.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "vaadin-cvdl-4.0.json", + "yaml": "vaadin-cvdl-4.0.yml", + "html": "vaadin-cvdl-4.0.html", + "license": "vaadin-cvdl-4.0.LICENSE" + }, + { + "license_key": "vbaccelerator", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-vbaccelerator", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "vbaccelerator.json", + "yaml": "vbaccelerator.yml", + "html": "vbaccelerator.html", + "license": "vbaccelerator.LICENSE" + }, + { + "license_key": "vcalendar", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-vcalendar", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "vcalendar.json", + "yaml": "vcalendar.yml", + "html": "vcalendar.html", + "license": "vcalendar.LICENSE" + }, + { + "license_key": "vcvrack-exception-to-gpl-3.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-vcvrack-exception-to-gpl-3.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "vcvrack-exception-to-gpl-3.0.json", + "yaml": "vcvrack-exception-to-gpl-3.0.yml", + "html": "vcvrack-exception-to-gpl-3.0.html", + "license": "vcvrack-exception-to-gpl-3.0.LICENSE" + }, + { + "license_key": "verbatim-manual", + "category": "Copyleft", + "spdx_license_key": "Linux-man-pages-copyleft", + "other_spdx_license_keys": [ + "Verbatim-man-pages", + "LicenseRef-scancode-verbatim-manual" + ], + "is_exception": false, + "is_deprecated": false, + "json": "verbatim-manual.json", + "yaml": "verbatim-manual.yml", + "html": "verbatim-manual.html", + "license": "verbatim-manual.LICENSE" + }, + { + "license_key": "verisign", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-verisign", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "verisign.json", + "yaml": "verisign.yml", + "html": "verisign.html", + "license": "verisign.LICENSE" + }, + { + "license_key": "vhfpl-1.1", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-vhfpl-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "vhfpl-1.1.json", + "yaml": "vhfpl-1.1.yml", + "html": "vhfpl-1.1.html", + "license": "vhfpl-1.1.LICENSE" + }, + { + "license_key": "vic-metcalfe-pd", + "category": "Public Domain", + "spdx_license_key": "LicenseRef-scancode-vic-metcalfe-pd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "vic-metcalfe-pd.json", + "yaml": "vic-metcalfe-pd.yml", + "html": "vic-metcalfe-pd.html", + "license": "vic-metcalfe-pd.LICENSE" + }, + { + "license_key": "vicomsoft-software", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-vicomsoft-software", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "vicomsoft-software.json", + "yaml": "vicomsoft-software.yml", + "html": "vicomsoft-software.html", + "license": "vicomsoft-software.LICENSE" + }, + { + "license_key": "viewflow-agpl-3.0-exception", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-viewflow-agpl-3.0-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "viewflow-agpl-3.0-exception.json", + "yaml": "viewflow-agpl-3.0-exception.yml", + "html": "viewflow-agpl-3.0-exception.html", + "license": "viewflow-agpl-3.0-exception.LICENSE" + }, + { + "license_key": "vim", + "category": "Copyleft", + "spdx_license_key": "Vim", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "vim.json", + "yaml": "vim.yml", + "html": "vim.html", + "license": "vim.LICENSE" + }, + { + "license_key": "vince", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-vince", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "vince.json", + "yaml": "vince.yml", + "html": "vince.html", + "license": "vince.LICENSE" + }, + { + "license_key": "visual-idiot", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-visual-idiot", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "visual-idiot.json", + "yaml": "visual-idiot.yml", + "html": "visual-idiot.html", + "license": "visual-idiot.LICENSE" + }, + { + "license_key": "visual-numerics", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-visual-numerics", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "visual-numerics.json", + "yaml": "visual-numerics.yml", + "html": "visual-numerics.html", + "license": "visual-numerics.LICENSE" + }, + { + "license_key": "vita-nuova-liberal", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-vita-nuova-liberal", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "vita-nuova-liberal.json", + "yaml": "vita-nuova-liberal.yml", + "html": "vita-nuova-liberal.html", + "license": "vita-nuova-liberal.LICENSE" + }, + { + "license_key": "vitesse-prop", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-vitesse-prop", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "vitesse-prop.json", + "yaml": "vitesse-prop.yml", + "html": "vitesse-prop.html", + "license": "vitesse-prop.LICENSE" + }, + { + "license_key": "vixie-cron", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-vixie-cron", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "vixie-cron.json", + "yaml": "vixie-cron.yml", + "html": "vixie-cron.html", + "license": "vixie-cron.LICENSE" + }, + { + "license_key": "vnc-viewer-ios", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-vnc-viewer-ios", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "vnc-viewer-ios.json", + "yaml": "vnc-viewer-ios.yml", + "html": "vnc-viewer-ios.html", + "license": "vnc-viewer-ios.LICENSE" + }, + { + "license_key": "volatility-vsl-v1.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-volatility-vsl-v1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "volatility-vsl-v1.0.json", + "yaml": "volatility-vsl-v1.0.yml", + "html": "volatility-vsl-v1.0.html", + "license": "volatility-vsl-v1.0.LICENSE" + }, + { + "license_key": "vostrom", + "category": "Copyleft", + "spdx_license_key": "VOSTROM", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "vostrom.json", + "yaml": "vostrom.yml", + "html": "vostrom.html", + "license": "vostrom.LICENSE" + }, + { + "license_key": "vpl-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-vpl-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "vpl-1.1.json", + "yaml": "vpl-1.1.yml", + "html": "vpl-1.1.html", + "license": "vpl-1.1.LICENSE" + }, + { + "license_key": "vpl-1.2", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-vpl-1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "vpl-1.2.json", + "yaml": "vpl-1.2.yml", + "html": "vpl-1.2.html", + "license": "vpl-1.2.LICENSE" + }, + { + "license_key": "vs10x-code-map", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-vs10x-code-map", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "vs10x-code-map.json", + "yaml": "vs10x-code-map.yml", + "html": "vs10x-code-map.html", + "license": "vs10x-code-map.LICENSE" + }, + { + "license_key": "vsftpd-openssl-exception", + "category": "Copyleft Limited", + "spdx_license_key": "vsftpd-openssl-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "vsftpd-openssl-exception.json", + "yaml": "vsftpd-openssl-exception.yml", + "html": "vsftpd-openssl-exception.html", + "license": "vsftpd-openssl-exception.LICENSE" + }, + { + "license_key": "vsl-1.0", + "category": "Permissive", + "spdx_license_key": "VSL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "vsl-1.0.json", + "yaml": "vsl-1.0.yml", + "html": "vsl-1.0.html", + "license": "vsl-1.0.LICENSE" + }, + { + "license_key": "vuforia-2013-07-29", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-vuforia-2013-07-29", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "vuforia-2013-07-29.json", + "yaml": "vuforia-2013-07-29.yml", + "html": "vuforia-2013-07-29.html", + "license": "vuforia-2013-07-29.LICENSE" + }, + { + "license_key": "vvvvvv-scl-1.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-vvvvvv-scl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "vvvvvv-scl-1.0.json", + "yaml": "vvvvvv-scl-1.0.yml", + "html": "vvvvvv-scl-1.0.html", + "license": "vvvvvv-scl-1.0.LICENSE" + }, + { + "license_key": "w3c", + "category": "Permissive", + "spdx_license_key": "W3C", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "w3c.json", + "yaml": "w3c.yml", + "html": "w3c.html", + "license": "w3c.LICENSE" + }, + { + "license_key": "w3c-03-bsd-license", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-w3c-03-bsd-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "w3c-03-bsd-license.json", + "yaml": "w3c-03-bsd-license.yml", + "html": "w3c-03-bsd-license.html", + "license": "w3c-03-bsd-license.LICENSE" + }, + { + "license_key": "w3c-community-cla", + "category": "CLA", + "spdx_license_key": "LicenseRef-scancode-w3c-community-cla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "w3c-community-cla.json", + "yaml": "w3c-community-cla.yml", + "html": "w3c-community-cla.html", + "license": "w3c-community-cla.LICENSE" + }, + { + "license_key": "w3c-docs-19990405", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-w3c-docs-19990405", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "w3c-docs-19990405.json", + "yaml": "w3c-docs-19990405.yml", + "html": "w3c-docs-19990405.html", + "license": "w3c-docs-19990405.LICENSE" + }, + { + "license_key": "w3c-docs-20021231", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-w3c-docs-20021231", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "w3c-docs-20021231.json", + "yaml": "w3c-docs-20021231.yml", + "html": "w3c-docs-20021231.html", + "license": "w3c-docs-20021231.LICENSE" + }, + { + "license_key": "w3c-documentation", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-w3c-documentation", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "w3c-documentation.json", + "yaml": "w3c-documentation.yml", + "html": "w3c-documentation.html", + "license": "w3c-documentation.LICENSE" + }, + { + "license_key": "w3c-software-19980720", + "category": "Permissive", + "spdx_license_key": "W3C-19980720", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "w3c-software-19980720.json", + "yaml": "w3c-software-19980720.yml", + "html": "w3c-software-19980720.html", + "license": "w3c-software-19980720.LICENSE" + }, + { + "license_key": "w3c-software-20021231", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "w3c-software-20021231.json", + "yaml": "w3c-software-20021231.yml", + "html": "w3c-software-20021231.html", + "license": "w3c-software-20021231.LICENSE" + }, + { + "license_key": "w3c-software-2023", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-w3c-software-2023", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "w3c-software-2023.json", + "yaml": "w3c-software-2023.yml", + "html": "w3c-software-2023.html", + "license": "w3c-software-2023.LICENSE" + }, + { + "license_key": "w3c-software-doc-20150513", + "category": "Permissive", + "spdx_license_key": "W3C-20150513", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "w3c-software-doc-20150513.json", + "yaml": "w3c-software-doc-20150513.yml", + "html": "w3c-software-doc-20150513.html", + "license": "w3c-software-doc-20150513.LICENSE" + }, + { + "license_key": "w3c-test-suite", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-w3c-test-suite", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "w3c-test-suite.json", + "yaml": "w3c-test-suite.yml", + "html": "w3c-test-suite.html", + "license": "w3c-test-suite.LICENSE" + }, + { + "license_key": "w3m", + "category": "Permissive", + "spdx_license_key": "w3m", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "w3m.json", + "yaml": "w3m.yml", + "html": "w3m.html", + "license": "w3m.LICENSE" + }, + { + "license_key": "warranty-disclaimer", + "category": "Unstated License", + "spdx_license_key": "LicenseRef-scancode-warranty-disclaimer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "warranty-disclaimer.json", + "yaml": "warranty-disclaimer.yml", + "html": "warranty-disclaimer.html", + "license": "warranty-disclaimer.LICENSE" + }, + { + "license_key": "waterfall-feed-parser", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-waterfall-feed-parser", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "waterfall-feed-parser.json", + "yaml": "waterfall-feed-parser.yml", + "html": "waterfall-feed-parser.html", + "license": "waterfall-feed-parser.LICENSE" + }, + { + "license_key": "westhawk", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-westhawk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "westhawk.json", + "yaml": "westhawk.yml", + "html": "westhawk.html", + "license": "westhawk.LICENSE" + }, + { + "license_key": "whistle", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-whistle", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "whistle.json", + "yaml": "whistle.yml", + "html": "whistle.html", + "license": "whistle.LICENSE" + }, + { + "license_key": "whitecat", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-whitecat", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "whitecat.json", + "yaml": "whitecat.yml", + "html": "whitecat.html", + "license": "whitecat.LICENSE" + }, + { + "license_key": "wide-license", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-wide-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "wide-license.json", + "yaml": "wide-license.yml", + "html": "wide-license.html", + "license": "wide-license.LICENSE" + }, + { + "license_key": "widget-workshop", + "category": "Permissive", + "spdx_license_key": "Widget-Workshop", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "widget-workshop.json", + "yaml": "widget-workshop.yml", + "html": "widget-workshop.html", + "license": "widget-workshop.LICENSE" + }, + { + "license_key": "wifi-alliance", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-wifi-alliance", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "wifi-alliance.json", + "yaml": "wifi-alliance.yml", + "html": "wifi-alliance.html", + "license": "wifi-alliance.LICENSE" + }, + { + "license_key": "william-alexander", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-william-alexander", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "william-alexander.json", + "yaml": "william-alexander.yml", + "html": "william-alexander.html", + "license": "william-alexander.LICENSE" + }, + { + "license_key": "wince-50-shared-source", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-wince-50-shared-source", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "wince-50-shared-source.json", + "yaml": "wince-50-shared-source.yml", + "html": "wince-50-shared-source.html", + "license": "wince-50-shared-source.LICENSE" + }, + { + "license_key": "windriver-commercial", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-windriver-commercial", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "windriver-commercial.json", + "yaml": "windriver-commercial.yml", + "html": "windriver-commercial.html", + "license": "windriver-commercial.LICENSE" + }, + { + "license_key": "wingo", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-wingo", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "wingo.json", + "yaml": "wingo.yml", + "html": "wingo.html", + "license": "wingo.LICENSE" + }, + { + "license_key": "wink", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-wink", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "wink.json", + "yaml": "wink.yml", + "html": "wink.html", + "license": "wink.LICENSE" + }, + { + "license_key": "winzip-eula", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-winzip-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "winzip-eula.json", + "yaml": "winzip-eula.yml", + "html": "winzip-eula.html", + "license": "winzip-eula.LICENSE" + }, + { + "license_key": "winzip-self-extractor", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-winzip-self-extractor", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "winzip-self-extractor.json", + "yaml": "winzip-self-extractor.yml", + "html": "winzip-self-extractor.html", + "license": "winzip-self-extractor.LICENSE" + }, + { + "license_key": "wol", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-wol", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "wol.json", + "yaml": "wol.yml", + "html": "wol.html", + "license": "wol.LICENSE" + }, + { + "license_key": "woodruff-2002", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-woodruff-2002", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "woodruff-2002.json", + "yaml": "woodruff-2002.yml", + "html": "woodruff-2002.html", + "license": "woodruff-2002.LICENSE" + }, + { + "license_key": "wordnet", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-wordnet", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "wordnet.json", + "yaml": "wordnet.yml", + "html": "wordnet.html", + "license": "wordnet.LICENSE" + }, + { + "license_key": "wrox", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-wrox", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "wrox.json", + "yaml": "wrox.yml", + "html": "wrox.html", + "license": "wrox.LICENSE" + }, + { + "license_key": "wrox-download", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-wrox-download", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "wrox-download.json", + "yaml": "wrox-download.yml", + "html": "wrox-download.html", + "license": "wrox-download.LICENSE" + }, + { + "license_key": "ws-addressing-spec", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ws-addressing-spec", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ws-addressing-spec.json", + "yaml": "ws-addressing-spec.yml", + "html": "ws-addressing-spec.html", + "license": "ws-addressing-spec.LICENSE" + }, + { + "license_key": "ws-policy-specification", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ws-policy-specification", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ws-policy-specification.json", + "yaml": "ws-policy-specification.yml", + "html": "ws-policy-specification.html", + "license": "ws-policy-specification.LICENSE" + }, + { + "license_key": "ws-trust-specification", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ws-trust-specification", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ws-trust-specification.json", + "yaml": "ws-trust-specification.yml", + "html": "ws-trust-specification.html", + "license": "ws-trust-specification.LICENSE" + }, + { + "license_key": "wsuipa", + "category": "Permissive", + "spdx_license_key": "Wsuipa", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "wsuipa.json", + "yaml": "wsuipa.yml", + "html": "wsuipa.html", + "license": "wsuipa.LICENSE" + }, + { + "license_key": "wtfnmfpl-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-wtfnmfpl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "wtfnmfpl-1.0.json", + "yaml": "wtfnmfpl-1.0.yml", + "html": "wtfnmfpl-1.0.html", + "license": "wtfnmfpl-1.0.LICENSE" + }, + { + "license_key": "wtfpl-1.0", + "category": "Public Domain", + "spdx_license_key": "LicenseRef-scancode-wtfpl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "wtfpl-1.0.json", + "yaml": "wtfpl-1.0.yml", + "html": "wtfpl-1.0.html", + "license": "wtfpl-1.0.LICENSE" + }, + { + "license_key": "wtfpl-2.0", + "category": "Public Domain", + "spdx_license_key": "WTFPL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "wtfpl-2.0.json", + "yaml": "wtfpl-2.0.yml", + "html": "wtfpl-2.0.html", + "license": "wtfpl-2.0.LICENSE" + }, + { + "license_key": "wthpl-1.0", + "category": "Public Domain", + "spdx_license_key": "LicenseRef-scancode-wthpl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "wthpl-1.0.json", + "yaml": "wthpl-1.0.yml", + "html": "wthpl-1.0.html", + "license": "wthpl-1.0.LICENSE" + }, + { + "license_key": "wxwidgets", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-wxwidgets", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "wxwidgets.json", + "yaml": "wxwidgets.yml", + "html": "wxwidgets.html", + "license": "wxwidgets.LICENSE" + }, + { + "license_key": "wxwindows", + "category": "Copyleft Limited", + "spdx_license_key": "wxWindows", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "wxwindows.json", + "yaml": "wxwindows.yml", + "html": "wxwindows.html", + "license": "wxwindows.LICENSE" + }, + { + "license_key": "wxwindows-exception-3.1", + "category": "Copyleft Limited", + "spdx_license_key": "WxWindows-exception-3.1", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "wxwindows-exception-3.1.json", + "yaml": "wxwindows-exception-3.1.yml", + "html": "wxwindows-exception-3.1.html", + "license": "wxwindows-exception-3.1.LICENSE" + }, + { + "license_key": "wxwindows-r-3.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-wxwindows-r-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "wxwindows-r-3.0.json", + "yaml": "wxwindows-r-3.0.yml", + "html": "wxwindows-r-3.0.html", + "license": "wxwindows-r-3.0.LICENSE" + }, + { + "license_key": "wxwindows-u-3.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-wxwindows-u-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "wxwindows-u-3.0.json", + "yaml": "wxwindows-u-3.0.yml", + "html": "wxwindows-u-3.0.html", + "license": "wxwindows-u-3.0.LICENSE" + }, + { + "license_key": "x11", + "category": "Permissive", + "spdx_license_key": "ICU", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "x11.json", + "yaml": "x11.yml", + "html": "x11.html", + "license": "x11.LICENSE" + }, + { + "license_key": "x11-acer", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-x11-acer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "x11-acer.json", + "yaml": "x11-acer.yml", + "html": "x11-acer.html", + "license": "x11-acer.LICENSE" + }, + { + "license_key": "x11-adobe", + "category": "Permissive", + "spdx_license_key": "Adobe-Display-PostScript", + "other_spdx_license_keys": [ + "LicenseRef-scancode-x11-adobe" + ], + "is_exception": false, + "is_deprecated": false, + "json": "x11-adobe.json", + "yaml": "x11-adobe.yml", + "html": "x11-adobe.html", + "license": "x11-adobe.LICENSE" + }, + { + "license_key": "x11-adobe-dec", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-x11-adobe-dec", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "x11-adobe-dec.json", + "yaml": "x11-adobe-dec.yml", + "html": "x11-adobe-dec.html", + "license": "x11-adobe-dec.LICENSE" + }, + { + "license_key": "x11-bitstream", + "category": "Permissive", + "spdx_license_key": "Bitstream-Charter", + "other_spdx_license_keys": [ + "LicenseRef-scancode-x11-bitstream" + ], + "is_exception": false, + "is_deprecated": false, + "json": "x11-bitstream.json", + "yaml": "x11-bitstream.yml", + "html": "x11-bitstream.html", + "license": "x11-bitstream.LICENSE" + }, + { + "license_key": "x11-dec1", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-x11-dec1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "x11-dec1.json", + "yaml": "x11-dec1.yml", + "html": "x11-dec1.html", + "license": "x11-dec1.LICENSE" + }, + { + "license_key": "x11-dec2", + "category": "Permissive", + "spdx_license_key": "HPND-DEC", + "other_spdx_license_keys": [ + "LicenseRef-scancode-x11-dec2" + ], + "is_exception": false, + "is_deprecated": false, + "json": "x11-dec2.json", + "yaml": "x11-dec2.yml", + "html": "x11-dec2.html", + "license": "x11-dec2.LICENSE" + }, + { + "license_key": "x11-doc", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-x11-doc", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "x11-doc.json", + "yaml": "x11-doc.yml", + "html": "x11-doc.html", + "license": "x11-doc.LICENSE" + }, + { + "license_key": "x11-dsc", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-x11-dsc", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "x11-dsc.json", + "yaml": "x11-dsc.yml", + "html": "x11-dsc.html", + "license": "x11-dsc.LICENSE" + }, + { + "license_key": "x11-fsf", + "category": "Permissive", + "spdx_license_key": "X11-distribute-modifications-variant", + "other_spdx_license_keys": [ + "LicenseRef-scancode-x11-fsf" + ], + "is_exception": false, + "is_deprecated": false, + "json": "x11-fsf.json", + "yaml": "x11-fsf.yml", + "html": "x11-fsf.html", + "license": "x11-fsf.LICENSE" + }, + { + "license_key": "x11-hanson", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-x11-hanson", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "x11-hanson.json", + "yaml": "x11-hanson.yml", + "html": "x11-hanson.html", + "license": "x11-hanson.LICENSE" + }, + { + "license_key": "x11-ibm", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-x11-ibm", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "x11-ibm.json", + "yaml": "x11-ibm.yml", + "html": "x11-ibm.html", + "license": "x11-ibm.LICENSE" + }, + { + "license_key": "x11-keith-packard", + "category": "Permissive", + "spdx_license_key": "HPND-sell-variant", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "x11-keith-packard.json", + "yaml": "x11-keith-packard.yml", + "html": "x11-keith-packard.html", + "license": "x11-keith-packard.LICENSE" + }, + { + "license_key": "x11-lucent", + "category": "Permissive", + "spdx_license_key": "dtoa", + "other_spdx_license_keys": [ + "LicenseRef-scancode-x11-lucent" + ], + "is_exception": false, + "is_deprecated": false, + "json": "x11-lucent.json", + "yaml": "x11-lucent.yml", + "html": "x11-lucent.html", + "license": "x11-lucent.LICENSE" + }, + { + "license_key": "x11-lucent-variant", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-x11-lucent-variant", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "x11-lucent-variant.json", + "yaml": "x11-lucent-variant.yml", + "html": "x11-lucent-variant.html", + "license": "x11-lucent-variant.LICENSE" + }, + { + "license_key": "x11-oar", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-x11-oar", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "x11-oar.json", + "yaml": "x11-oar.yml", + "html": "x11-oar.html", + "license": "x11-oar.LICENSE" + }, + { + "license_key": "x11-opengl", + "category": "Permissive", + "spdx_license_key": "SGI-OpenGL", + "other_spdx_license_keys": [ + "LicenseRef-scancode-x11-opengl" + ], + "is_exception": false, + "is_deprecated": false, + "json": "x11-opengl.json", + "yaml": "x11-opengl.yml", + "html": "x11-opengl.html", + "license": "x11-opengl.LICENSE" + }, + { + "license_key": "x11-opengroup", + "category": "Permissive", + "spdx_license_key": "MIT-open-group", + "other_spdx_license_keys": [ + "LicenseRef-scancode-x11-opengroup" + ], + "is_exception": false, + "is_deprecated": false, + "json": "x11-opengroup.json", + "yaml": "x11-opengroup.yml", + "html": "x11-opengroup.html", + "license": "x11-opengroup.LICENSE" + }, + { + "license_key": "x11-quarterdeck", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-x11-quarterdeck", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "x11-quarterdeck.json", + "yaml": "x11-quarterdeck.yml", + "html": "x11-quarterdeck.html", + "license": "x11-quarterdeck.LICENSE" + }, + { + "license_key": "x11-r75", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "x11-r75.json", + "yaml": "x11-r75.yml", + "html": "x11-r75.html", + "license": "x11-r75.LICENSE" + }, + { + "license_key": "x11-realmode", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-x11-realmode", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "x11-realmode.json", + "yaml": "x11-realmode.yml", + "html": "x11-realmode.html", + "license": "x11-realmode.LICENSE" + }, + { + "license_key": "x11-sg", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-x11-sg", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "x11-sg.json", + "yaml": "x11-sg.yml", + "html": "x11-sg.html", + "license": "x11-sg.LICENSE" + }, + { + "license_key": "x11-stanford", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-x11-stanford", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "x11-stanford.json", + "yaml": "x11-stanford.yml", + "html": "x11-stanford.html", + "license": "x11-stanford.LICENSE" + }, + { + "license_key": "x11-tektronix", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-x11-tektronix", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "x11-tektronix.json", + "yaml": "x11-tektronix.yml", + "html": "x11-tektronix.html", + "license": "x11-tektronix.LICENSE" + }, + { + "license_key": "x11-tiff", + "category": "Permissive", + "spdx_license_key": "libtiff", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "x11-tiff.json", + "yaml": "x11-tiff.yml", + "html": "x11-tiff.html", + "license": "x11-tiff.LICENSE" + }, + { + "license_key": "x11-x11r5", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-x11-x11r5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "x11-x11r5.json", + "yaml": "x11-x11r5.yml", + "html": "x11-x11r5.html", + "license": "x11-x11r5.LICENSE" + }, + { + "license_key": "x11-xconsortium", + "category": "Permissive", + "spdx_license_key": "X11", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "x11-xconsortium.json", + "yaml": "x11-xconsortium.yml", + "html": "x11-xconsortium.html", + "license": "x11-xconsortium.LICENSE" + }, + { + "license_key": "x11-xconsortium-veillard", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-x11-xconsortium-veillard", + "other_spdx_license_keys": [ + "LicenseRef-scancode-x11-xconsortium_veillard" + ], + "is_exception": false, + "is_deprecated": false, + "json": "x11-xconsortium-veillard.json", + "yaml": "x11-xconsortium-veillard.yml", + "html": "x11-xconsortium-veillard.html", + "license": "x11-xconsortium-veillard.LICENSE" + }, + { + "license_key": "x11-xconsortium_veillard", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "x11-xconsortium_veillard.json", + "yaml": "x11-xconsortium_veillard.yml", + "html": "x11-xconsortium_veillard.html", + "license": "x11-xconsortium_veillard.LICENSE" + }, + { + "license_key": "x11r5-authors", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "x11r5-authors.json", + "yaml": "x11r5-authors.yml", + "html": "x11r5-authors.html", + "license": "x11r5-authors.LICENSE" + }, + { + "license_key": "xceed-community-2021", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-xceed-community-2021", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "xceed-community-2021.json", + "yaml": "xceed-community-2021.yml", + "html": "xceed-community-2021.html", + "license": "xceed-community-2021.LICENSE" + }, + { + "license_key": "xdebug-1.03", + "category": "Permissive", + "spdx_license_key": "Xdebug-1.03", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "xdebug-1.03.json", + "yaml": "xdebug-1.03.yml", + "html": "xdebug-1.03.html", + "license": "xdebug-1.03.LICENSE" + }, + { + "license_key": "xenomai-gpl-exception", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-xenomai-gpl-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "xenomai-gpl-exception.json", + "yaml": "xenomai-gpl-exception.yml", + "html": "xenomai-gpl-exception.html", + "license": "xenomai-gpl-exception.LICENSE" + }, + { + "license_key": "xfree86-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-xfree86-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "xfree86-1.0.json", + "yaml": "xfree86-1.0.yml", + "html": "xfree86-1.0.html", + "license": "xfree86-1.0.LICENSE" + }, + { + "license_key": "xfree86-1.1", + "category": "Permissive", + "spdx_license_key": "XFree86-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "xfree86-1.1.json", + "yaml": "xfree86-1.1.yml", + "html": "xfree86-1.1.html", + "license": "xfree86-1.1.LICENSE" + }, + { + "license_key": "xilinx-2016", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-xilinx-2016", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "xilinx-2016.json", + "yaml": "xilinx-2016.yml", + "html": "xilinx-2016.html", + "license": "xilinx-2016.LICENSE" + }, + { + "license_key": "xinetd", + "category": "Permissive", + "spdx_license_key": "xinetd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "xinetd.json", + "yaml": "xinetd.yml", + "html": "xinetd.html", + "license": "xinetd.LICENSE" + }, + { + "license_key": "xiph-patent", + "category": "Patent License", + "spdx_license_key": "LicenseRef-scancode-xiph-patent", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "xiph-patent.json", + "yaml": "xiph-patent.yml", + "html": "xiph-patent.html", + "license": "xiph-patent.LICENSE" + }, + { + "license_key": "xkeyboard-config-zinoviev", + "category": "Permissive", + "spdx_license_key": "xkeyboard-config-Zinoviev", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "xkeyboard-config-zinoviev.json", + "yaml": "xkeyboard-config-zinoviev.yml", + "html": "xkeyboard-config-zinoviev.html", + "license": "xkeyboard-config-zinoviev.LICENSE" + }, + { + "license_key": "xming", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-xming", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "xming.json", + "yaml": "xming.yml", + "html": "xming.html", + "license": "xming.LICENSE" + }, + { + "license_key": "xmldb-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-xmldb-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "xmldb-1.0.json", + "yaml": "xmldb-1.0.yml", + "html": "xmldb-1.0.html", + "license": "xmldb-1.0.LICENSE" + }, + { + "license_key": "xnet", + "category": "Permissive", + "spdx_license_key": "Xnet", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "xnet.json", + "yaml": "xnet.yml", + "html": "xnet.html", + "license": "xnet.LICENSE" + }, + { + "license_key": "xskat", + "category": "Permissive", + "spdx_license_key": "XSkat", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "xskat.json", + "yaml": "xskat.yml", + "html": "xskat.html", + "license": "xskat.LICENSE" + }, + { + "license_key": "xxd", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-xxd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "xxd.json", + "yaml": "xxd.yml", + "html": "xxd.html", + "license": "xxd.LICENSE" + }, + { + "license_key": "yahoo-browserplus-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-yahoo-browserplus-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "yahoo-browserplus-eula.json", + "yaml": "yahoo-browserplus-eula.yml", + "html": "yahoo-browserplus-eula.html", + "license": "yahoo-browserplus-eula.LICENSE" + }, + { + "license_key": "yahoo-messenger-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-yahoo-messenger-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "yahoo-messenger-eula.json", + "yaml": "yahoo-messenger-eula.yml", + "html": "yahoo-messenger-eula.html", + "license": "yahoo-messenger-eula.LICENSE" + }, + { + "license_key": "yale-cas", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-yale-cas", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "yale-cas.json", + "yaml": "yale-cas.yml", + "html": "yale-cas.html", + "license": "yale-cas.LICENSE" + }, + { + "license_key": "yensdesign", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-yensdesign", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "yensdesign.json", + "yaml": "yensdesign.yml", + "html": "yensdesign.html", + "license": "yensdesign.LICENSE" + }, + { + "license_key": "yolo-1.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-yolo-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "yolo-1.0.json", + "yaml": "yolo-1.0.yml", + "html": "yolo-1.0.html", + "license": "yolo-1.0.LICENSE" + }, + { + "license_key": "yolo-2.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-yolo-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "yolo-2.0.json", + "yaml": "yolo-2.0.yml", + "html": "yolo-2.0.html", + "license": "yolo-2.0.LICENSE" + }, + { + "license_key": "ypl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "YPL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ypl-1.0.json", + "yaml": "ypl-1.0.yml", + "html": "ypl-1.0.html", + "license": "ypl-1.0.LICENSE" + }, + { + "license_key": "ypl-1.1", + "category": "Copyleft", + "spdx_license_key": "YPL-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ypl-1.1.json", + "yaml": "ypl-1.1.yml", + "html": "ypl-1.1.html", + "license": "ypl-1.1.LICENSE" + }, + { + "license_key": "zapatec-calendar", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-zapatec-calendar", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "zapatec-calendar.json", + "yaml": "zapatec-calendar.yml", + "html": "zapatec-calendar.html", + "license": "zapatec-calendar.LICENSE" + }, + { + "license_key": "zed", + "category": "Permissive", + "spdx_license_key": "Zed", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "zed.json", + "yaml": "zed.yml", + "html": "zed.html", + "license": "zed.LICENSE" + }, + { + "license_key": "zeeff", + "category": "Permissive", + "spdx_license_key": "Zeeff", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "zeeff.json", + "yaml": "zeeff.yml", + "html": "zeeff.html", + "license": "zeeff.LICENSE" + }, + { + "license_key": "zend-2.0", + "category": "Permissive", + "spdx_license_key": "Zend-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "zend-2.0.json", + "yaml": "zend-2.0.yml", + "html": "zend-2.0.html", + "license": "zend-2.0.LICENSE" + }, + { + "license_key": "zendesk-appdev-api-2022", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-zendesk-appdev-api-2022", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "zendesk-appdev-api-2022.json", + "yaml": "zendesk-appdev-api-2022.yml", + "html": "zendesk-appdev-api-2022.html", + "license": "zendesk-appdev-api-2022.LICENSE" + }, + { + "license_key": "zeromq-exception-lgpl-3.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-zeromq-exception-lgpl-3.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "zeromq-exception-lgpl-3.0.json", + "yaml": "zeromq-exception-lgpl-3.0.yml", + "html": "zeromq-exception-lgpl-3.0.html", + "license": "zeromq-exception-lgpl-3.0.LICENSE" + }, + { + "license_key": "zeusbench", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-zeusbench", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "zeusbench.json", + "yaml": "zeusbench.yml", + "html": "zeusbench.html", + "license": "zeusbench.LICENSE" + }, + { + "license_key": "zhorn-stickies", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-zhorn-stickies", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "zhorn-stickies.json", + "yaml": "zhorn-stickies.yml", + "html": "zhorn-stickies.html", + "license": "zhorn-stickies.LICENSE" + }, + { + "license_key": "zimbra-1.3", + "category": "Copyleft Limited", + "spdx_license_key": "Zimbra-1.3", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "zimbra-1.3.json", + "yaml": "zimbra-1.3.yml", + "html": "zimbra-1.3.html", + "license": "zimbra-1.3.LICENSE" + }, + { + "license_key": "zimbra-1.4", + "category": "Copyleft Limited", + "spdx_license_key": "Zimbra-1.4", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "zimbra-1.4.json", + "yaml": "zimbra-1.4.yml", + "html": "zimbra-1.4.html", + "license": "zimbra-1.4.LICENSE" + }, + { + "license_key": "zipeg", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-zipeg", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "zipeg.json", + "yaml": "zipeg.yml", + "html": "zipeg.html", + "license": "zipeg.LICENSE" + }, + { + "license_key": "ziplist5-geocode-duplication-addendum", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-ziplist5-geocode-dup-addendum", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ziplist5-geocode-duplication-addendum" + ], + "is_exception": false, + "is_deprecated": false, + "json": "ziplist5-geocode-duplication-addendum.json", + "yaml": "ziplist5-geocode-duplication-addendum.yml", + "html": "ziplist5-geocode-duplication-addendum.html", + "license": "ziplist5-geocode-duplication-addendum.LICENSE" + }, + { + "license_key": "ziplist5-geocode-end-user-enterprise", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-ziplist5-geocode-enterprise", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ziplist5-geocode-end-user-enterprise" + ], + "is_exception": false, + "is_deprecated": false, + "json": "ziplist5-geocode-end-user-enterprise.json", + "yaml": "ziplist5-geocode-end-user-enterprise.yml", + "html": "ziplist5-geocode-end-user-enterprise.html", + "license": "ziplist5-geocode-end-user-enterprise.LICENSE" + }, + { + "license_key": "ziplist5-geocode-end-user-workstation", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-ziplist5-geocode-workstation", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ziplist5-geocode-end-user-workstation" + ], + "is_exception": false, + "is_deprecated": false, + "json": "ziplist5-geocode-end-user-workstation.json", + "yaml": "ziplist5-geocode-end-user-workstation.yml", + "html": "ziplist5-geocode-end-user-workstation.html", + "license": "ziplist5-geocode-end-user-workstation.LICENSE" + }, + { + "license_key": "zlib", + "category": "Permissive", + "spdx_license_key": "Zlib", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "zlib.json", + "yaml": "zlib.yml", + "html": "zlib.html", + "license": "zlib.LICENSE" + }, + { + "license_key": "zlib-acknowledgement", + "category": "Permissive", + "spdx_license_key": "zlib-acknowledgement", + "other_spdx_license_keys": [ + "Nunit" + ], + "is_exception": false, + "is_deprecated": false, + "json": "zlib-acknowledgement.json", + "yaml": "zlib-acknowledgement.yml", + "html": "zlib-acknowledgement.html", + "license": "zlib-acknowledgement.LICENSE" + }, + { + "license_key": "zpl-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-zpl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "zpl-1.0.json", + "yaml": "zpl-1.0.yml", + "html": "zpl-1.0.html", + "license": "zpl-1.0.LICENSE" + }, + { + "license_key": "zpl-1.1", + "category": "Permissive", + "spdx_license_key": "ZPL-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "zpl-1.1.json", + "yaml": "zpl-1.1.yml", + "html": "zpl-1.1.html", + "license": "zpl-1.1.LICENSE" + }, + { + "license_key": "zpl-2.0", + "category": "Permissive", + "spdx_license_key": "ZPL-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "zpl-2.0.json", + "yaml": "zpl-2.0.yml", + "html": "zpl-2.0.html", + "license": "zpl-2.0.LICENSE" + }, + { + "license_key": "zpl-2.1", + "category": "Permissive", + "spdx_license_key": "ZPL-2.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "zpl-2.1.json", + "yaml": "zpl-2.1.yml", + "html": "zpl-2.1.html", + "license": "zpl-2.1.LICENSE" + }, + { + "license_key": "zrythm-exception-agpl-3.0", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-zrythm-exception-agpl-3.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "zrythm-exception-agpl-3.0.json", + "yaml": "zrythm-exception-agpl-3.0.yml", + "html": "zrythm-exception-agpl-3.0.html", + "license": "zrythm-exception-agpl-3.0.LICENSE" + }, + { + "license_key": "zsh", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-zsh", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "zsh.json", + "yaml": "zsh.yml", + "html": "zsh.html", + "license": "zsh.LICENSE" + }, + { + "license_key": "zuora-software", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-zuora-software", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "zuora-software.json", + "yaml": "zuora-software.yml", + "html": "zuora-software.html", + "license": "zuora-software.LICENSE" + }, + { + "license_key": "zveno-research", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-zveno-research", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "zveno-research.json", + "yaml": "zveno-research.yml", + "html": "zveno-research.html", + "license": "zveno-research.LICENSE" + } +] \ No newline at end of file diff --git a/pkg/licenses/files/licenses_spdx.json b/pkg/licenses/files/licenses_spdx.json new file mode 100644 index 0000000..884a5e6 --- /dev/null +++ b/pkg/licenses/files/licenses_spdx.json @@ -0,0 +1,7997 @@ +{ + "licenseListVersion": "3.23", + "licenses": [ + { + "reference": "https://spdx.org/licenses/0BSD.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/0BSD.json", + "referenceNumber": 78, + "name": "BSD Zero Clause License", + "licenseId": "0BSD", + "seeAlso": [ + "http://landley.net/toybox/license.html", + "https://opensource.org/licenses/0BSD" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/AAL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/AAL.json", + "referenceNumber": 433, + "name": "Attribution Assurance License", + "licenseId": "AAL", + "seeAlso": [ + "https://opensource.org/licenses/attribution" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/Abstyles.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Abstyles.json", + "referenceNumber": 395, + "name": "Abstyles License", + "licenseId": "Abstyles", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Abstyles" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/AdaCore-doc.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/AdaCore-doc.json", + "referenceNumber": 108, + "name": "AdaCore Doc License", + "licenseId": "AdaCore-doc", + "seeAlso": [ + "https://github.com/AdaCore/xmlada/blob/master/docs/index.rst", + "https://github.com/AdaCore/gnatcoll-core/blob/master/docs/index.rst", + "https://github.com/AdaCore/gnatcoll-db/blob/master/docs/index.rst" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Adobe-2006.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Adobe-2006.json", + "referenceNumber": 358, + "name": "Adobe Systems Incorporated Source Code License Agreement", + "licenseId": "Adobe-2006", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/AdobeLicense" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Adobe-Display-PostScript.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Adobe-Display-PostScript.json", + "referenceNumber": 272, + "name": "Adobe Display PostScript License", + "licenseId": "Adobe-Display-PostScript", + "seeAlso": [ + "https://gitlab.freedesktop.org/xorg/xserver/-/blob/master/COPYING?ref_type\u003dheads#L752" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Adobe-Glyph.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Adobe-Glyph.json", + "referenceNumber": 297, + "name": "Adobe Glyph List License", + "licenseId": "Adobe-Glyph", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/MIT#AdobeGlyph" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Adobe-Utopia.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Adobe-Utopia.json", + "referenceNumber": 311, + "name": "Adobe Utopia Font License", + "licenseId": "Adobe-Utopia", + "seeAlso": [ + "https://gitlab.freedesktop.org/xorg/font/adobe-utopia-100dpi/-/blob/master/COPYING?ref_type\u003dheads" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/ADSL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/ADSL.json", + "referenceNumber": 498, + "name": "Amazon Digital Services License", + "licenseId": "ADSL", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/AmazonDigitalServicesLicense" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/AFL-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/AFL-1.1.json", + "referenceNumber": 106, + "name": "Academic Free License v1.1", + "licenseId": "AFL-1.1", + "seeAlso": [ + "http://opensource.linux-mirror.org/licenses/afl-1.1.txt", + "http://wayback.archive.org/web/20021004124254/http://www.opensource.org/licenses/academic.php" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/AFL-1.2.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/AFL-1.2.json", + "referenceNumber": 628, + "name": "Academic Free License v1.2", + "licenseId": "AFL-1.2", + "seeAlso": [ + "http://opensource.linux-mirror.org/licenses/afl-1.2.txt", + "http://wayback.archive.org/web/20021204204652/http://www.opensource.org/licenses/academic.php" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/AFL-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/AFL-2.0.json", + "referenceNumber": 366, + "name": "Academic Free License v2.0", + "licenseId": "AFL-2.0", + "seeAlso": [ + "http://wayback.archive.org/web/20060924134533/http://www.opensource.org/licenses/afl-2.0.txt" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/AFL-2.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/AFL-2.1.json", + "referenceNumber": 220, + "name": "Academic Free License v2.1", + "licenseId": "AFL-2.1", + "seeAlso": [ + "http://opensource.linux-mirror.org/licenses/afl-2.1.txt" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/AFL-3.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/AFL-3.0.json", + "referenceNumber": 599, + "name": "Academic Free License v3.0", + "licenseId": "AFL-3.0", + "seeAlso": [ + "http://www.rosenlaw.com/AFL3.0.htm", + "https://opensource.org/licenses/afl-3.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/Afmparse.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Afmparse.json", + "referenceNumber": 172, + "name": "Afmparse License", + "licenseId": "Afmparse", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Afmparse" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/AGPL-1.0.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/AGPL-1.0.json", + "referenceNumber": 374, + "name": "Affero General Public License v1.0", + "licenseId": "AGPL-1.0", + "seeAlso": [ + "http://www.affero.org/oagpl.html" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/AGPL-1.0-only.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/AGPL-1.0-only.json", + "referenceNumber": 310, + "name": "Affero General Public License v1.0 only", + "licenseId": "AGPL-1.0-only", + "seeAlso": [ + "http://www.affero.org/oagpl.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/AGPL-1.0-or-later.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/AGPL-1.0-or-later.json", + "referenceNumber": 418, + "name": "Affero General Public License v1.0 or later", + "licenseId": "AGPL-1.0-or-later", + "seeAlso": [ + "http://www.affero.org/oagpl.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/AGPL-3.0.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/AGPL-3.0.json", + "referenceNumber": 631, + "name": "GNU Affero General Public License v3.0", + "licenseId": "AGPL-3.0", + "seeAlso": [ + "https://www.gnu.org/licenses/agpl.txt", + "https://opensource.org/licenses/AGPL-3.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/AGPL-3.0-only.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/AGPL-3.0-only.json", + "referenceNumber": 495, + "name": "GNU Affero General Public License v3.0 only", + "licenseId": "AGPL-3.0-only", + "seeAlso": [ + "https://www.gnu.org/licenses/agpl.txt", + "https://opensource.org/licenses/AGPL-3.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/AGPL-3.0-or-later.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/AGPL-3.0-or-later.json", + "referenceNumber": 228, + "name": "GNU Affero General Public License v3.0 or later", + "licenseId": "AGPL-3.0-or-later", + "seeAlso": [ + "https://www.gnu.org/licenses/agpl.txt", + "https://opensource.org/licenses/AGPL-3.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/Aladdin.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Aladdin.json", + "referenceNumber": 35, + "name": "Aladdin Free Public License", + "licenseId": "Aladdin", + "seeAlso": [ + "http://pages.cs.wisc.edu/~ghost/doc/AFPL/6.01/Public.htm" + ], + "isOsiApproved": false, + "isFsfLibre": false + }, + { + "reference": "https://spdx.org/licenses/AMDPLPA.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/AMDPLPA.json", + "referenceNumber": 100, + "name": "AMD\u0027s plpa_map.c License", + "licenseId": "AMDPLPA", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/AMD_plpa_map_License" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/AML.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/AML.json", + "referenceNumber": 2, + "name": "Apple MIT License", + "licenseId": "AML", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Apple_MIT_License" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/AML-glslang.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/AML-glslang.json", + "referenceNumber": 370, + "name": "AML glslang variant License", + "licenseId": "AML-glslang", + "seeAlso": [ + "https://github.com/KhronosGroup/glslang/blob/main/LICENSE.txt#L949", + "https://docs.omniverse.nvidia.com/install-guide/latest/common/licenses.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/AMPAS.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/AMPAS.json", + "referenceNumber": 267, + "name": "Academy of Motion Picture Arts and Sciences BSD", + "licenseId": "AMPAS", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/BSD#AMPASBSD" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/ANTLR-PD.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/ANTLR-PD.json", + "referenceNumber": 586, + "name": "ANTLR Software Rights Notice", + "licenseId": "ANTLR-PD", + "seeAlso": [ + "http://www.antlr2.org/license.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/ANTLR-PD-fallback.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/ANTLR-PD-fallback.json", + "referenceNumber": 133, + "name": "ANTLR Software Rights Notice with license fallback", + "licenseId": "ANTLR-PD-fallback", + "seeAlso": [ + "http://www.antlr2.org/license.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Apache-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Apache-1.0.json", + "referenceNumber": 463, + "name": "Apache License 1.0", + "licenseId": "Apache-1.0", + "seeAlso": [ + "http://www.apache.org/licenses/LICENSE-1.0" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/Apache-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Apache-1.1.json", + "referenceNumber": 627, + "name": "Apache License 1.1", + "licenseId": "Apache-1.1", + "seeAlso": [ + "http://apache.org/licenses/LICENSE-1.1", + "https://opensource.org/licenses/Apache-1.1" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/Apache-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Apache-2.0.json", + "referenceNumber": 501, + "name": "Apache License 2.0", + "licenseId": "Apache-2.0", + "seeAlso": [ + "https://www.apache.org/licenses/LICENSE-2.0", + "https://opensource.org/licenses/Apache-2.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/APAFML.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/APAFML.json", + "referenceNumber": 376, + "name": "Adobe Postscript AFM License", + "licenseId": "APAFML", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/AdobePostscriptAFM" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/APL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/APL-1.0.json", + "referenceNumber": 226, + "name": "Adaptive Public License 1.0", + "licenseId": "APL-1.0", + "seeAlso": [ + "https://opensource.org/licenses/APL-1.0" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/App-s2p.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/App-s2p.json", + "referenceNumber": 123, + "name": "App::s2p License", + "licenseId": "App-s2p", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/App-s2p" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/APSL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/APSL-1.0.json", + "referenceNumber": 536, + "name": "Apple Public Source License 1.0", + "licenseId": "APSL-1.0", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Apple_Public_Source_License_1.0" + ], + "isOsiApproved": true, + "isFsfLibre": false + }, + { + "reference": "https://spdx.org/licenses/APSL-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/APSL-1.1.json", + "referenceNumber": 475, + "name": "Apple Public Source License 1.1", + "licenseId": "APSL-1.1", + "seeAlso": [ + "http://www.opensource.apple.com/source/IOSerialFamily/IOSerialFamily-7/APPLE_LICENSE" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/APSL-1.2.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/APSL-1.2.json", + "referenceNumber": 547, + "name": "Apple Public Source License 1.2", + "licenseId": "APSL-1.2", + "seeAlso": [ + "http://www.samurajdata.se/opensource/mirror/licenses/apsl.php" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/APSL-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/APSL-2.0.json", + "referenceNumber": 147, + "name": "Apple Public Source License 2.0", + "licenseId": "APSL-2.0", + "seeAlso": [ + "http://www.opensource.apple.com/license/apsl/" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/Arphic-1999.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Arphic-1999.json", + "referenceNumber": 326, + "name": "Arphic Public License", + "licenseId": "Arphic-1999", + "seeAlso": [ + "http://ftp.gnu.org/gnu/non-gnu/chinese-fonts-truetype/LICENSE" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Artistic-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Artistic-1.0.json", + "referenceNumber": 278, + "name": "Artistic License 1.0", + "licenseId": "Artistic-1.0", + "seeAlso": [ + "https://opensource.org/licenses/Artistic-1.0" + ], + "isOsiApproved": true, + "isFsfLibre": false + }, + { + "reference": "https://spdx.org/licenses/Artistic-1.0-cl8.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Artistic-1.0-cl8.json", + "referenceNumber": 234, + "name": "Artistic License 1.0 w/clause 8", + "licenseId": "Artistic-1.0-cl8", + "seeAlso": [ + "https://opensource.org/licenses/Artistic-1.0" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/Artistic-1.0-Perl.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Artistic-1.0-Perl.json", + "referenceNumber": 634, + "name": "Artistic License 1.0 (Perl)", + "licenseId": "Artistic-1.0-Perl", + "seeAlso": [ + "http://dev.perl.org/licenses/artistic.html" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/Artistic-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Artistic-2.0.json", + "referenceNumber": 222, + "name": "Artistic License 2.0", + "licenseId": "Artistic-2.0", + "seeAlso": [ + "http://www.perlfoundation.org/artistic_license_2_0", + "https://www.perlfoundation.org/artistic-license-20.html", + "https://opensource.org/licenses/artistic-license-2.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/ASWF-Digital-Assets-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/ASWF-Digital-Assets-1.0.json", + "referenceNumber": 64, + "name": "ASWF Digital Assets License version 1.0", + "licenseId": "ASWF-Digital-Assets-1.0", + "seeAlso": [ + "https://github.com/AcademySoftwareFoundation/foundation/blob/main/digital_assets/aswf_digital_assets_license_v1.0.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/ASWF-Digital-Assets-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/ASWF-Digital-Assets-1.1.json", + "referenceNumber": 8, + "name": "ASWF Digital Assets License 1.1", + "licenseId": "ASWF-Digital-Assets-1.1", + "seeAlso": [ + "https://github.com/AcademySoftwareFoundation/foundation/blob/main/digital_assets/aswf_digital_assets_license_v1.1.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Baekmuk.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Baekmuk.json", + "referenceNumber": 512, + "name": "Baekmuk License", + "licenseId": "Baekmuk", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing:Baekmuk?rd\u003dLicensing/Baekmuk" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Bahyph.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Bahyph.json", + "referenceNumber": 57, + "name": "Bahyph License", + "licenseId": "Bahyph", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Bahyph" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Barr.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Barr.json", + "referenceNumber": 425, + "name": "Barr License", + "licenseId": "Barr", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Barr" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/bcrypt-Solar-Designer.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/bcrypt-Solar-Designer.json", + "referenceNumber": 166, + "name": "bcrypt Solar Designer License", + "licenseId": "bcrypt-Solar-Designer", + "seeAlso": [ + "https://github.com/bcrypt-ruby/bcrypt-ruby/blob/master/ext/mri/crypt_blowfish.c" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Beerware.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Beerware.json", + "referenceNumber": 50, + "name": "Beerware License", + "licenseId": "Beerware", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Beerware", + "https://people.freebsd.org/~phk/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Bitstream-Charter.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Bitstream-Charter.json", + "referenceNumber": 236, + "name": "Bitstream Charter Font License", + "licenseId": "Bitstream-Charter", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Charter#License_Text", + "https://raw.githubusercontent.com/blackhole89/notekit/master/data/fonts/Charter%20license.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Bitstream-Vera.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Bitstream-Vera.json", + "referenceNumber": 421, + "name": "Bitstream Vera Font License", + "licenseId": "Bitstream-Vera", + "seeAlso": [ + "https://web.archive.org/web/20080207013128/http://www.gnome.org/fonts/", + "https://docubrain.com/sites/default/files/licenses/bitstream-vera.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BitTorrent-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BitTorrent-1.0.json", + "referenceNumber": 602, + "name": "BitTorrent Open Source License v1.0", + "licenseId": "BitTorrent-1.0", + "seeAlso": [ + "http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/licenses/BitTorrent?r1\u003d1.1\u0026r2\u003d1.1.1.1\u0026diff_format\u003ds" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BitTorrent-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BitTorrent-1.1.json", + "referenceNumber": 161, + "name": "BitTorrent Open Source License v1.1", + "licenseId": "BitTorrent-1.1", + "seeAlso": [ + "http://directory.fsf.org/wiki/License:BitTorrentOSL1.1" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/blessing.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/blessing.json", + "referenceNumber": 618, + "name": "SQLite Blessing", + "licenseId": "blessing", + "seeAlso": [ + "https://www.sqlite.org/src/artifact/e33a4df7e32d742a?ln\u003d4-9", + "https://sqlite.org/src/artifact/df5091916dbb40e6" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BlueOak-1.0.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BlueOak-1.0.0.json", + "referenceNumber": 570, + "name": "Blue Oak Model License 1.0.0", + "licenseId": "BlueOak-1.0.0", + "seeAlso": [ + "https://blueoakcouncil.org/license/1.0.0" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/Boehm-GC.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Boehm-GC.json", + "referenceNumber": 15, + "name": "Boehm-Demers-Weiser GC License", + "licenseId": "Boehm-GC", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing:MIT#Another_Minimal_variant_(found_in_libatomic_ops)", + "https://github.com/uim/libgcroots/blob/master/COPYING", + "https://github.com/ivmai/libatomic_ops/blob/master/LICENSE" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Borceux.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Borceux.json", + "referenceNumber": 113, + "name": "Borceux license", + "licenseId": "Borceux", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Borceux" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Brian-Gladman-2-Clause.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Brian-Gladman-2-Clause.json", + "referenceNumber": 316, + "name": "Brian Gladman 2-Clause License", + "licenseId": "Brian-Gladman-2-Clause", + "seeAlso": [ + "https://github.com/krb5/krb5/blob/krb5-1.21.2-final/NOTICE#L140-L156", + "https://web.mit.edu/kerberos/krb5-1.21/doc/mitK5license.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Brian-Gladman-3-Clause.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Brian-Gladman-3-Clause.json", + "referenceNumber": 444, + "name": "Brian Gladman 3-Clause License", + "licenseId": "Brian-Gladman-3-Clause", + "seeAlso": [ + "https://github.com/SWI-Prolog/packages-clib/blob/master/sha1/brg_endian.h" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-1-Clause.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-1-Clause.json", + "referenceNumber": 308, + "name": "BSD 1-Clause License", + "licenseId": "BSD-1-Clause", + "seeAlso": [ + "https://svnweb.freebsd.org/base/head/include/ifaddrs.h?revision\u003d326823" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/BSD-2-Clause.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-2-Clause.json", + "referenceNumber": 232, + "name": "BSD 2-Clause \"Simplified\" License", + "licenseId": "BSD-2-Clause", + "seeAlso": [ + "https://opensource.org/licenses/BSD-2-Clause" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/BSD-2-Clause-Darwin.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-2-Clause-Darwin.json", + "referenceNumber": 555, + "name": "BSD 2-Clause - Ian Darwin variant", + "licenseId": "BSD-2-Clause-Darwin", + "seeAlso": [ + "https://github.com/file/file/blob/master/COPYING" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-2-Clause-FreeBSD.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/BSD-2-Clause-FreeBSD.json", + "referenceNumber": 56, + "name": "BSD 2-Clause FreeBSD License", + "licenseId": "BSD-2-Clause-FreeBSD", + "seeAlso": [ + "http://www.freebsd.org/copyright/freebsd-license.html" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/BSD-2-Clause-NetBSD.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/BSD-2-Clause-NetBSD.json", + "referenceNumber": 530, + "name": "BSD 2-Clause NetBSD License", + "licenseId": "BSD-2-Clause-NetBSD", + "seeAlso": [ + "http://www.netbsd.org/about/redistribution.html#default" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/BSD-2-Clause-Patent.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-2-Clause-Patent.json", + "referenceNumber": 200, + "name": "BSD-2-Clause Plus Patent License", + "licenseId": "BSD-2-Clause-Patent", + "seeAlso": [ + "https://opensource.org/licenses/BSDplusPatent" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/BSD-2-Clause-Views.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-2-Clause-Views.json", + "referenceNumber": 539, + "name": "BSD 2-Clause with views sentence", + "licenseId": "BSD-2-Clause-Views", + "seeAlso": [ + "http://www.freebsd.org/copyright/freebsd-license.html", + "https://people.freebsd.org/~ivoras/wine/patch-wine-nvidia.sh", + "https://github.com/protegeproject/protege/blob/master/license.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-3-Clause.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause.json", + "referenceNumber": 409, + "name": "BSD 3-Clause \"New\" or \"Revised\" License", + "licenseId": "BSD-3-Clause", + "seeAlso": [ + "https://opensource.org/licenses/BSD-3-Clause", + "https://www.eclipse.org/org/documents/edl-v10.php" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/BSD-3-Clause-acpica.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-acpica.json", + "referenceNumber": 306, + "name": "BSD 3-Clause acpica variant", + "licenseId": "BSD-3-Clause-acpica", + "seeAlso": [ + "https://github.com/acpica/acpica/blob/master/source/common/acfileio.c#L119" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-3-Clause-Attribution.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-Attribution.json", + "referenceNumber": 127, + "name": "BSD with attribution", + "licenseId": "BSD-3-Clause-Attribution", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/BSD_with_Attribution" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-3-Clause-Clear.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-Clear.json", + "referenceNumber": 251, + "name": "BSD 3-Clause Clear License", + "licenseId": "BSD-3-Clause-Clear", + "seeAlso": [ + "http://labs.metacarta.com/license-explanation.html#license" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/BSD-3-Clause-flex.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-flex.json", + "referenceNumber": 388, + "name": "BSD 3-Clause Flex variant", + "licenseId": "BSD-3-Clause-flex", + "seeAlso": [ + "https://github.com/westes/flex/blob/master/COPYING" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-3-Clause-HP.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-HP.json", + "referenceNumber": 189, + "name": "Hewlett-Packard BSD variant license", + "licenseId": "BSD-3-Clause-HP", + "seeAlso": [ + "https://github.com/zdohnal/hplip/blob/master/COPYING#L939" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-3-Clause-LBNL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-LBNL.json", + "referenceNumber": 377, + "name": "Lawrence Berkeley National Labs BSD variant license", + "licenseId": "BSD-3-Clause-LBNL", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/LBNLBSD" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/BSD-3-Clause-Modification.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-Modification.json", + "referenceNumber": 89, + "name": "BSD 3-Clause Modification", + "licenseId": "BSD-3-Clause-Modification", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing:BSD#Modification_Variant" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-3-Clause-No-Military-License.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-No-Military-License.json", + "referenceNumber": 216, + "name": "BSD 3-Clause No Military License", + "licenseId": "BSD-3-Clause-No-Military-License", + "seeAlso": [ + "https://gitlab.syncad.com/hive/dhive/-/blob/master/LICENSE", + "https://github.com/greymass/swift-eosio/blob/master/LICENSE" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License.json", + "referenceNumber": 192, + "name": "BSD 3-Clause No Nuclear License", + "licenseId": "BSD-3-Clause-No-Nuclear-License", + "seeAlso": [ + "http://download.oracle.com/otn-pub/java/licenses/bsd.txt?AuthParam\u003d1467140197_43d516ce1776bd08a58235a7785be1cc" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License-2014.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License-2014.json", + "referenceNumber": 249, + "name": "BSD 3-Clause No Nuclear License 2014", + "licenseId": "BSD-3-Clause-No-Nuclear-License-2014", + "seeAlso": [ + "https://java.net/projects/javaeetutorial/pages/BerkeleyLicense" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-Warranty.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-Warranty.json", + "referenceNumber": 437, + "name": "BSD 3-Clause No Nuclear Warranty", + "licenseId": "BSD-3-Clause-No-Nuclear-Warranty", + "seeAlso": [ + "https://jogamp.org/git/?p\u003dgluegen.git;a\u003dblob_plain;f\u003dLICENSE.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-3-Clause-Open-MPI.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-Open-MPI.json", + "referenceNumber": 424, + "name": "BSD 3-Clause Open MPI variant", + "licenseId": "BSD-3-Clause-Open-MPI", + "seeAlso": [ + "https://www.open-mpi.org/community/license.php", + "http://www.netlib.org/lapack/LICENSE.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-3-Clause-Sun.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-Sun.json", + "referenceNumber": 596, + "name": "BSD 3-Clause Sun Microsystems", + "licenseId": "BSD-3-Clause-Sun", + "seeAlso": [ + "https://github.com/xmlark/msv/blob/b9316e2f2270bc1606952ea4939ec87fbba157f3/xsdlib/src/main/java/com/sun/msv/datatype/regexp/InternalImpl.java" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-4-Clause.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-4-Clause.json", + "referenceNumber": 453, + "name": "BSD 4-Clause \"Original\" or \"Old\" License", + "licenseId": "BSD-4-Clause", + "seeAlso": [ + "http://directory.fsf.org/wiki/License:BSD_4Clause" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/BSD-4-Clause-Shortened.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-4-Clause-Shortened.json", + "referenceNumber": 46, + "name": "BSD 4 Clause Shortened", + "licenseId": "BSD-4-Clause-Shortened", + "seeAlso": [ + "https://metadata.ftp-master.debian.org/changelogs//main/a/arpwatch/arpwatch_2.1a15-7_copyright" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-4-Clause-UC.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-4-Clause-UC.json", + "referenceNumber": 350, + "name": "BSD-4-Clause (University of California-Specific)", + "licenseId": "BSD-4-Clause-UC", + "seeAlso": [ + "http://www.freebsd.org/copyright/license.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-4.3RENO.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-4.3RENO.json", + "referenceNumber": 558, + "name": "BSD 4.3 RENO License", + "licenseId": "BSD-4.3RENO", + "seeAlso": [ + "https://sourceware.org/git/?p\u003dbinutils-gdb.git;a\u003dblob;f\u003dlibiberty/strcasecmp.c;h\u003d131d81c2ce7881fa48c363dc5bf5fb302c61ce0b;hb\u003dHEAD", + "https://git.openldap.org/openldap/openldap/-/blob/master/COPYRIGHT#L55-63" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-4.3TAHOE.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-4.3TAHOE.json", + "referenceNumber": 372, + "name": "BSD 4.3 TAHOE License", + "licenseId": "BSD-4.3TAHOE", + "seeAlso": [ + "https://github.com/389ds/389-ds-base/blob/main/ldap/include/sysexits-compat.h#L15", + "https://git.savannah.gnu.org/cgit/indent.git/tree/doc/indent.texi?id\u003da74c6b4ee49397cf330b333da1042bffa60ed14f#n1788" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-Advertising-Acknowledgement.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-Advertising-Acknowledgement.json", + "referenceNumber": 466, + "name": "BSD Advertising Acknowledgement License", + "licenseId": "BSD-Advertising-Acknowledgement", + "seeAlso": [ + "https://github.com/python-excel/xlrd/blob/master/LICENSE#L33" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-Attribution-HPND-disclaimer.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-Attribution-HPND-disclaimer.json", + "referenceNumber": 434, + "name": "BSD with Attribution and HPND disclaimer", + "licenseId": "BSD-Attribution-HPND-disclaimer", + "seeAlso": [ + "https://github.com/cyrusimap/cyrus-sasl/blob/master/COPYING" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-Inferno-Nettverk.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-Inferno-Nettverk.json", + "referenceNumber": 423, + "name": "BSD-Inferno-Nettverk", + "licenseId": "BSD-Inferno-Nettverk", + "seeAlso": [ + "https://www.inet.no/dante/LICENSE" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-Protection.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-Protection.json", + "referenceNumber": 569, + "name": "BSD Protection License", + "licenseId": "BSD-Protection", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/BSD_Protection_License" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-Source-beginning-file.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-Source-beginning-file.json", + "referenceNumber": 486, + "name": "BSD Source Code Attribution - beginning of file variant", + "licenseId": "BSD-Source-beginning-file", + "seeAlso": [ + "https://github.com/lattera/freebsd/blob/master/sys/cam/cam.c#L4" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-Source-Code.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-Source-Code.json", + "referenceNumber": 36, + "name": "BSD Source Code Attribution", + "licenseId": "BSD-Source-Code", + "seeAlso": [ + "https://github.com/robbiehanson/CocoaHTTPServer/blob/master/LICENSE.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-Systemics.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-Systemics.json", + "referenceNumber": 260, + "name": "Systemics BSD variant license", + "licenseId": "BSD-Systemics", + "seeAlso": [ + "https://metacpan.org/release/DPARIS/Crypt-DES-2.07/source/COPYRIGHT" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-Systemics-W3Works.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-Systemics-W3Works.json", + "referenceNumber": 398, + "name": "Systemics W3Works BSD variant license", + "licenseId": "BSD-Systemics-W3Works", + "seeAlso": [ + "https://metacpan.org/release/DPARIS/Crypt-Blowfish-2.14/source/COPYRIGHT#L7" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSL-1.0.json", + "referenceNumber": 600, + "name": "Boost Software License 1.0", + "licenseId": "BSL-1.0", + "seeAlso": [ + "http://www.boost.org/LICENSE_1_0.txt", + "https://opensource.org/licenses/BSL-1.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/BUSL-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BUSL-1.1.json", + "referenceNumber": 380, + "name": "Business Source License 1.1", + "licenseId": "BUSL-1.1", + "seeAlso": [ + "https://mariadb.com/bsl11/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/bzip2-1.0.5.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/bzip2-1.0.5.json", + "referenceNumber": 283, + "name": "bzip2 and libbzip2 License v1.0.5", + "licenseId": "bzip2-1.0.5", + "seeAlso": [ + "https://sourceware.org/bzip2/1.0.5/bzip2-manual-1.0.5.html", + "http://bzip.org/1.0.5/bzip2-manual-1.0.5.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/bzip2-1.0.6.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/bzip2-1.0.6.json", + "referenceNumber": 206, + "name": "bzip2 and libbzip2 License v1.0.6", + "licenseId": "bzip2-1.0.6", + "seeAlso": [ + "https://sourceware.org/git/?p\u003dbzip2.git;a\u003dblob;f\u003dLICENSE;hb\u003dbzip2-1.0.6", + "http://bzip.org/1.0.5/bzip2-manual-1.0.5.html", + "https://sourceware.org/cgit/valgrind/tree/mpi/libmpiwrap.c" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/C-UDA-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/C-UDA-1.0.json", + "referenceNumber": 551, + "name": "Computational Use of Data Agreement v1.0", + "licenseId": "C-UDA-1.0", + "seeAlso": [ + "https://github.com/microsoft/Computational-Use-of-Data-Agreement/blob/master/C-UDA-1.0.md", + "https://cdla.dev/computational-use-of-data-agreement-v1-0/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CAL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CAL-1.0.json", + "referenceNumber": 630, + "name": "Cryptographic Autonomy License 1.0", + "licenseId": "CAL-1.0", + "seeAlso": [ + "http://cryptographicautonomylicense.com/license-text.html", + "https://opensource.org/licenses/CAL-1.0" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/CAL-1.0-Combined-Work-Exception.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CAL-1.0-Combined-Work-Exception.json", + "referenceNumber": 158, + "name": "Cryptographic Autonomy License 1.0 (Combined Work Exception)", + "licenseId": "CAL-1.0-Combined-Work-Exception", + "seeAlso": [ + "http://cryptographicautonomylicense.com/license-text.html", + "https://opensource.org/licenses/CAL-1.0" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/Caldera.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Caldera.json", + "referenceNumber": 282, + "name": "Caldera License", + "licenseId": "Caldera", + "seeAlso": [ + "http://www.lemis.com/grog/UNIX/ancient-source-all.pdf" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Caldera-no-preamble.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Caldera-no-preamble.json", + "referenceNumber": 262, + "name": "Caldera License (without preamble)", + "licenseId": "Caldera-no-preamble", + "seeAlso": [ + "https://github.com/apache/apr/blob/trunk/LICENSE#L298C6-L298C29" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CATOSL-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CATOSL-1.1.json", + "referenceNumber": 319, + "name": "Computer Associates Trusted Open Source License 1.1", + "licenseId": "CATOSL-1.1", + "seeAlso": [ + "https://opensource.org/licenses/CATOSL-1.1" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/CC-BY-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-1.0.json", + "referenceNumber": 384, + "name": "Creative Commons Attribution 1.0 Generic", + "licenseId": "CC-BY-1.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by/1.0/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-2.0.json", + "referenceNumber": 69, + "name": "Creative Commons Attribution 2.0 Generic", + "licenseId": "CC-BY-2.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by/2.0/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-2.5.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-2.5.json", + "referenceNumber": 482, + "name": "Creative Commons Attribution 2.5 Generic", + "licenseId": "CC-BY-2.5", + "seeAlso": [ + "https://creativecommons.org/licenses/by/2.5/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-2.5-AU.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-2.5-AU.json", + "referenceNumber": 348, + "name": "Creative Commons Attribution 2.5 Australia", + "licenseId": "CC-BY-2.5-AU", + "seeAlso": [ + "https://creativecommons.org/licenses/by/2.5/au/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-3.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-3.0.json", + "referenceNumber": 562, + "name": "Creative Commons Attribution 3.0 Unported", + "licenseId": "CC-BY-3.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by/3.0/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-3.0-AT.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-3.0-AT.json", + "referenceNumber": 314, + "name": "Creative Commons Attribution 3.0 Austria", + "licenseId": "CC-BY-3.0-AT", + "seeAlso": [ + "https://creativecommons.org/licenses/by/3.0/at/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-3.0-AU.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-3.0-AU.json", + "referenceNumber": 235, + "name": "Creative Commons Attribution 3.0 Australia", + "licenseId": "CC-BY-3.0-AU", + "seeAlso": [ + "https://creativecommons.org/licenses/by/3.0/au/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-3.0-DE.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-3.0-DE.json", + "referenceNumber": 110, + "name": "Creative Commons Attribution 3.0 Germany", + "licenseId": "CC-BY-3.0-DE", + "seeAlso": [ + "https://creativecommons.org/licenses/by/3.0/de/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-3.0-IGO.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-3.0-IGO.json", + "referenceNumber": 359, + "name": "Creative Commons Attribution 3.0 IGO", + "licenseId": "CC-BY-3.0-IGO", + "seeAlso": [ + "https://creativecommons.org/licenses/by/3.0/igo/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-3.0-NL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-3.0-NL.json", + "referenceNumber": 130, + "name": "Creative Commons Attribution 3.0 Netherlands", + "licenseId": "CC-BY-3.0-NL", + "seeAlso": [ + "https://creativecommons.org/licenses/by/3.0/nl/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-3.0-US.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-3.0-US.json", + "referenceNumber": 38, + "name": "Creative Commons Attribution 3.0 United States", + "licenseId": "CC-BY-3.0-US", + "seeAlso": [ + "https://creativecommons.org/licenses/by/3.0/us/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-4.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-4.0.json", + "referenceNumber": 122, + "name": "Creative Commons Attribution 4.0 International", + "licenseId": "CC-BY-4.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by/4.0/legalcode" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-1.0.json", + "referenceNumber": 29, + "name": "Creative Commons Attribution Non Commercial 1.0 Generic", + "licenseId": "CC-BY-NC-1.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nc/1.0/legalcode" + ], + "isOsiApproved": false, + "isFsfLibre": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-2.0.json", + "referenceNumber": 588, + "name": "Creative Commons Attribution Non Commercial 2.0 Generic", + "licenseId": "CC-BY-NC-2.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nc/2.0/legalcode" + ], + "isOsiApproved": false, + "isFsfLibre": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-2.5.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-2.5.json", + "referenceNumber": 400, + "name": "Creative Commons Attribution Non Commercial 2.5 Generic", + "licenseId": "CC-BY-NC-2.5", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nc/2.5/legalcode" + ], + "isOsiApproved": false, + "isFsfLibre": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-3.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-3.0.json", + "referenceNumber": 104, + "name": "Creative Commons Attribution Non Commercial 3.0 Unported", + "licenseId": "CC-BY-NC-3.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nc/3.0/legalcode" + ], + "isOsiApproved": false, + "isFsfLibre": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-3.0-DE.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-3.0-DE.json", + "referenceNumber": 351, + "name": "Creative Commons Attribution Non Commercial 3.0 Germany", + "licenseId": "CC-BY-NC-3.0-DE", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nc/3.0/de/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-4.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-4.0.json", + "referenceNumber": 353, + "name": "Creative Commons Attribution Non Commercial 4.0 International", + "licenseId": "CC-BY-NC-4.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nc/4.0/legalcode" + ], + "isOsiApproved": false, + "isFsfLibre": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-ND-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-ND-1.0.json", + "referenceNumber": 454, + "name": "Creative Commons Attribution Non Commercial No Derivatives 1.0 Generic", + "licenseId": "CC-BY-NC-ND-1.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nd-nc/1.0/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-ND-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-ND-2.0.json", + "referenceNumber": 53, + "name": "Creative Commons Attribution Non Commercial No Derivatives 2.0 Generic", + "licenseId": "CC-BY-NC-ND-2.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nc-nd/2.0/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-ND-2.5.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-ND-2.5.json", + "referenceNumber": 328, + "name": "Creative Commons Attribution Non Commercial No Derivatives 2.5 Generic", + "licenseId": "CC-BY-NC-ND-2.5", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nc-nd/2.5/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-ND-3.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-ND-3.0.json", + "referenceNumber": 70, + "name": "Creative Commons Attribution Non Commercial No Derivatives 3.0 Unported", + "licenseId": "CC-BY-NC-ND-3.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nc-nd/3.0/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-ND-3.0-DE.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-ND-3.0-DE.json", + "referenceNumber": 47, + "name": "Creative Commons Attribution Non Commercial No Derivatives 3.0 Germany", + "licenseId": "CC-BY-NC-ND-3.0-DE", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nc-nd/3.0/de/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-ND-3.0-IGO.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-ND-3.0-IGO.json", + "referenceNumber": 213, + "name": "Creative Commons Attribution Non Commercial No Derivatives 3.0 IGO", + "licenseId": "CC-BY-NC-ND-3.0-IGO", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nc-nd/3.0/igo/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-ND-4.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-ND-4.0.json", + "referenceNumber": 550, + "name": "Creative Commons Attribution Non Commercial No Derivatives 4.0 International", + "licenseId": "CC-BY-NC-ND-4.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nc-nd/4.0/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-SA-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-SA-1.0.json", + "referenceNumber": 99, + "name": "Creative Commons Attribution Non Commercial Share Alike 1.0 Generic", + "licenseId": "CC-BY-NC-SA-1.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nc-sa/1.0/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-SA-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-SA-2.0.json", + "referenceNumber": 491, + "name": "Creative Commons Attribution Non Commercial Share Alike 2.0 Generic", + "licenseId": "CC-BY-NC-SA-2.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nc-sa/2.0/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-SA-2.0-DE.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-SA-2.0-DE.json", + "referenceNumber": 246, + "name": "Creative Commons Attribution Non Commercial Share Alike 2.0 Germany", + "licenseId": "CC-BY-NC-SA-2.0-DE", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nc-sa/2.0/de/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-SA-2.0-FR.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-SA-2.0-FR.json", + "referenceNumber": 368, + "name": "Creative Commons Attribution-NonCommercial-ShareAlike 2.0 France", + "licenseId": "CC-BY-NC-SA-2.0-FR", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nc-sa/2.0/fr/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-SA-2.0-UK.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-SA-2.0-UK.json", + "referenceNumber": 451, + "name": "Creative Commons Attribution Non Commercial Share Alike 2.0 England and Wales", + "licenseId": "CC-BY-NC-SA-2.0-UK", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nc-sa/2.0/uk/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-SA-2.5.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-SA-2.5.json", + "referenceNumber": 352, + "name": "Creative Commons Attribution Non Commercial Share Alike 2.5 Generic", + "licenseId": "CC-BY-NC-SA-2.5", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nc-sa/2.5/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-SA-3.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-SA-3.0.json", + "referenceNumber": 41, + "name": "Creative Commons Attribution Non Commercial Share Alike 3.0 Unported", + "licenseId": "CC-BY-NC-SA-3.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nc-sa/3.0/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-SA-3.0-DE.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-SA-3.0-DE.json", + "referenceNumber": 582, + "name": "Creative Commons Attribution Non Commercial Share Alike 3.0 Germany", + "licenseId": "CC-BY-NC-SA-3.0-DE", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nc-sa/3.0/de/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-SA-3.0-IGO.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-SA-3.0-IGO.json", + "referenceNumber": 205, + "name": "Creative Commons Attribution Non Commercial Share Alike 3.0 IGO", + "licenseId": "CC-BY-NC-SA-3.0-IGO", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nc-sa/3.0/igo/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-SA-4.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-SA-4.0.json", + "referenceNumber": 610, + "name": "Creative Commons Attribution Non Commercial Share Alike 4.0 International", + "licenseId": "CC-BY-NC-SA-4.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-ND-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-ND-1.0.json", + "referenceNumber": 18, + "name": "Creative Commons Attribution No Derivatives 1.0 Generic", + "licenseId": "CC-BY-ND-1.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nd/1.0/legalcode" + ], + "isOsiApproved": false, + "isFsfLibre": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-ND-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-ND-2.0.json", + "referenceNumber": 614, + "name": "Creative Commons Attribution No Derivatives 2.0 Generic", + "licenseId": "CC-BY-ND-2.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nd/2.0/legalcode" + ], + "isOsiApproved": false, + "isFsfLibre": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-ND-2.5.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-ND-2.5.json", + "referenceNumber": 540, + "name": "Creative Commons Attribution No Derivatives 2.5 Generic", + "licenseId": "CC-BY-ND-2.5", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nd/2.5/legalcode" + ], + "isOsiApproved": false, + "isFsfLibre": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-ND-3.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-ND-3.0.json", + "referenceNumber": 544, + "name": "Creative Commons Attribution No Derivatives 3.0 Unported", + "licenseId": "CC-BY-ND-3.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nd/3.0/legalcode" + ], + "isOsiApproved": false, + "isFsfLibre": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-ND-3.0-DE.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-ND-3.0-DE.json", + "referenceNumber": 355, + "name": "Creative Commons Attribution No Derivatives 3.0 Germany", + "licenseId": "CC-BY-ND-3.0-DE", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nd/3.0/de/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-ND-4.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-ND-4.0.json", + "referenceNumber": 545, + "name": "Creative Commons Attribution No Derivatives 4.0 International", + "licenseId": "CC-BY-ND-4.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nd/4.0/legalcode" + ], + "isOsiApproved": false, + "isFsfLibre": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-SA-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-SA-1.0.json", + "referenceNumber": 242, + "name": "Creative Commons Attribution Share Alike 1.0 Generic", + "licenseId": "CC-BY-SA-1.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by-sa/1.0/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-SA-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-SA-2.0.json", + "referenceNumber": 349, + "name": "Creative Commons Attribution Share Alike 2.0 Generic", + "licenseId": "CC-BY-SA-2.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by-sa/2.0/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-SA-2.0-UK.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-SA-2.0-UK.json", + "referenceNumber": 197, + "name": "Creative Commons Attribution Share Alike 2.0 England and Wales", + "licenseId": "CC-BY-SA-2.0-UK", + "seeAlso": [ + "https://creativecommons.org/licenses/by-sa/2.0/uk/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-SA-2.1-JP.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-SA-2.1-JP.json", + "referenceNumber": 162, + "name": "Creative Commons Attribution Share Alike 2.1 Japan", + "licenseId": "CC-BY-SA-2.1-JP", + "seeAlso": [ + "https://creativecommons.org/licenses/by-sa/2.1/jp/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-SA-2.5.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-SA-2.5.json", + "referenceNumber": 626, + "name": "Creative Commons Attribution Share Alike 2.5 Generic", + "licenseId": "CC-BY-SA-2.5", + "seeAlso": [ + "https://creativecommons.org/licenses/by-sa/2.5/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-SA-3.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-SA-3.0.json", + "referenceNumber": 244, + "name": "Creative Commons Attribution Share Alike 3.0 Unported", + "licenseId": "CC-BY-SA-3.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by-sa/3.0/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-SA-3.0-AT.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-SA-3.0-AT.json", + "referenceNumber": 292, + "name": "Creative Commons Attribution Share Alike 3.0 Austria", + "licenseId": "CC-BY-SA-3.0-AT", + "seeAlso": [ + "https://creativecommons.org/licenses/by-sa/3.0/at/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-SA-3.0-DE.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-SA-3.0-DE.json", + "referenceNumber": 317, + "name": "Creative Commons Attribution Share Alike 3.0 Germany", + "licenseId": "CC-BY-SA-3.0-DE", + "seeAlso": [ + "https://creativecommons.org/licenses/by-sa/3.0/de/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-SA-3.0-IGO.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-SA-3.0-IGO.json", + "referenceNumber": 139, + "name": "Creative Commons Attribution-ShareAlike 3.0 IGO", + "licenseId": "CC-BY-SA-3.0-IGO", + "seeAlso": [ + "https://creativecommons.org/licenses/by-sa/3.0/igo/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-SA-4.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-SA-4.0.json", + "referenceNumber": 438, + "name": "Creative Commons Attribution Share Alike 4.0 International", + "licenseId": "CC-BY-SA-4.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by-sa/4.0/legalcode" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/CC-PDDC.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-PDDC.json", + "referenceNumber": 291, + "name": "Creative Commons Public Domain Dedication and Certification", + "licenseId": "CC-PDDC", + "seeAlso": [ + "https://creativecommons.org/licenses/publicdomain/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC0-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC0-1.0.json", + "referenceNumber": 285, + "name": "Creative Commons Zero v1.0 Universal", + "licenseId": "CC0-1.0", + "seeAlso": [ + "https://creativecommons.org/publicdomain/zero/1.0/legalcode" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/CDDL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CDDL-1.0.json", + "referenceNumber": 154, + "name": "Common Development and Distribution License 1.0", + "licenseId": "CDDL-1.0", + "seeAlso": [ + "https://opensource.org/licenses/cddl1" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/CDDL-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CDDL-1.1.json", + "referenceNumber": 529, + "name": "Common Development and Distribution License 1.1", + "licenseId": "CDDL-1.1", + "seeAlso": [ + "http://glassfish.java.net/public/CDDL+GPL_1_1.html", + "https://javaee.github.io/glassfish/LICENSE" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CDL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CDL-1.0.json", + "referenceNumber": 243, + "name": "Common Documentation License 1.0", + "licenseId": "CDL-1.0", + "seeAlso": [ + "http://www.opensource.apple.com/cdl/", + "https://fedoraproject.org/wiki/Licensing/Common_Documentation_License", + "https://www.gnu.org/licenses/license-list.html#ACDL" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CDLA-Permissive-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CDLA-Permissive-1.0.json", + "referenceNumber": 477, + "name": "Community Data License Agreement Permissive 1.0", + "licenseId": "CDLA-Permissive-1.0", + "seeAlso": [ + "https://cdla.io/permissive-1-0" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CDLA-Permissive-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CDLA-Permissive-2.0.json", + "referenceNumber": 335, + "name": "Community Data License Agreement Permissive 2.0", + "licenseId": "CDLA-Permissive-2.0", + "seeAlso": [ + "https://cdla.dev/permissive-2-0" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CDLA-Sharing-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CDLA-Sharing-1.0.json", + "referenceNumber": 548, + "name": "Community Data License Agreement Sharing 1.0", + "licenseId": "CDLA-Sharing-1.0", + "seeAlso": [ + "https://cdla.io/sharing-1-0" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CECILL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CECILL-1.0.json", + "referenceNumber": 60, + "name": "CeCILL Free Software License Agreement v1.0", + "licenseId": "CECILL-1.0", + "seeAlso": [ + "http://www.cecill.info/licences/Licence_CeCILL_V1-fr.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CECILL-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CECILL-1.1.json", + "referenceNumber": 344, + "name": "CeCILL Free Software License Agreement v1.1", + "licenseId": "CECILL-1.1", + "seeAlso": [ + "http://www.cecill.info/licences/Licence_CeCILL_V1.1-US.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CECILL-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CECILL-2.0.json", + "referenceNumber": 410, + "name": "CeCILL Free Software License Agreement v2.0", + "licenseId": "CECILL-2.0", + "seeAlso": [ + "http://www.cecill.info/licences/Licence_CeCILL_V2-en.html" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/CECILL-2.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CECILL-2.1.json", + "referenceNumber": 174, + "name": "CeCILL Free Software License Agreement v2.1", + "licenseId": "CECILL-2.1", + "seeAlso": [ + "http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.html" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/CECILL-B.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CECILL-B.json", + "referenceNumber": 256, + "name": "CeCILL-B Free Software License Agreement", + "licenseId": "CECILL-B", + "seeAlso": [ + "http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/CECILL-C.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CECILL-C.json", + "referenceNumber": 52, + "name": "CeCILL-C Free Software License Agreement", + "licenseId": "CECILL-C", + "seeAlso": [ + "http://www.cecill.info/licences/Licence_CeCILL-C_V1-en.html" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/CERN-OHL-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CERN-OHL-1.1.json", + "referenceNumber": 615, + "name": "CERN Open Hardware Licence v1.1", + "licenseId": "CERN-OHL-1.1", + "seeAlso": [ + "https://www.ohwr.org/project/licenses/wikis/cern-ohl-v1.1" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CERN-OHL-1.2.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CERN-OHL-1.2.json", + "referenceNumber": 324, + "name": "CERN Open Hardware Licence v1.2", + "licenseId": "CERN-OHL-1.2", + "seeAlso": [ + "https://www.ohwr.org/project/licenses/wikis/cern-ohl-v1.2" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CERN-OHL-P-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CERN-OHL-P-2.0.json", + "referenceNumber": 402, + "name": "CERN Open Hardware Licence Version 2 - Permissive", + "licenseId": "CERN-OHL-P-2.0", + "seeAlso": [ + "https://www.ohwr.org/project/cernohl/wikis/Documents/CERN-OHL-version-2" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/CERN-OHL-S-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CERN-OHL-S-2.0.json", + "referenceNumber": 513, + "name": "CERN Open Hardware Licence Version 2 - Strongly Reciprocal", + "licenseId": "CERN-OHL-S-2.0", + "seeAlso": [ + "https://www.ohwr.org/project/cernohl/wikis/Documents/CERN-OHL-version-2" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/CERN-OHL-W-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CERN-OHL-W-2.0.json", + "referenceNumber": 237, + "name": "CERN Open Hardware Licence Version 2 - Weakly Reciprocal", + "licenseId": "CERN-OHL-W-2.0", + "seeAlso": [ + "https://www.ohwr.org/project/cernohl/wikis/Documents/CERN-OHL-version-2" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/CFITSIO.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CFITSIO.json", + "referenceNumber": 151, + "name": "CFITSIO License", + "licenseId": "CFITSIO", + "seeAlso": [ + "https://heasarc.gsfc.nasa.gov/docs/software/fitsio/c/f_user/node9.html", + "https://heasarc.gsfc.nasa.gov/docs/software/ftools/fv/doc/license.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/check-cvs.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/check-cvs.json", + "referenceNumber": 334, + "name": "check-cvs License", + "licenseId": "check-cvs", + "seeAlso": [ + "http://cvs.savannah.gnu.org/viewvc/cvs/ccvs/contrib/check_cvs.in?revision\u003d1.1.4.3\u0026view\u003dmarkup\u0026pathrev\u003dcvs1-11-23#l2" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/checkmk.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/checkmk.json", + "referenceNumber": 111, + "name": "Checkmk License", + "licenseId": "checkmk", + "seeAlso": [ + "https://github.com/libcheck/check/blob/master/checkmk/checkmk.in" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/ClArtistic.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/ClArtistic.json", + "referenceNumber": 441, + "name": "Clarified Artistic License", + "licenseId": "ClArtistic", + "seeAlso": [ + "http://gianluca.dellavedova.org/2011/01/03/clarified-artistic-license/", + "http://www.ncftp.com/ncftp/doc/LICENSE.txt" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/Clips.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Clips.json", + "referenceNumber": 167, + "name": "Clips License", + "licenseId": "Clips", + "seeAlso": [ + "https://github.com/DrItanium/maya/blob/master/LICENSE.CLIPS" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CMU-Mach.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CMU-Mach.json", + "referenceNumber": 492, + "name": "CMU Mach License", + "licenseId": "CMU-Mach", + "seeAlso": [ + "https://www.cs.cmu.edu/~410/licenses.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CMU-Mach-nodoc.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CMU-Mach-nodoc.json", + "referenceNumber": 318, + "name": "CMU Mach - no notices-in-documentation variant", + "licenseId": "CMU-Mach-nodoc", + "seeAlso": [ + "https://github.com/krb5/krb5/blob/krb5-1.21.2-final/NOTICE#L718-L728", + "https://web.mit.edu/kerberos/krb5-1.21/doc/mitK5license.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CNRI-Jython.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CNRI-Jython.json", + "referenceNumber": 203, + "name": "CNRI Jython License", + "licenseId": "CNRI-Jython", + "seeAlso": [ + "http://www.jython.org/license.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CNRI-Python.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CNRI-Python.json", + "referenceNumber": 218, + "name": "CNRI Python License", + "licenseId": "CNRI-Python", + "seeAlso": [ + "https://opensource.org/licenses/CNRI-Python" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/CNRI-Python-GPL-Compatible.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CNRI-Python-GPL-Compatible.json", + "referenceNumber": 391, + "name": "CNRI Python Open Source GPL Compatible License Agreement", + "licenseId": "CNRI-Python-GPL-Compatible", + "seeAlso": [ + "http://www.python.org/download/releases/1.6.1/download_win/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/COIL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/COIL-1.0.json", + "referenceNumber": 375, + "name": "Copyfree Open Innovation License", + "licenseId": "COIL-1.0", + "seeAlso": [ + "https://coil.apotheon.org/plaintext/01.0.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Community-Spec-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Community-Spec-1.0.json", + "referenceNumber": 357, + "name": "Community Specification License 1.0", + "licenseId": "Community-Spec-1.0", + "seeAlso": [ + "https://github.com/CommunitySpecification/1.0/blob/master/1._Community_Specification_License-v1.md" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Condor-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Condor-1.1.json", + "referenceNumber": 385, + "name": "Condor Public License v1.1", + "licenseId": "Condor-1.1", + "seeAlso": [ + "http://research.cs.wisc.edu/condor/license.html#condor", + "http://web.archive.org/web/20111123062036/http://research.cs.wisc.edu/condor/license.html#condor" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/copyleft-next-0.3.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/copyleft-next-0.3.0.json", + "referenceNumber": 340, + "name": "copyleft-next 0.3.0", + "licenseId": "copyleft-next-0.3.0", + "seeAlso": [ + "https://github.com/copyleft-next/copyleft-next/blob/master/Releases/copyleft-next-0.3.0" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/copyleft-next-0.3.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/copyleft-next-0.3.1.json", + "referenceNumber": 553, + "name": "copyleft-next 0.3.1", + "licenseId": "copyleft-next-0.3.1", + "seeAlso": [ + "https://github.com/copyleft-next/copyleft-next/blob/master/Releases/copyleft-next-0.3.1" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Cornell-Lossless-JPEG.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Cornell-Lossless-JPEG.json", + "referenceNumber": 542, + "name": "Cornell Lossless JPEG License", + "licenseId": "Cornell-Lossless-JPEG", + "seeAlso": [ + "https://android.googlesource.com/platform/external/dng_sdk/+/refs/heads/master/source/dng_lossless_jpeg.cpp#16", + "https://www.mssl.ucl.ac.uk/~mcrw/src/20050920/proto.h", + "https://gitlab.freedesktop.org/libopenraw/libopenraw/blob/master/lib/ljpegdecompressor.cpp#L32" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CPAL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CPAL-1.0.json", + "referenceNumber": 223, + "name": "Common Public Attribution License 1.0", + "licenseId": "CPAL-1.0", + "seeAlso": [ + "https://opensource.org/licenses/CPAL-1.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/CPL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CPL-1.0.json", + "referenceNumber": 181, + "name": "Common Public License 1.0", + "licenseId": "CPL-1.0", + "seeAlso": [ + "https://opensource.org/licenses/CPL-1.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/CPOL-1.02.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CPOL-1.02.json", + "referenceNumber": 176, + "name": "Code Project Open License 1.02", + "licenseId": "CPOL-1.02", + "seeAlso": [ + "http://www.codeproject.com/info/cpol10.aspx" + ], + "isOsiApproved": false, + "isFsfLibre": false + }, + { + "reference": "https://spdx.org/licenses/Cronyx.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Cronyx.json", + "referenceNumber": 303, + "name": "Cronyx License", + "licenseId": "Cronyx", + "seeAlso": [ + "https://gitlab.freedesktop.org/xorg/font/alias/-/blob/master/COPYING", + "https://gitlab.freedesktop.org/xorg/font/cronyx-cyrillic/-/blob/master/COPYING", + "https://gitlab.freedesktop.org/xorg/font/misc-cyrillic/-/blob/master/COPYING", + "https://gitlab.freedesktop.org/xorg/font/screen-cyrillic/-/blob/master/COPYING" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Crossword.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Crossword.json", + "referenceNumber": 304, + "name": "Crossword License", + "licenseId": "Crossword", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Crossword" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CrystalStacker.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CrystalStacker.json", + "referenceNumber": 522, + "name": "CrystalStacker License", + "licenseId": "CrystalStacker", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing:CrystalStacker?rd\u003dLicensing/CrystalStacker" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CUA-OPL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CUA-OPL-1.0.json", + "referenceNumber": 313, + "name": "CUA Office Public License v1.0", + "licenseId": "CUA-OPL-1.0", + "seeAlso": [ + "https://opensource.org/licenses/CUA-OPL-1.0" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/Cube.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Cube.json", + "referenceNumber": 126, + "name": "Cube License", + "licenseId": "Cube", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Cube" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/curl.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/curl.json", + "referenceNumber": 429, + "name": "curl License", + "licenseId": "curl", + "seeAlso": [ + "https://github.com/bagder/curl/blob/master/COPYING" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/D-FSL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/D-FSL-1.0.json", + "referenceNumber": 31, + "name": "Deutsche Freie Software Lizenz", + "licenseId": "D-FSL-1.0", + "seeAlso": [ + "http://www.dipp.nrw.de/d-fsl/lizenzen/", + "http://www.dipp.nrw.de/d-fsl/index_html/lizenzen/de/D-FSL-1_0_de.txt", + "http://www.dipp.nrw.de/d-fsl/index_html/lizenzen/en/D-FSL-1_0_en.txt", + "https://www.hbz-nrw.de/produkte/open-access/lizenzen/dfsl", + "https://www.hbz-nrw.de/produkte/open-access/lizenzen/dfsl/deutsche-freie-software-lizenz", + "https://www.hbz-nrw.de/produkte/open-access/lizenzen/dfsl/german-free-software-license", + "https://www.hbz-nrw.de/produkte/open-access/lizenzen/dfsl/D-FSL-1_0_de.txt/at_download/file", + "https://www.hbz-nrw.de/produkte/open-access/lizenzen/dfsl/D-FSL-1_0_en.txt/at_download/file" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/DEC-3-Clause.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/DEC-3-Clause.json", + "referenceNumber": 620, + "name": "DEC 3-Clause License", + "licenseId": "DEC-3-Clause", + "seeAlso": [ + "https://gitlab.freedesktop.org/xorg/xserver/-/blob/master/COPYING?ref_type\u003dheads#L239" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/diffmark.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/diffmark.json", + "referenceNumber": 365, + "name": "diffmark license", + "licenseId": "diffmark", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/diffmark" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/DL-DE-BY-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/DL-DE-BY-2.0.json", + "referenceNumber": 363, + "name": "Data licence Germany – attribution – version 2.0", + "licenseId": "DL-DE-BY-2.0", + "seeAlso": [ + "https://www.govdata.de/dl-de/by-2-0" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/DL-DE-ZERO-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/DL-DE-ZERO-2.0.json", + "referenceNumber": 497, + "name": "Data licence Germany – zero – version 2.0", + "licenseId": "DL-DE-ZERO-2.0", + "seeAlso": [ + "https://www.govdata.de/dl-de/zero-2-0" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/DOC.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/DOC.json", + "referenceNumber": 82, + "name": "DOC License", + "licenseId": "DOC", + "seeAlso": [ + "http://www.cs.wustl.edu/~schmidt/ACE-copying.html", + "https://www.dre.vanderbilt.edu/~schmidt/ACE-copying.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Dotseqn.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Dotseqn.json", + "referenceNumber": 148, + "name": "Dotseqn License", + "licenseId": "Dotseqn", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Dotseqn" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/DRL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/DRL-1.0.json", + "referenceNumber": 623, + "name": "Detection Rule License 1.0", + "licenseId": "DRL-1.0", + "seeAlso": [ + "https://github.com/Neo23x0/sigma/blob/master/LICENSE.Detection.Rules.md" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/DRL-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/DRL-1.1.json", + "referenceNumber": 259, + "name": "Detection Rule License 1.1", + "licenseId": "DRL-1.1", + "seeAlso": [ + "https://github.com/SigmaHQ/Detection-Rule-License/blob/6ec7fbde6101d101b5b5d1fcb8f9b69fbc76c04a/LICENSE.Detection.Rules.md" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/DSDP.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/DSDP.json", + "referenceNumber": 549, + "name": "DSDP License", + "licenseId": "DSDP", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/DSDP" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/dtoa.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/dtoa.json", + "referenceNumber": 74, + "name": "David M. Gay dtoa License", + "licenseId": "dtoa", + "seeAlso": [ + "https://github.com/SWI-Prolog/swipl-devel/blob/master/src/os/dtoa.c" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/dvipdfm.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/dvipdfm.json", + "referenceNumber": 309, + "name": "dvipdfm License", + "licenseId": "dvipdfm", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/dvipdfm" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/ECL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/ECL-1.0.json", + "referenceNumber": 40, + "name": "Educational Community License v1.0", + "licenseId": "ECL-1.0", + "seeAlso": [ + "https://opensource.org/licenses/ECL-1.0" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/ECL-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/ECL-2.0.json", + "referenceNumber": 224, + "name": "Educational Community License v2.0", + "licenseId": "ECL-2.0", + "seeAlso": [ + "https://opensource.org/licenses/ECL-2.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/eCos-2.0.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/eCos-2.0.json", + "referenceNumber": 173, + "name": "eCos license version 2.0", + "licenseId": "eCos-2.0", + "seeAlso": [ + "https://www.gnu.org/licenses/ecos-license.html" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/EFL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/EFL-1.0.json", + "referenceNumber": 329, + "name": "Eiffel Forum License v1.0", + "licenseId": "EFL-1.0", + "seeAlso": [ + "http://www.eiffel-nice.org/license/forum.txt", + "https://opensource.org/licenses/EFL-1.0" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/EFL-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/EFL-2.0.json", + "referenceNumber": 535, + "name": "Eiffel Forum License v2.0", + "licenseId": "EFL-2.0", + "seeAlso": [ + "http://www.eiffel-nice.org/license/eiffel-forum-license-2.html", + "https://opensource.org/licenses/EFL-2.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/eGenix.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/eGenix.json", + "referenceNumber": 102, + "name": "eGenix.com Public License 1.1.0", + "licenseId": "eGenix", + "seeAlso": [ + "http://www.egenix.com/products/eGenix.com-Public-License-1.1.0.pdf", + "https://fedoraproject.org/wiki/Licensing/eGenix.com_Public_License_1.1.0" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Elastic-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Elastic-2.0.json", + "referenceNumber": 21, + "name": "Elastic License 2.0", + "licenseId": "Elastic-2.0", + "seeAlso": [ + "https://www.elastic.co/licensing/elastic-license", + "https://github.com/elastic/elasticsearch/blob/master/licenses/ELASTIC-LICENSE-2.0.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Entessa.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Entessa.json", + "referenceNumber": 87, + "name": "Entessa Public License v1.0", + "licenseId": "Entessa", + "seeAlso": [ + "https://opensource.org/licenses/Entessa" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/EPICS.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/EPICS.json", + "referenceNumber": 523, + "name": "EPICS Open License", + "licenseId": "EPICS", + "seeAlso": [ + "https://epics.anl.gov/license/open.php" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/EPL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/EPL-1.0.json", + "referenceNumber": 229, + "name": "Eclipse Public License 1.0", + "licenseId": "EPL-1.0", + "seeAlso": [ + "http://www.eclipse.org/legal/epl-v10.html", + "https://opensource.org/licenses/EPL-1.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/EPL-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/EPL-2.0.json", + "referenceNumber": 143, + "name": "Eclipse Public License 2.0", + "licenseId": "EPL-2.0", + "seeAlso": [ + "https://www.eclipse.org/legal/epl-2.0", + "https://www.opensource.org/licenses/EPL-2.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/ErlPL-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/ErlPL-1.1.json", + "referenceNumber": 592, + "name": "Erlang Public License v1.1", + "licenseId": "ErlPL-1.1", + "seeAlso": [ + "http://www.erlang.org/EPLICENSE" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/etalab-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/etalab-2.0.json", + "referenceNumber": 299, + "name": "Etalab Open License 2.0", + "licenseId": "etalab-2.0", + "seeAlso": [ + "https://github.com/DISIC/politique-de-contribution-open-source/blob/master/LICENSE.pdf", + "https://raw.githubusercontent.com/DISIC/politique-de-contribution-open-source/master/LICENSE" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/EUDatagrid.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/EUDatagrid.json", + "referenceNumber": 191, + "name": "EU DataGrid Software License", + "licenseId": "EUDatagrid", + "seeAlso": [ + "http://eu-datagrid.web.cern.ch/eu-datagrid/license.html", + "https://opensource.org/licenses/EUDatagrid" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/EUPL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/EUPL-1.0.json", + "referenceNumber": 392, + "name": "European Union Public License 1.0", + "licenseId": "EUPL-1.0", + "seeAlso": [ + "http://ec.europa.eu/idabc/en/document/7330.html", + "http://ec.europa.eu/idabc/servlets/Doc027f.pdf?id\u003d31096" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/EUPL-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/EUPL-1.1.json", + "referenceNumber": 26, + "name": "European Union Public License 1.1", + "licenseId": "EUPL-1.1", + "seeAlso": [ + "https://joinup.ec.europa.eu/software/page/eupl/licence-eupl", + "https://joinup.ec.europa.eu/sites/default/files/custom-page/attachment/eupl1.1.-licence-en_0.pdf", + "https://opensource.org/licenses/EUPL-1.1" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/EUPL-1.2.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/EUPL-1.2.json", + "referenceNumber": 34, + "name": "European Union Public License 1.2", + "licenseId": "EUPL-1.2", + "seeAlso": [ + "https://joinup.ec.europa.eu/page/eupl-text-11-12", + "https://joinup.ec.europa.eu/sites/default/files/custom-page/attachment/eupl_v1.2_en.pdf", + "https://joinup.ec.europa.eu/sites/default/files/custom-page/attachment/2020-03/EUPL-1.2%20EN.txt", + "https://joinup.ec.europa.eu/sites/default/files/inline-files/EUPL%20v1_2%20EN(1).txt", + "http://eur-lex.europa.eu/legal-content/EN/TXT/HTML/?uri\u003dCELEX:32017D0863", + "https://opensource.org/licenses/EUPL-1.2" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/Eurosym.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Eurosym.json", + "referenceNumber": 584, + "name": "Eurosym License", + "licenseId": "Eurosym", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Eurosym" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Fair.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Fair.json", + "referenceNumber": 93, + "name": "Fair License", + "licenseId": "Fair", + "seeAlso": [ + "https://web.archive.org/web/20150926120323/http://fairlicense.org/", + "https://opensource.org/licenses/Fair" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/FBM.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/FBM.json", + "referenceNumber": 227, + "name": "Fuzzy Bitmap License", + "licenseId": "FBM", + "seeAlso": [ + "https://github.com/SWI-Prolog/packages-xpce/blob/161a40cd82004f731ba48024f9d30af388a7edf5/src/img/gifwrite.c#L21-L26" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/FDK-AAC.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/FDK-AAC.json", + "referenceNumber": 323, + "name": "Fraunhofer FDK AAC Codec Library", + "licenseId": "FDK-AAC", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/FDK-AAC", + "https://directory.fsf.org/wiki/License:Fdk" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Ferguson-Twofish.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Ferguson-Twofish.json", + "referenceNumber": 447, + "name": "Ferguson Twofish License", + "licenseId": "Ferguson-Twofish", + "seeAlso": [ + "https://github.com/wernerd/ZRTPCPP/blob/6b3cd8e6783642292bad0c21e3e5e5ce45ff3e03/cryptcommon/twofish.c#L113C3-L127" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Frameworx-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Frameworx-1.0.json", + "referenceNumber": 152, + "name": "Frameworx Open License 1.0", + "licenseId": "Frameworx-1.0", + "seeAlso": [ + "https://opensource.org/licenses/Frameworx-1.0" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/FreeBSD-DOC.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/FreeBSD-DOC.json", + "referenceNumber": 73, + "name": "FreeBSD Documentation License", + "licenseId": "FreeBSD-DOC", + "seeAlso": [ + "https://www.freebsd.org/copyright/freebsd-doc-license/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/FreeImage.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/FreeImage.json", + "referenceNumber": 131, + "name": "FreeImage Public License v1.0", + "licenseId": "FreeImage", + "seeAlso": [ + "http://freeimage.sourceforge.net/freeimage-license.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/FSFAP.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/FSFAP.json", + "referenceNumber": 273, + "name": "FSF All Permissive License", + "licenseId": "FSFAP", + "seeAlso": [ + "https://www.gnu.org/prep/maintain/html_node/License-Notices-for-Other-Files.html" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/FSFAP-no-warranty-disclaimer.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/FSFAP-no-warranty-disclaimer.json", + "referenceNumber": 67, + "name": "FSF All Permissive License (without Warranty)", + "licenseId": "FSFAP-no-warranty-disclaimer", + "seeAlso": [ + "https://git.savannah.gnu.org/cgit/wget.git/tree/util/trunc.c?h\u003dv1.21.3\u0026id\u003d40747a11e44ced5a8ac628a41f879ced3e2ebce9#n6" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/FSFUL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/FSFUL.json", + "referenceNumber": 577, + "name": "FSF Unlimited License", + "licenseId": "FSFUL", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/FSFULLR.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/FSFULLR.json", + "referenceNumber": 96, + "name": "FSF Unlimited License (with License Retention)", + "licenseId": "FSFULLR", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention_Variant" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/FSFULLRWD.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/FSFULLRWD.json", + "referenceNumber": 456, + "name": "FSF Unlimited License (With License Retention and Warranty Disclaimer)", + "licenseId": "FSFULLRWD", + "seeAlso": [ + "https://lists.gnu.org/archive/html/autoconf/2012-04/msg00061.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/FTL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/FTL.json", + "referenceNumber": 519, + "name": "Freetype Project License", + "licenseId": "FTL", + "seeAlso": [ + "http://freetype.fis.uniroma2.it/FTL.TXT", + "http://git.savannah.gnu.org/cgit/freetype/freetype2.git/tree/docs/FTL.TXT", + "http://gitlab.freedesktop.org/freetype/freetype/-/raw/master/docs/FTL.TXT" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/Furuseth.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Furuseth.json", + "referenceNumber": 604, + "name": "Furuseth License", + "licenseId": "Furuseth", + "seeAlso": [ + "https://git.openldap.org/openldap/openldap/-/blob/master/COPYRIGHT?ref_type\u003dheads#L39-51" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/fwlw.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/fwlw.json", + "referenceNumber": 258, + "name": "fwlw License", + "licenseId": "fwlw", + "seeAlso": [ + "https://mirrors.nic.cz/tex-archive/macros/latex/contrib/fwlw/README" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GCR-docs.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GCR-docs.json", + "referenceNumber": 155, + "name": "Gnome GCR Documentation License", + "licenseId": "GCR-docs", + "seeAlso": [ + "https://github.com/GNOME/gcr/blob/master/docs/COPYING" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GD.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GD.json", + "referenceNumber": 92, + "name": "GD License", + "licenseId": "GD", + "seeAlso": [ + "https://libgd.github.io/manuals/2.3.0/files/license-txt.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GFDL-1.1.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/GFDL-1.1.json", + "referenceNumber": 195, + "name": "GNU Free Documentation License v1.1", + "licenseId": "GFDL-1.1", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/GFDL-1.1-invariants-only.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GFDL-1.1-invariants-only.json", + "referenceNumber": 346, + "name": "GNU Free Documentation License v1.1 only - invariants", + "licenseId": "GFDL-1.1-invariants-only", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GFDL-1.1-invariants-or-later.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GFDL-1.1-invariants-or-later.json", + "referenceNumber": 269, + "name": "GNU Free Documentation License v1.1 or later - invariants", + "licenseId": "GFDL-1.1-invariants-or-later", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GFDL-1.1-no-invariants-only.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GFDL-1.1-no-invariants-only.json", + "referenceNumber": 6, + "name": "GNU Free Documentation License v1.1 only - no invariants", + "licenseId": "GFDL-1.1-no-invariants-only", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GFDL-1.1-no-invariants-or-later.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GFDL-1.1-no-invariants-or-later.json", + "referenceNumber": 7, + "name": "GNU Free Documentation License v1.1 or later - no invariants", + "licenseId": "GFDL-1.1-no-invariants-or-later", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GFDL-1.1-only.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GFDL-1.1-only.json", + "referenceNumber": 264, + "name": "GNU Free Documentation License v1.1 only", + "licenseId": "GFDL-1.1-only", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/GFDL-1.1-or-later.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GFDL-1.1-or-later.json", + "referenceNumber": 196, + "name": "GNU Free Documentation License v1.1 or later", + "licenseId": "GFDL-1.1-or-later", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/GFDL-1.2.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/GFDL-1.2.json", + "referenceNumber": 97, + "name": "GNU Free Documentation License v1.2", + "licenseId": "GFDL-1.2", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/GFDL-1.2-invariants-only.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GFDL-1.2-invariants-only.json", + "referenceNumber": 611, + "name": "GNU Free Documentation License v1.2 only - invariants", + "licenseId": "GFDL-1.2-invariants-only", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GFDL-1.2-invariants-or-later.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GFDL-1.2-invariants-or-later.json", + "referenceNumber": 464, + "name": "GNU Free Documentation License v1.2 or later - invariants", + "licenseId": "GFDL-1.2-invariants-or-later", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GFDL-1.2-no-invariants-only.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GFDL-1.2-no-invariants-only.json", + "referenceNumber": 75, + "name": "GNU Free Documentation License v1.2 only - no invariants", + "licenseId": "GFDL-1.2-no-invariants-only", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GFDL-1.2-no-invariants-or-later.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GFDL-1.2-no-invariants-or-later.json", + "referenceNumber": 14, + "name": "GNU Free Documentation License v1.2 or later - no invariants", + "licenseId": "GFDL-1.2-no-invariants-or-later", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GFDL-1.2-only.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GFDL-1.2-only.json", + "referenceNumber": 322, + "name": "GNU Free Documentation License v1.2 only", + "licenseId": "GFDL-1.2-only", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/GFDL-1.2-or-later.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GFDL-1.2-or-later.json", + "referenceNumber": 594, + "name": "GNU Free Documentation License v1.2 or later", + "licenseId": "GFDL-1.2-or-later", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/GFDL-1.3.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/GFDL-1.3.json", + "referenceNumber": 538, + "name": "GNU Free Documentation License v1.3", + "licenseId": "GFDL-1.3", + "seeAlso": [ + "https://www.gnu.org/licenses/fdl-1.3.txt" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/GFDL-1.3-invariants-only.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GFDL-1.3-invariants-only.json", + "referenceNumber": 571, + "name": "GNU Free Documentation License v1.3 only - invariants", + "licenseId": "GFDL-1.3-invariants-only", + "seeAlso": [ + "https://www.gnu.org/licenses/fdl-1.3.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GFDL-1.3-invariants-or-later.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GFDL-1.3-invariants-or-later.json", + "referenceNumber": 300, + "name": "GNU Free Documentation License v1.3 or later - invariants", + "licenseId": "GFDL-1.3-invariants-or-later", + "seeAlso": [ + "https://www.gnu.org/licenses/fdl-1.3.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GFDL-1.3-no-invariants-only.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GFDL-1.3-no-invariants-only.json", + "referenceNumber": 101, + "name": "GNU Free Documentation License v1.3 only - no invariants", + "licenseId": "GFDL-1.3-no-invariants-only", + "seeAlso": [ + "https://www.gnu.org/licenses/fdl-1.3.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GFDL-1.3-no-invariants-or-later.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GFDL-1.3-no-invariants-or-later.json", + "referenceNumber": 330, + "name": "GNU Free Documentation License v1.3 or later - no invariants", + "licenseId": "GFDL-1.3-no-invariants-or-later", + "seeAlso": [ + "https://www.gnu.org/licenses/fdl-1.3.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GFDL-1.3-only.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GFDL-1.3-only.json", + "referenceNumber": 457, + "name": "GNU Free Documentation License v1.3 only", + "licenseId": "GFDL-1.3-only", + "seeAlso": [ + "https://www.gnu.org/licenses/fdl-1.3.txt" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/GFDL-1.3-or-later.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GFDL-1.3-or-later.json", + "referenceNumber": 472, + "name": "GNU Free Documentation License v1.3 or later", + "licenseId": "GFDL-1.3-or-later", + "seeAlso": [ + "https://www.gnu.org/licenses/fdl-1.3.txt" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/Giftware.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Giftware.json", + "referenceNumber": 449, + "name": "Giftware License", + "licenseId": "Giftware", + "seeAlso": [ + "http://liballeg.org/license.html#allegro-4-the-giftware-license" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GL2PS.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GL2PS.json", + "referenceNumber": 338, + "name": "GL2PS License", + "licenseId": "GL2PS", + "seeAlso": [ + "http://www.geuz.org/gl2ps/COPYING.GL2PS" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Glide.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Glide.json", + "referenceNumber": 215, + "name": "3dfx Glide License", + "licenseId": "Glide", + "seeAlso": [ + "http://www.users.on.net/~triforce/glidexp/COPYING.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Glulxe.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Glulxe.json", + "referenceNumber": 289, + "name": "Glulxe License", + "licenseId": "Glulxe", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Glulxe" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GLWTPL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GLWTPL.json", + "referenceNumber": 576, + "name": "Good Luck With That Public License", + "licenseId": "GLWTPL", + "seeAlso": [ + "https://github.com/me-shaon/GLWTPL/commit/da5f6bc734095efbacb442c0b31e33a65b9d6e85" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/gnuplot.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/gnuplot.json", + "referenceNumber": 268, + "name": "gnuplot License", + "licenseId": "gnuplot", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Gnuplot" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/GPL-1.0.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/GPL-1.0.json", + "referenceNumber": 601, + "name": "GNU General Public License v1.0 only", + "licenseId": "GPL-1.0", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GPL-1.0+.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/GPL-1.0+.json", + "referenceNumber": 442, + "name": "GNU General Public License v1.0 or later", + "licenseId": "GPL-1.0+", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GPL-1.0-only.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GPL-1.0-only.json", + "referenceNumber": 527, + "name": "GNU General Public License v1.0 only", + "licenseId": "GPL-1.0-only", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GPL-1.0-or-later.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GPL-1.0-or-later.json", + "referenceNumber": 0, + "name": "GNU General Public License v1.0 or later", + "licenseId": "GPL-1.0-or-later", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GPL-2.0.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/GPL-2.0.json", + "referenceNumber": 473, + "name": "GNU General Public License v2.0 only", + "licenseId": "GPL-2.0", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html", + "https://opensource.org/licenses/GPL-2.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/GPL-2.0+.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/GPL-2.0+.json", + "referenceNumber": 502, + "name": "GNU General Public License v2.0 or later", + "licenseId": "GPL-2.0+", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html", + "https://opensource.org/licenses/GPL-2.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/GPL-2.0-only.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GPL-2.0-only.json", + "referenceNumber": 404, + "name": "GNU General Public License v2.0 only", + "licenseId": "GPL-2.0-only", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html", + "https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt", + "https://opensource.org/licenses/GPL-2.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/GPL-2.0-or-later.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GPL-2.0-or-later.json", + "referenceNumber": 389, + "name": "GNU General Public License v2.0 or later", + "licenseId": "GPL-2.0-or-later", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html", + "https://opensource.org/licenses/GPL-2.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/GPL-2.0-with-autoconf-exception.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/GPL-2.0-with-autoconf-exception.json", + "referenceNumber": 333, + "name": "GNU General Public License v2.0 w/Autoconf exception", + "licenseId": "GPL-2.0-with-autoconf-exception", + "seeAlso": [ + "http://ac-archive.sourceforge.net/doc/copyright.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GPL-2.0-with-bison-exception.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/GPL-2.0-with-bison-exception.json", + "referenceNumber": 117, + "name": "GNU General Public License v2.0 w/Bison exception", + "licenseId": "GPL-2.0-with-bison-exception", + "seeAlso": [ + "http://git.savannah.gnu.org/cgit/bison.git/tree/data/yacc.c?id\u003d193d7c7054ba7197b0789e14965b739162319b5e#n141" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GPL-2.0-with-classpath-exception.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/GPL-2.0-with-classpath-exception.json", + "referenceNumber": 144, + "name": "GNU General Public License v2.0 w/Classpath exception", + "licenseId": "GPL-2.0-with-classpath-exception", + "seeAlso": [ + "https://www.gnu.org/software/classpath/license.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GPL-2.0-with-font-exception.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/GPL-2.0-with-font-exception.json", + "referenceNumber": 286, + "name": "GNU General Public License v2.0 w/Font exception", + "licenseId": "GPL-2.0-with-font-exception", + "seeAlso": [ + "https://www.gnu.org/licenses/gpl-faq.html#FontException" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GPL-2.0-with-GCC-exception.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/GPL-2.0-with-GCC-exception.json", + "referenceNumber": 54, + "name": "GNU General Public License v2.0 w/GCC Runtime Library exception", + "licenseId": "GPL-2.0-with-GCC-exception", + "seeAlso": [ + "https://gcc.gnu.org/git/?p\u003dgcc.git;a\u003dblob;f\u003dgcc/libgcc1.c;h\u003d762f5143fc6eed57b6797c82710f3538aa52b40b;hb\u003dcb143a3ce4fb417c68f5fa2691a1b1b1053dfba9#l10" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GPL-3.0.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/GPL-3.0.json", + "referenceNumber": 233, + "name": "GNU General Public License v3.0 only", + "licenseId": "GPL-3.0", + "seeAlso": [ + "https://www.gnu.org/licenses/gpl-3.0-standalone.html", + "https://opensource.org/licenses/GPL-3.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/GPL-3.0+.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/GPL-3.0+.json", + "referenceNumber": 201, + "name": "GNU General Public License v3.0 or later", + "licenseId": "GPL-3.0+", + "seeAlso": [ + "https://www.gnu.org/licenses/gpl-3.0-standalone.html", + "https://opensource.org/licenses/GPL-3.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/GPL-3.0-only.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GPL-3.0-only.json", + "referenceNumber": 339, + "name": "GNU General Public License v3.0 only", + "licenseId": "GPL-3.0-only", + "seeAlso": [ + "https://www.gnu.org/licenses/gpl-3.0-standalone.html", + "https://opensource.org/licenses/GPL-3.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/GPL-3.0-or-later.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GPL-3.0-or-later.json", + "referenceNumber": 109, + "name": "GNU General Public License v3.0 or later", + "licenseId": "GPL-3.0-or-later", + "seeAlso": [ + "https://www.gnu.org/licenses/gpl-3.0-standalone.html", + "https://opensource.org/licenses/GPL-3.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/GPL-3.0-with-autoconf-exception.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/GPL-3.0-with-autoconf-exception.json", + "referenceNumber": 121, + "name": "GNU General Public License v3.0 w/Autoconf exception", + "licenseId": "GPL-3.0-with-autoconf-exception", + "seeAlso": [ + "https://www.gnu.org/licenses/autoconf-exception-3.0.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GPL-3.0-with-GCC-exception.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/GPL-3.0-with-GCC-exception.json", + "referenceNumber": 331, + "name": "GNU General Public License v3.0 w/GCC Runtime Library exception", + "licenseId": "GPL-3.0-with-GCC-exception", + "seeAlso": [ + "https://www.gnu.org/licenses/gcc-exception-3.1.html" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/Graphics-Gems.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Graphics-Gems.json", + "referenceNumber": 68, + "name": "Graphics Gems License", + "licenseId": "Graphics-Gems", + "seeAlso": [ + "https://github.com/erich666/GraphicsGems/blob/master/LICENSE.md" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/gSOAP-1.3b.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/gSOAP-1.3b.json", + "referenceNumber": 633, + "name": "gSOAP Public License v1.3b", + "licenseId": "gSOAP-1.3b", + "seeAlso": [ + "http://www.cs.fsu.edu/~engelen/license.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/gtkbook.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/gtkbook.json", + "referenceNumber": 341, + "name": "gtkbook License", + "licenseId": "gtkbook", + "seeAlso": [ + "https://github.com/slogan621/gtkbook", + "https://github.com/oetiker/rrdtool-1.x/blob/master/src/plbasename.c#L8-L11" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HaskellReport.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HaskellReport.json", + "referenceNumber": 138, + "name": "Haskell Language Report License", + "licenseId": "HaskellReport", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Haskell_Language_Report_License" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/hdparm.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/hdparm.json", + "referenceNumber": 467, + "name": "hdparm License", + "licenseId": "hdparm", + "seeAlso": [ + "https://github.com/Distrotech/hdparm/blob/4517550db29a91420fb2b020349523b1b4512df2/LICENSE.TXT" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Hippocratic-2.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Hippocratic-2.1.json", + "referenceNumber": 609, + "name": "Hippocratic License 2.1", + "licenseId": "Hippocratic-2.1", + "seeAlso": [ + "https://firstdonoharm.dev/version/2/1/license.html", + "https://github.com/EthicalSource/hippocratic-license/blob/58c0e646d64ff6fbee275bfe2b9492f914e3ab2a/LICENSE.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HP-1986.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HP-1986.json", + "referenceNumber": 39, + "name": "Hewlett-Packard 1986 License", + "licenseId": "HP-1986", + "seeAlso": [ + "https://sourceware.org/git/?p\u003dnewlib-cygwin.git;a\u003dblob;f\u003dnewlib/libc/machine/hppa/memchr.S;h\u003d1cca3e5e8867aa4bffef1f75a5c1bba25c0c441e;hb\u003dHEAD#l2" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HP-1989.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HP-1989.json", + "referenceNumber": 578, + "name": "Hewlett-Packard 1989 License", + "licenseId": "HP-1989", + "seeAlso": [ + "https://github.com/bleargh45/Data-UUID/blob/master/LICENSE" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HPND.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HPND.json", + "referenceNumber": 624, + "name": "Historical Permission Notice and Disclaimer", + "licenseId": "HPND", + "seeAlso": [ + "https://opensource.org/licenses/HPND", + "http://lists.opensource.org/pipermail/license-discuss_lists.opensource.org/2002-November/006304.html" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/HPND-DEC.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HPND-DEC.json", + "referenceNumber": 115, + "name": "Historical Permission Notice and Disclaimer - DEC variant", + "licenseId": "HPND-DEC", + "seeAlso": [ + "https://gitlab.freedesktop.org/xorg/app/xkbcomp/-/blob/master/COPYING?ref_type\u003dheads#L69" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HPND-doc.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HPND-doc.json", + "referenceNumber": 30, + "name": "Historical Permission Notice and Disclaimer - documentation variant", + "licenseId": "HPND-doc", + "seeAlso": [ + "https://gitlab.freedesktop.org/xorg/lib/libxext/-/blob/master/COPYING?ref_type\u003dheads#L185-197", + "https://gitlab.freedesktop.org/xorg/lib/libxtst/-/blob/master/COPYING?ref_type\u003dheads#L70-77" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HPND-doc-sell.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HPND-doc-sell.json", + "referenceNumber": 184, + "name": "Historical Permission Notice and Disclaimer - documentation sell variant", + "licenseId": "HPND-doc-sell", + "seeAlso": [ + "https://gitlab.freedesktop.org/xorg/lib/libxtst/-/blob/master/COPYING?ref_type\u003dheads#L108-117", + "https://gitlab.freedesktop.org/xorg/lib/libxext/-/blob/master/COPYING?ref_type\u003dheads#L153-162" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HPND-export-US.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HPND-export-US.json", + "referenceNumber": 336, + "name": "HPND with US Government export control warning", + "licenseId": "HPND-export-US", + "seeAlso": [ + "https://www.kermitproject.org/ck90.html#source" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HPND-export-US-modify.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HPND-export-US-modify.json", + "referenceNumber": 261, + "name": "HPND with US Government export control warning and modification rqmt", + "licenseId": "HPND-export-US-modify", + "seeAlso": [ + "https://github.com/krb5/krb5/blob/krb5-1.21.2-final/NOTICE#L1157-L1182", + "https://github.com/pythongssapi/k5test/blob/v0.10.3/K5TEST-LICENSE.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HPND-Fenneberg-Livingston.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HPND-Fenneberg-Livingston.json", + "referenceNumber": 305, + "name": "Historical Permission Notice and Disclaimer - Fenneberg-Livingston variant", + "licenseId": "HPND-Fenneberg-Livingston", + "seeAlso": [ + "https://github.com/FreeRADIUS/freeradius-client/blob/master/COPYRIGHT#L32", + "https://github.com/radcli/radcli/blob/master/COPYRIGHT#L34" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HPND-INRIA-IMAG.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HPND-INRIA-IMAG.json", + "referenceNumber": 10, + "name": "Historical Permission Notice and Disclaimer - INRIA-IMAG variant", + "licenseId": "HPND-INRIA-IMAG", + "seeAlso": [ + "https://github.com/ppp-project/ppp/blob/master/pppd/ipv6cp.c#L75-L83" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HPND-Kevlin-Henney.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HPND-Kevlin-Henney.json", + "referenceNumber": 462, + "name": "Historical Permission Notice and Disclaimer - Kevlin Henney variant", + "licenseId": "HPND-Kevlin-Henney", + "seeAlso": [ + "https://github.com/mruby/mruby/blob/83d12f8d52522cdb7c8cc46fad34821359f453e6/mrbgems/mruby-dir/src/Win/dirent.c#L127-L140" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HPND-Markus-Kuhn.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HPND-Markus-Kuhn.json", + "referenceNumber": 367, + "name": "Historical Permission Notice and Disclaimer - Markus Kuhn variant", + "licenseId": "HPND-Markus-Kuhn", + "seeAlso": [ + "https://www.cl.cam.ac.uk/~mgk25/ucs/wcwidth.c", + "https://sourceware.org/git/?p\u003dbinutils-gdb.git;a\u003dblob;f\u003dreadline/readline/support/wcwidth.c;h\u003d0f5ec995796f4813abbcf4972aec0378ab74722a;hb\u003dHEAD#l55" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HPND-MIT-disclaimer.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HPND-MIT-disclaimer.json", + "referenceNumber": 345, + "name": "Historical Permission Notice and Disclaimer with MIT disclaimer", + "licenseId": "HPND-MIT-disclaimer", + "seeAlso": [ + "https://metacpan.org/release/NLNETLABS/Net-DNS-SEC-1.22/source/LICENSE" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HPND-Pbmplus.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HPND-Pbmplus.json", + "referenceNumber": 204, + "name": "Historical Permission Notice and Disclaimer - Pbmplus variant", + "licenseId": "HPND-Pbmplus", + "seeAlso": [ + "https://sourceforge.net/p/netpbm/code/HEAD/tree/super_stable/netpbm.c#l8" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HPND-sell-MIT-disclaimer-xserver.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HPND-sell-MIT-disclaimer-xserver.json", + "referenceNumber": 532, + "name": "Historical Permission Notice and Disclaimer - sell xserver variant with MIT disclaimer", + "licenseId": "HPND-sell-MIT-disclaimer-xserver", + "seeAlso": [ + "https://gitlab.freedesktop.org/xorg/xserver/-/blob/master/COPYING?ref_type\u003dheads#L1781" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HPND-sell-regexpr.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HPND-sell-regexpr.json", + "referenceNumber": 572, + "name": "Historical Permission Notice and Disclaimer - sell regexpr variant", + "licenseId": "HPND-sell-regexpr", + "seeAlso": [ + "https://gitlab.com/bacula-org/bacula/-/blob/Branch-11.0/bacula/LICENSE-FOSS?ref_type\u003dheads#L245" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HPND-sell-variant.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HPND-sell-variant.json", + "referenceNumber": 414, + "name": "Historical Permission Notice and Disclaimer - sell variant", + "licenseId": "HPND-sell-variant", + "seeAlso": [ + "https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/net/sunrpc/auth_gss/gss_generic_token.c?h\u003dv4.19" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HPND-sell-variant-MIT-disclaimer.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HPND-sell-variant-MIT-disclaimer.json", + "referenceNumber": 51, + "name": "HPND sell variant with MIT disclaimer", + "licenseId": "HPND-sell-variant-MIT-disclaimer", + "seeAlso": [ + "https://github.com/sigmavirus24/x11-ssh-askpass/blob/master/README" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HPND-UC.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HPND-UC.json", + "referenceNumber": 107, + "name": "Historical Permission Notice and Disclaimer - University of California variant", + "licenseId": "HPND-UC", + "seeAlso": [ + "https://core.tcl-lang.org/tk/file?name\u003dcompat/unistd.h" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HTMLTIDY.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HTMLTIDY.json", + "referenceNumber": 474, + "name": "HTML Tidy License", + "licenseId": "HTMLTIDY", + "seeAlso": [ + "https://github.com/htacg/tidy-html5/blob/next/README/LICENSE.md" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/IBM-pibs.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/IBM-pibs.json", + "referenceNumber": 417, + "name": "IBM PowerPC Initialization and Boot Software", + "licenseId": "IBM-pibs", + "seeAlso": [ + "http://git.denx.de/?p\u003du-boot.git;a\u003dblob;f\u003darch/powerpc/cpu/ppc4xx/miiphy.c;h\u003d297155fdafa064b955e53e9832de93bfb0cfb85b;hb\u003d9fab4bf4cc077c21e43941866f3f2c196f28670d" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/ICU.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/ICU.json", + "referenceNumber": 153, + "name": "ICU License", + "licenseId": "ICU", + "seeAlso": [ + "http://source.icu-project.org/repos/icu/icu/trunk/license.html" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/IEC-Code-Components-EULA.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/IEC-Code-Components-EULA.json", + "referenceNumber": 481, + "name": "IEC Code Components End-user licence agreement", + "licenseId": "IEC-Code-Components-EULA", + "seeAlso": [ + "https://www.iec.ch/webstore/custserv/pdf/CC-EULA.pdf", + "https://www.iec.ch/CCv1", + "https://www.iec.ch/copyright" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/IJG.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/IJG.json", + "referenceNumber": 90, + "name": "Independent JPEG Group License", + "licenseId": "IJG", + "seeAlso": [ + "http://dev.w3.org/cvsweb/Amaya/libjpeg/Attic/README?rev\u003d1.2" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/IJG-short.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/IJG-short.json", + "referenceNumber": 520, + "name": "Independent JPEG Group License - short", + "licenseId": "IJG-short", + "seeAlso": [ + "https://sourceforge.net/p/xmedcon/code/ci/master/tree/libs/ljpg/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/ImageMagick.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/ImageMagick.json", + "referenceNumber": 557, + "name": "ImageMagick License", + "licenseId": "ImageMagick", + "seeAlso": [ + "http://www.imagemagick.org/script/license.php" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/iMatix.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/iMatix.json", + "referenceNumber": 307, + "name": "iMatix Standard Function Library Agreement", + "licenseId": "iMatix", + "seeAlso": [ + "http://legacy.imatix.com/html/sfl/sfl4.htm#license" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/Imlib2.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Imlib2.json", + "referenceNumber": 280, + "name": "Imlib2 License", + "licenseId": "Imlib2", + "seeAlso": [ + "http://trac.enlightenment.org/e/browser/trunk/imlib2/COPYING", + "https://git.enlightenment.org/legacy/imlib2.git/tree/COPYING" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/Info-ZIP.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Info-ZIP.json", + "referenceNumber": 136, + "name": "Info-ZIP License", + "licenseId": "Info-ZIP", + "seeAlso": [ + "http://www.info-zip.org/license.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Inner-Net-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Inner-Net-2.0.json", + "referenceNumber": 277, + "name": "Inner Net License v2.0", + "licenseId": "Inner-Net-2.0", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Inner_Net_License", + "https://sourceware.org/git/?p\u003dglibc.git;a\u003dblob;f\u003dLICENSES;h\u003d530893b1dc9ea00755603c68fb36bd4fc38a7be8;hb\u003dHEAD#l207" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Intel.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Intel.json", + "referenceNumber": 187, + "name": "Intel Open Source License", + "licenseId": "Intel", + "seeAlso": [ + "https://opensource.org/licenses/Intel" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/Intel-ACPI.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Intel-ACPI.json", + "referenceNumber": 554, + "name": "Intel ACPI Software License Agreement", + "licenseId": "Intel-ACPI", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Intel_ACPI_Software_License_Agreement" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Interbase-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Interbase-1.0.json", + "referenceNumber": 632, + "name": "Interbase Public License v1.0", + "licenseId": "Interbase-1.0", + "seeAlso": [ + "https://web.archive.org/web/20060319014854/http://info.borland.com/devsupport/interbase/opensource/IPL.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/IPA.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/IPA.json", + "referenceNumber": 411, + "name": "IPA Font License", + "licenseId": "IPA", + "seeAlso": [ + "https://opensource.org/licenses/IPA" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/IPL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/IPL-1.0.json", + "referenceNumber": 508, + "name": "IBM Public License v1.0", + "licenseId": "IPL-1.0", + "seeAlso": [ + "https://opensource.org/licenses/IPL-1.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/ISC.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/ISC.json", + "referenceNumber": 483, + "name": "ISC License", + "licenseId": "ISC", + "seeAlso": [ + "https://www.isc.org/licenses/", + "https://www.isc.org/downloads/software-support-policy/isc-license/", + "https://opensource.org/licenses/ISC" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/ISC-Veillard.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/ISC-Veillard.json", + "referenceNumber": 446, + "name": "ISC Veillard variant", + "licenseId": "ISC-Veillard", + "seeAlso": [ + "https://raw.githubusercontent.com/GNOME/libxml2/4c2e7c651f6c2f0d1a74f350cbda95f7df3e7017/hash.c", + "https://github.com/GNOME/libxml2/blob/master/dict.c" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Jam.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Jam.json", + "referenceNumber": 4, + "name": "Jam License", + "licenseId": "Jam", + "seeAlso": [ + "https://www.boost.org/doc/libs/1_35_0/doc/html/jam.html", + "https://web.archive.org/web/20160330173339/https://swarm.workshop.perforce.com/files/guest/perforce_software/jam/src/README" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/JasPer-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/JasPer-2.0.json", + "referenceNumber": 593, + "name": "JasPer License", + "licenseId": "JasPer-2.0", + "seeAlso": [ + "http://www.ece.uvic.ca/~mdadams/jasper/LICENSE" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/JPL-image.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/JPL-image.json", + "referenceNumber": 379, + "name": "JPL Image Use Policy", + "licenseId": "JPL-image", + "seeAlso": [ + "https://www.jpl.nasa.gov/jpl-image-use-policy" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/JPNIC.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/JPNIC.json", + "referenceNumber": 103, + "name": "Japan Network Information Center License", + "licenseId": "JPNIC", + "seeAlso": [ + "https://gitlab.isc.org/isc-projects/bind9/blob/master/COPYRIGHT#L366" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/JSON.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/JSON.json", + "referenceNumber": 219, + "name": "JSON License", + "licenseId": "JSON", + "seeAlso": [ + "http://www.json.org/license.html" + ], + "isOsiApproved": false, + "isFsfLibre": false + }, + { + "reference": "https://spdx.org/licenses/Kastrup.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Kastrup.json", + "referenceNumber": 406, + "name": "Kastrup License", + "licenseId": "Kastrup", + "seeAlso": [ + "https://ctan.math.utah.edu/ctan/tex-archive/macros/generic/kastrup/binhex.dtx" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Kazlib.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Kazlib.json", + "referenceNumber": 257, + "name": "Kazlib License", + "licenseId": "Kazlib", + "seeAlso": [ + "http://git.savannah.gnu.org/cgit/kazlib.git/tree/except.c?id\u003d0062df360c2d17d57f6af19b0e444c51feb99036" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Knuth-CTAN.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Knuth-CTAN.json", + "referenceNumber": 514, + "name": "Knuth CTAN License", + "licenseId": "Knuth-CTAN", + "seeAlso": [ + "https://ctan.org/license/knuth" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/LAL-1.2.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LAL-1.2.json", + "referenceNumber": 621, + "name": "Licence Art Libre 1.2", + "licenseId": "LAL-1.2", + "seeAlso": [ + "http://artlibre.org/licence/lal/licence-art-libre-12/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/LAL-1.3.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LAL-1.3.json", + "referenceNumber": 182, + "name": "Licence Art Libre 1.3", + "licenseId": "LAL-1.3", + "seeAlso": [ + "https://artlibre.org/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Latex2e.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Latex2e.json", + "referenceNumber": 254, + "name": "Latex2e License", + "licenseId": "Latex2e", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Latex2e" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Latex2e-translated-notice.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Latex2e-translated-notice.json", + "referenceNumber": 435, + "name": "Latex2e with translated notice permission", + "licenseId": "Latex2e-translated-notice", + "seeAlso": [ + "https://git.savannah.gnu.org/cgit/indent.git/tree/doc/indent.texi?id\u003da74c6b4ee49397cf330b333da1042bffa60ed14f#n74" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Leptonica.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Leptonica.json", + "referenceNumber": 294, + "name": "Leptonica License", + "licenseId": "Leptonica", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Leptonica" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/LGPL-2.0.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/LGPL-2.0.json", + "referenceNumber": 452, + "name": "GNU Library General Public License v2 only", + "licenseId": "LGPL-2.0", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/LGPL-2.0+.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/LGPL-2.0+.json", + "referenceNumber": 342, + "name": "GNU Library General Public License v2 or later", + "licenseId": "LGPL-2.0+", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/LGPL-2.0-only.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LGPL-2.0-only.json", + "referenceNumber": 563, + "name": "GNU Library General Public License v2 only", + "licenseId": "LGPL-2.0-only", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/LGPL-2.0-or-later.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LGPL-2.0-or-later.json", + "referenceNumber": 575, + "name": "GNU Library General Public License v2 or later", + "licenseId": "LGPL-2.0-or-later", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/LGPL-2.1.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/LGPL-2.1.json", + "referenceNumber": 394, + "name": "GNU Lesser General Public License v2.1 only", + "licenseId": "LGPL-2.1", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", + "https://opensource.org/licenses/LGPL-2.1" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/LGPL-2.1+.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/LGPL-2.1+.json", + "referenceNumber": 12, + "name": "GNU Lesser General Public License v2.1 or later", + "licenseId": "LGPL-2.1+", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", + "https://opensource.org/licenses/LGPL-2.1" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/LGPL-2.1-only.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LGPL-2.1-only.json", + "referenceNumber": 180, + "name": "GNU Lesser General Public License v2.1 only", + "licenseId": "LGPL-2.1-only", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", + "https://opensource.org/licenses/LGPL-2.1" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/LGPL-2.1-or-later.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LGPL-2.1-or-later.json", + "referenceNumber": 422, + "name": "GNU Lesser General Public License v2.1 or later", + "licenseId": "LGPL-2.1-or-later", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", + "https://opensource.org/licenses/LGPL-2.1" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/LGPL-3.0.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/LGPL-3.0.json", + "referenceNumber": 636, + "name": "GNU Lesser General Public License v3.0 only", + "licenseId": "LGPL-3.0", + "seeAlso": [ + "https://www.gnu.org/licenses/lgpl-3.0-standalone.html", + "https://www.gnu.org/licenses/lgpl+gpl-3.0.txt", + "https://opensource.org/licenses/LGPL-3.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/LGPL-3.0+.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/LGPL-3.0+.json", + "referenceNumber": 255, + "name": "GNU Lesser General Public License v3.0 or later", + "licenseId": "LGPL-3.0+", + "seeAlso": [ + "https://www.gnu.org/licenses/lgpl-3.0-standalone.html", + "https://www.gnu.org/licenses/lgpl+gpl-3.0.txt", + "https://opensource.org/licenses/LGPL-3.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/LGPL-3.0-only.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LGPL-3.0-only.json", + "referenceNumber": 83, + "name": "GNU Lesser General Public License v3.0 only", + "licenseId": "LGPL-3.0-only", + "seeAlso": [ + "https://www.gnu.org/licenses/lgpl-3.0-standalone.html", + "https://www.gnu.org/licenses/lgpl+gpl-3.0.txt", + "https://opensource.org/licenses/LGPL-3.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/LGPL-3.0-or-later.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LGPL-3.0-or-later.json", + "referenceNumber": 396, + "name": "GNU Lesser General Public License v3.0 or later", + "licenseId": "LGPL-3.0-or-later", + "seeAlso": [ + "https://www.gnu.org/licenses/lgpl-3.0-standalone.html", + "https://www.gnu.org/licenses/lgpl+gpl-3.0.txt", + "https://opensource.org/licenses/LGPL-3.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/LGPLLR.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LGPLLR.json", + "referenceNumber": 135, + "name": "Lesser General Public License For Linguistic Resources", + "licenseId": "LGPLLR", + "seeAlso": [ + "http://www-igm.univ-mlv.fr/~unitex/lgpllr.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Libpng.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Libpng.json", + "referenceNumber": 140, + "name": "libpng License", + "licenseId": "Libpng", + "seeAlso": [ + "http://www.libpng.org/pub/png/src/libpng-LICENSE.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/libpng-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/libpng-2.0.json", + "referenceNumber": 212, + "name": "PNG Reference Library version 2", + "licenseId": "libpng-2.0", + "seeAlso": [ + "http://www.libpng.org/pub/png/src/libpng-LICENSE.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/libselinux-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/libselinux-1.0.json", + "referenceNumber": 266, + "name": "libselinux public domain notice", + "licenseId": "libselinux-1.0", + "seeAlso": [ + "https://github.com/SELinuxProject/selinux/blob/master/libselinux/LICENSE" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/libtiff.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/libtiff.json", + "referenceNumber": 20, + "name": "libtiff License", + "licenseId": "libtiff", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/libtiff" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/libutil-David-Nugent.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/libutil-David-Nugent.json", + "referenceNumber": 393, + "name": "libutil David Nugent License", + "licenseId": "libutil-David-Nugent", + "seeAlso": [ + "http://web.mit.edu/freebsd/head/lib/libutil/login_ok.3", + "https://cgit.freedesktop.org/libbsd/tree/man/setproctitle.3bsd" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/LiLiQ-P-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LiLiQ-P-1.1.json", + "referenceNumber": 534, + "name": "Licence Libre du Québec – Permissive version 1.1", + "licenseId": "LiLiQ-P-1.1", + "seeAlso": [ + "https://forge.gouv.qc.ca/licence/fr/liliq-v1-1/", + "http://opensource.org/licenses/LiLiQ-P-1.1" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/LiLiQ-R-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LiLiQ-R-1.1.json", + "referenceNumber": 65, + "name": "Licence Libre du Québec – Réciprocité version 1.1", + "licenseId": "LiLiQ-R-1.1", + "seeAlso": [ + "https://www.forge.gouv.qc.ca/participez/licence-logicielle/licence-libre-du-quebec-liliq-en-francais/licence-libre-du-quebec-reciprocite-liliq-r-v1-1/", + "http://opensource.org/licenses/LiLiQ-R-1.1" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/LiLiQ-Rplus-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LiLiQ-Rplus-1.1.json", + "referenceNumber": 500, + "name": "Licence Libre du Québec – Réciprocité forte version 1.1", + "licenseId": "LiLiQ-Rplus-1.1", + "seeAlso": [ + "https://www.forge.gouv.qc.ca/participez/licence-logicielle/licence-libre-du-quebec-liliq-en-francais/licence-libre-du-quebec-reciprocite-forte-liliq-r-v1-1/", + "http://opensource.org/licenses/LiLiQ-Rplus-1.1" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/Linux-man-pages-1-para.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Linux-man-pages-1-para.json", + "referenceNumber": 188, + "name": "Linux man-pages - 1 paragraph", + "licenseId": "Linux-man-pages-1-para", + "seeAlso": [ + "https://git.kernel.org/pub/scm/docs/man-pages/man-pages.git/tree/man2/getcpu.2#n4" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Linux-man-pages-copyleft.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Linux-man-pages-copyleft.json", + "referenceNumber": 496, + "name": "Linux man-pages Copyleft", + "licenseId": "Linux-man-pages-copyleft", + "seeAlso": [ + "https://www.kernel.org/doc/man-pages/licenses.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Linux-man-pages-copyleft-2-para.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Linux-man-pages-copyleft-2-para.json", + "referenceNumber": 460, + "name": "Linux man-pages Copyleft - 2 paragraphs", + "licenseId": "Linux-man-pages-copyleft-2-para", + "seeAlso": [ + "https://git.kernel.org/pub/scm/docs/man-pages/man-pages.git/tree/man2/move_pages.2#n5", + "https://git.kernel.org/pub/scm/docs/man-pages/man-pages.git/tree/man2/migrate_pages.2#n8" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Linux-man-pages-copyleft-var.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Linux-man-pages-copyleft-var.json", + "referenceNumber": 105, + "name": "Linux man-pages Copyleft Variant", + "licenseId": "Linux-man-pages-copyleft-var", + "seeAlso": [ + "https://git.kernel.org/pub/scm/docs/man-pages/man-pages.git/tree/man2/set_mempolicy.2#n5" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Linux-OpenIB.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Linux-OpenIB.json", + "referenceNumber": 487, + "name": "Linux Kernel Variant of OpenIB.org license", + "licenseId": "Linux-OpenIB", + "seeAlso": [ + "https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/drivers/infiniband/core/sa.h" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/LOOP.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LOOP.json", + "referenceNumber": 263, + "name": "Common Lisp LOOP License", + "licenseId": "LOOP", + "seeAlso": [ + "https://gitlab.com/embeddable-common-lisp/ecl/-/blob/develop/src/lsp/loop.lsp", + "http://git.savannah.gnu.org/cgit/gcl.git/tree/gcl/lsp/gcl_loop.lsp?h\u003dVersion_2_6_13pre", + "https://sourceforge.net/p/sbcl/sbcl/ci/master/tree/src/code/loop.lisp", + "https://github.com/cl-adams/adams/blob/master/LICENSE.md", + "https://github.com/blakemcbride/eclipse-lisp/blob/master/lisp/loop.lisp", + "https://gitlab.common-lisp.net/cmucl/cmucl/-/blob/master/src/code/loop.lisp" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/LPD-document.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LPD-document.json", + "referenceNumber": 271, + "name": "LPD Documentation License", + "licenseId": "LPD-document", + "seeAlso": [ + "https://github.com/Cyan4973/xxHash/blob/dev/doc/xxhash_spec.md", + "https://www.ietf.org/rfc/rfc1952.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/LPL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LPL-1.0.json", + "referenceNumber": 468, + "name": "Lucent Public License Version 1.0", + "licenseId": "LPL-1.0", + "seeAlso": [ + "https://opensource.org/licenses/LPL-1.0" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/LPL-1.02.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LPL-1.02.json", + "referenceNumber": 436, + "name": "Lucent Public License v1.02", + "licenseId": "LPL-1.02", + "seeAlso": [ + "http://plan9.bell-labs.com/plan9/license.html", + "https://opensource.org/licenses/LPL-1.02" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/LPPL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LPPL-1.0.json", + "referenceNumber": 112, + "name": "LaTeX Project Public License v1.0", + "licenseId": "LPPL-1.0", + "seeAlso": [ + "http://www.latex-project.org/lppl/lppl-1-0.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/LPPL-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LPPL-1.1.json", + "referenceNumber": 386, + "name": "LaTeX Project Public License v1.1", + "licenseId": "LPPL-1.1", + "seeAlso": [ + "http://www.latex-project.org/lppl/lppl-1-1.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/LPPL-1.2.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LPPL-1.2.json", + "referenceNumber": 517, + "name": "LaTeX Project Public License v1.2", + "licenseId": "LPPL-1.2", + "seeAlso": [ + "http://www.latex-project.org/lppl/lppl-1-2.txt" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/LPPL-1.3a.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LPPL-1.3a.json", + "referenceNumber": 478, + "name": "LaTeX Project Public License v1.3a", + "licenseId": "LPPL-1.3a", + "seeAlso": [ + "http://www.latex-project.org/lppl/lppl-1-3a.txt" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/LPPL-1.3c.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LPPL-1.3c.json", + "referenceNumber": 85, + "name": "LaTeX Project Public License v1.3c", + "licenseId": "LPPL-1.3c", + "seeAlso": [ + "http://www.latex-project.org/lppl/lppl-1-3c.txt", + "https://opensource.org/licenses/LPPL-1.3c" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/lsof.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/lsof.json", + "referenceNumber": 157, + "name": "lsof License", + "licenseId": "lsof", + "seeAlso": [ + "https://github.com/lsof-org/lsof/blob/master/COPYING" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Lucida-Bitmap-Fonts.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Lucida-Bitmap-Fonts.json", + "referenceNumber": 62, + "name": "Lucida Bitmap Fonts License", + "licenseId": "Lucida-Bitmap-Fonts", + "seeAlso": [ + "https://gitlab.freedesktop.org/xorg/font/bh-100dpi/-/blob/master/COPYING?ref_type\u003dheads" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/LZMA-SDK-9.11-to-9.20.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LZMA-SDK-9.11-to-9.20.json", + "referenceNumber": 378, + "name": "LZMA SDK License (versions 9.11 to 9.20)", + "licenseId": "LZMA-SDK-9.11-to-9.20", + "seeAlso": [ + "https://www.7-zip.org/sdk.html", + "https://sourceforge.net/projects/sevenzip/files/LZMA%20SDK/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/LZMA-SDK-9.22.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LZMA-SDK-9.22.json", + "referenceNumber": 253, + "name": "LZMA SDK License (versions 9.22 and beyond)", + "licenseId": "LZMA-SDK-9.22", + "seeAlso": [ + "https://www.7-zip.org/sdk.html", + "https://sourceforge.net/projects/sevenzip/files/LZMA%20SDK/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Mackerras-3-Clause.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Mackerras-3-Clause.json", + "referenceNumber": 42, + "name": "Mackerras 3-Clause License", + "licenseId": "Mackerras-3-Clause", + "seeAlso": [ + "https://github.com/ppp-project/ppp/blob/master/pppd/chap_ms.c#L6-L28" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Mackerras-3-Clause-acknowledgment.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Mackerras-3-Clause-acknowledgment.json", + "referenceNumber": 605, + "name": "Mackerras 3-Clause - acknowledgment variant", + "licenseId": "Mackerras-3-Clause-acknowledgment", + "seeAlso": [ + "https://github.com/ppp-project/ppp/blob/master/pppd/auth.c#L6-L28" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/magaz.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/magaz.json", + "referenceNumber": 279, + "name": "magaz License", + "licenseId": "magaz", + "seeAlso": [ + "https://mirrors.nic.cz/tex-archive/macros/latex/contrib/magaz/magaz.tex" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/mailprio.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/mailprio.json", + "referenceNumber": 225, + "name": "mailprio License", + "licenseId": "mailprio", + "seeAlso": [ + "https://fossies.org/linux/sendmail/contrib/mailprio" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/MakeIndex.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MakeIndex.json", + "referenceNumber": 22, + "name": "MakeIndex License", + "licenseId": "MakeIndex", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/MakeIndex" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Martin-Birgmeier.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Martin-Birgmeier.json", + "referenceNumber": 382, + "name": "Martin Birgmeier License", + "licenseId": "Martin-Birgmeier", + "seeAlso": [ + "https://github.com/Perl/perl5/blob/blead/util.c#L6136" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/McPhee-slideshow.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/McPhee-slideshow.json", + "referenceNumber": 288, + "name": "McPhee Slideshow License", + "licenseId": "McPhee-slideshow", + "seeAlso": [ + "https://mirror.las.iastate.edu/tex-archive/graphics/metapost/contrib/macros/slideshow/slideshow.mp" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/metamail.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/metamail.json", + "referenceNumber": 567, + "name": "metamail License", + "licenseId": "metamail", + "seeAlso": [ + "https://github.com/Dual-Life/mime-base64/blob/master/Base64.xs#L12" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Minpack.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Minpack.json", + "referenceNumber": 179, + "name": "Minpack License", + "licenseId": "Minpack", + "seeAlso": [ + "http://www.netlib.org/minpack/disclaimer", + "https://gitlab.com/libeigen/eigen/-/blob/master/COPYING.MINPACK" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/MirOS.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MirOS.json", + "referenceNumber": 23, + "name": "The MirOS Licence", + "licenseId": "MirOS", + "seeAlso": [ + "https://opensource.org/licenses/MirOS" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/MIT.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MIT.json", + "referenceNumber": 124, + "name": "MIT License", + "licenseId": "MIT", + "seeAlso": [ + "https://opensource.org/license/mit/" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/MIT-0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MIT-0.json", + "referenceNumber": 238, + "name": "MIT No Attribution", + "licenseId": "MIT-0", + "seeAlso": [ + "https://github.com/aws/mit-0", + "https://romanrm.net/mit-zero", + "https://github.com/awsdocs/aws-cloud9-user-guide/blob/master/LICENSE-SAMPLECODE" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/MIT-advertising.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MIT-advertising.json", + "referenceNumber": 77, + "name": "Enlightenment License (e16)", + "licenseId": "MIT-advertising", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/MIT_With_Advertising" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/MIT-CMU.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MIT-CMU.json", + "referenceNumber": 415, + "name": "CMU License", + "licenseId": "MIT-CMU", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing:MIT?rd\u003dLicensing/MIT#CMU_Style", + "https://github.com/python-pillow/Pillow/blob/fffb426092c8db24a5f4b6df243a8a3c01fb63cd/LICENSE" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/MIT-enna.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MIT-enna.json", + "referenceNumber": 129, + "name": "enna License", + "licenseId": "MIT-enna", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/MIT#enna" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/MIT-feh.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MIT-feh.json", + "referenceNumber": 37, + "name": "feh License", + "licenseId": "MIT-feh", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/MIT#feh" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/MIT-Festival.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MIT-Festival.json", + "referenceNumber": 595, + "name": "MIT Festival Variant", + "licenseId": "MIT-Festival", + "seeAlso": [ + "https://github.com/festvox/flite/blob/master/COPYING", + "https://github.com/festvox/speech_tools/blob/master/COPYING" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/MIT-Modern-Variant.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MIT-Modern-Variant.json", + "referenceNumber": 44, + "name": "MIT License Modern Variant", + "licenseId": "MIT-Modern-Variant", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing:MIT#Modern_Variants", + "https://ptolemy.berkeley.edu/copyright.htm", + "https://pirlwww.lpl.arizona.edu/resources/guide/software/PerlTk/Tixlic.html" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/MIT-open-group.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MIT-open-group.json", + "referenceNumber": 543, + "name": "MIT Open Group variant", + "licenseId": "MIT-open-group", + "seeAlso": [ + "https://gitlab.freedesktop.org/xorg/app/iceauth/-/blob/master/COPYING", + "https://gitlab.freedesktop.org/xorg/app/xvinfo/-/blob/master/COPYING", + "https://gitlab.freedesktop.org/xorg/app/xsetroot/-/blob/master/COPYING", + "https://gitlab.freedesktop.org/xorg/app/xauth/-/blob/master/COPYING" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/MIT-testregex.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MIT-testregex.json", + "referenceNumber": 250, + "name": "MIT testregex Variant", + "licenseId": "MIT-testregex", + "seeAlso": [ + "https://github.com/dotnet/runtime/blob/55e1ac7c07df62c4108d4acedf78f77574470ce5/src/libraries/System.Text.RegularExpressions/tests/FunctionalTests/AttRegexTests.cs#L12-L28" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/MIT-Wu.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MIT-Wu.json", + "referenceNumber": 608, + "name": "MIT Tom Wu Variant", + "licenseId": "MIT-Wu", + "seeAlso": [ + "https://github.com/chromium/octane/blob/master/crypto.js" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/MITNFA.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MITNFA.json", + "referenceNumber": 526, + "name": "MIT +no-false-attribs license", + "licenseId": "MITNFA", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/MITNFA" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/MMIXware.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MMIXware.json", + "referenceNumber": 252, + "name": "MMIXware License", + "licenseId": "MMIXware", + "seeAlso": [ + "https://gitlab.lrz.de/mmix/mmixware/-/blob/master/boilerplate.w" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Motosoto.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Motosoto.json", + "referenceNumber": 448, + "name": "Motosoto License", + "licenseId": "Motosoto", + "seeAlso": [ + "https://opensource.org/licenses/Motosoto" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/MPEG-SSG.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MPEG-SSG.json", + "referenceNumber": 202, + "name": "MPEG Software Simulation", + "licenseId": "MPEG-SSG", + "seeAlso": [ + "https://sourceforge.net/p/netpbm/code/HEAD/tree/super_stable/converter/ppm/ppmtompeg/jrevdct.c#l1189" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/mpi-permissive.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/mpi-permissive.json", + "referenceNumber": 114, + "name": "mpi Permissive License", + "licenseId": "mpi-permissive", + "seeAlso": [ + "https://sources.debian.org/src/openmpi/4.1.0-10/ompi/debuggers/msgq_interface.h/?hl\u003d19#L19" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/mpich2.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/mpich2.json", + "referenceNumber": 164, + "name": "mpich2 License", + "licenseId": "mpich2", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/MIT" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/MPL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MPL-1.0.json", + "referenceNumber": 499, + "name": "Mozilla Public License 1.0", + "licenseId": "MPL-1.0", + "seeAlso": [ + "http://www.mozilla.org/MPL/MPL-1.0.html", + "https://opensource.org/licenses/MPL-1.0" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/MPL-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MPL-1.1.json", + "referenceNumber": 183, + "name": "Mozilla Public License 1.1", + "licenseId": "MPL-1.1", + "seeAlso": [ + "http://www.mozilla.org/MPL/MPL-1.1.html", + "https://opensource.org/licenses/MPL-1.1" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/MPL-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MPL-2.0.json", + "referenceNumber": 573, + "name": "Mozilla Public License 2.0", + "licenseId": "MPL-2.0", + "seeAlso": [ + "https://www.mozilla.org/MPL/2.0/", + "https://opensource.org/licenses/MPL-2.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/MPL-2.0-no-copyleft-exception.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MPL-2.0-no-copyleft-exception.json", + "referenceNumber": 397, + "name": "Mozilla Public License 2.0 (no copyleft exception)", + "licenseId": "MPL-2.0-no-copyleft-exception", + "seeAlso": [ + "https://www.mozilla.org/MPL/2.0/", + "https://opensource.org/licenses/MPL-2.0" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/mplus.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/mplus.json", + "referenceNumber": 160, + "name": "mplus Font License", + "licenseId": "mplus", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing:Mplus?rd\u003dLicensing/mplus" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/MS-LPL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MS-LPL.json", + "referenceNumber": 199, + "name": "Microsoft Limited Public License", + "licenseId": "MS-LPL", + "seeAlso": [ + "https://www.openhub.net/licenses/mslpl", + "https://github.com/gabegundy/atlserver/blob/master/License.txt", + "https://en.wikipedia.org/wiki/Shared_Source_Initiative#Microsoft_Limited_Public_License_(Ms-LPL)" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/MS-PL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MS-PL.json", + "referenceNumber": 485, + "name": "Microsoft Public License", + "licenseId": "MS-PL", + "seeAlso": [ + "http://www.microsoft.com/opensource/licenses.mspx", + "https://opensource.org/licenses/MS-PL" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/MS-RL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MS-RL.json", + "referenceNumber": 284, + "name": "Microsoft Reciprocal License", + "licenseId": "MS-RL", + "seeAlso": [ + "http://www.microsoft.com/opensource/licenses.mspx", + "https://opensource.org/licenses/MS-RL" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/MTLL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MTLL.json", + "referenceNumber": 387, + "name": "Matrix Template Library License", + "licenseId": "MTLL", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Matrix_Template_Library_License" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/MulanPSL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MulanPSL-1.0.json", + "referenceNumber": 407, + "name": "Mulan Permissive Software License, Version 1", + "licenseId": "MulanPSL-1.0", + "seeAlso": [ + "https://license.coscl.org.cn/MulanPSL/", + "https://github.com/yuwenlong/longphp/blob/25dfb70cc2a466dc4bb55ba30901cbce08d164b5/LICENSE" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/MulanPSL-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MulanPSL-2.0.json", + "referenceNumber": 439, + "name": "Mulan Permissive Software License, Version 2", + "licenseId": "MulanPSL-2.0", + "seeAlso": [ + "https://license.coscl.org.cn/MulanPSL2" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/Multics.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Multics.json", + "referenceNumber": 465, + "name": "Multics License", + "licenseId": "Multics", + "seeAlso": [ + "https://opensource.org/licenses/Multics" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/Mup.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Mup.json", + "referenceNumber": 607, + "name": "Mup License", + "licenseId": "Mup", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Mup" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/NAIST-2003.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/NAIST-2003.json", + "referenceNumber": 265, + "name": "Nara Institute of Science and Technology License (2003)", + "licenseId": "NAIST-2003", + "seeAlso": [ + "https://enterprise.dejacode.com/licenses/public/naist-2003/#license-text", + "https://github.com/nodejs/node/blob/4a19cc8947b1bba2b2d27816ec3d0edf9b28e503/LICENSE#L343" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/NASA-1.3.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/NASA-1.3.json", + "referenceNumber": 507, + "name": "NASA Open Source Agreement 1.3", + "licenseId": "NASA-1.3", + "seeAlso": [ + "http://ti.arc.nasa.gov/opensource/nosa/", + "https://opensource.org/licenses/NASA-1.3" + ], + "isOsiApproved": true, + "isFsfLibre": false + }, + { + "reference": "https://spdx.org/licenses/Naumen.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Naumen.json", + "referenceNumber": 221, + "name": "Naumen Public License", + "licenseId": "Naumen", + "seeAlso": [ + "https://opensource.org/licenses/Naumen" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/NBPL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/NBPL-1.0.json", + "referenceNumber": 61, + "name": "Net Boolean Public License v1", + "licenseId": "NBPL-1.0", + "seeAlso": [ + "http://www.openldap.org/devel/gitweb.cgi?p\u003dopenldap.git;a\u003dblob;f\u003dLICENSE;hb\u003d37b4b3f6cc4bf34e1d3dec61e69914b9819d8894" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/NCGL-UK-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/NCGL-UK-2.0.json", + "referenceNumber": 443, + "name": "Non-Commercial Government Licence", + "licenseId": "NCGL-UK-2.0", + "seeAlso": [ + "http://www.nationalarchives.gov.uk/doc/non-commercial-government-licence/version/2/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/NCSA.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/NCSA.json", + "referenceNumber": 45, + "name": "University of Illinois/NCSA Open Source License", + "licenseId": "NCSA", + "seeAlso": [ + "http://otm.illinois.edu/uiuc_openSource", + "https://opensource.org/licenses/NCSA" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/Net-SNMP.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Net-SNMP.json", + "referenceNumber": 71, + "name": "Net-SNMP License", + "licenseId": "Net-SNMP", + "seeAlso": [ + "http://net-snmp.sourceforge.net/about/license.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/NetCDF.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/NetCDF.json", + "referenceNumber": 119, + "name": "NetCDF license", + "licenseId": "NetCDF", + "seeAlso": [ + "http://www.unidata.ucar.edu/software/netcdf/copyright.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Newsletr.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Newsletr.json", + "referenceNumber": 616, + "name": "Newsletr License", + "licenseId": "Newsletr", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Newsletr" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/NGPL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/NGPL.json", + "referenceNumber": 248, + "name": "Nethack General Public License", + "licenseId": "NGPL", + "seeAlso": [ + "https://opensource.org/licenses/NGPL" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/NICTA-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/NICTA-1.0.json", + "referenceNumber": 48, + "name": "NICTA Public Software License, Version 1.0", + "licenseId": "NICTA-1.0", + "seeAlso": [ + "https://opensource.apple.com/source/mDNSResponder/mDNSResponder-320.10/mDNSPosix/nss_ReadMe.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/NIST-PD.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/NIST-PD.json", + "referenceNumber": 209, + "name": "NIST Public Domain Notice", + "licenseId": "NIST-PD", + "seeAlso": [ + "https://github.com/tcheneau/simpleRPL/blob/e645e69e38dd4e3ccfeceb2db8cba05b7c2e0cd3/LICENSE.txt", + "https://github.com/tcheneau/Routing/blob/f09f46fcfe636107f22f2c98348188a65a135d98/README.md" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/NIST-PD-fallback.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/NIST-PD-fallback.json", + "referenceNumber": 49, + "name": "NIST Public Domain Notice with license fallback", + "licenseId": "NIST-PD-fallback", + "seeAlso": [ + "https://github.com/usnistgov/jsip/blob/59700e6926cbe96c5cdae897d9a7d2656b42abe3/LICENSE", + "https://github.com/usnistgov/fipy/blob/86aaa5c2ba2c6f1be19593c5986071cf6568cc34/LICENSE.rst" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/NIST-Software.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/NIST-Software.json", + "referenceNumber": 94, + "name": "NIST Software License", + "licenseId": "NIST-Software", + "seeAlso": [ + "https://github.com/open-quantum-safe/liboqs/blob/40b01fdbb270f8614fde30e65d30e9da18c02393/src/common/rand/rand_nist.c#L1-L15" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/NLOD-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/NLOD-1.0.json", + "referenceNumber": 217, + "name": "Norwegian Licence for Open Government Data (NLOD) 1.0", + "licenseId": "NLOD-1.0", + "seeAlso": [ + "http://data.norge.no/nlod/en/1.0" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/NLOD-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/NLOD-2.0.json", + "referenceNumber": 373, + "name": "Norwegian Licence for Open Government Data (NLOD) 2.0", + "licenseId": "NLOD-2.0", + "seeAlso": [ + "http://data.norge.no/nlod/en/2.0" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/NLPL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/NLPL.json", + "referenceNumber": 66, + "name": "No Limit Public License", + "licenseId": "NLPL", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/NLPL" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Nokia.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Nokia.json", + "referenceNumber": 128, + "name": "Nokia Open Source License", + "licenseId": "Nokia", + "seeAlso": [ + "https://opensource.org/licenses/nokia" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/NOSL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/NOSL.json", + "referenceNumber": 1, + "name": "Netizen Open Source License", + "licenseId": "NOSL", + "seeAlso": [ + "http://bits.netizen.com.au/licenses/NOSL/nosl.txt" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/Noweb.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Noweb.json", + "referenceNumber": 476, + "name": "Noweb License", + "licenseId": "Noweb", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Noweb" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/NPL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/NPL-1.0.json", + "referenceNumber": 210, + "name": "Netscape Public License v1.0", + "licenseId": "NPL-1.0", + "seeAlso": [ + "http://www.mozilla.org/MPL/NPL/1.0/" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/NPL-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/NPL-1.1.json", + "referenceNumber": 337, + "name": "Netscape Public License v1.1", + "licenseId": "NPL-1.1", + "seeAlso": [ + "http://www.mozilla.org/MPL/NPL/1.1/" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/NPOSL-3.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/NPOSL-3.0.json", + "referenceNumber": 635, + "name": "Non-Profit Open Software License 3.0", + "licenseId": "NPOSL-3.0", + "seeAlso": [ + "https://opensource.org/licenses/NOSL3.0" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/NRL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/NRL.json", + "referenceNumber": 369, + "name": "NRL License", + "licenseId": "NRL", + "seeAlso": [ + "http://web.mit.edu/network/isakmp/nrllicense.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/NTP.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/NTP.json", + "referenceNumber": 470, + "name": "NTP License", + "licenseId": "NTP", + "seeAlso": [ + "https://opensource.org/licenses/NTP" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/NTP-0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/NTP-0.json", + "referenceNumber": 186, + "name": "NTP No Attribution", + "licenseId": "NTP-0", + "seeAlso": [ + "https://github.com/tytso/e2fsprogs/blob/master/lib/et/et_name.c" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Nunit.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/Nunit.json", + "referenceNumber": 471, + "name": "Nunit License", + "licenseId": "Nunit", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Nunit" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/O-UDA-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/O-UDA-1.0.json", + "referenceNumber": 118, + "name": "Open Use of Data Agreement v1.0", + "licenseId": "O-UDA-1.0", + "seeAlso": [ + "https://github.com/microsoft/Open-Use-of-Data-Agreement/blob/v1.0/O-UDA-1.0.md", + "https://cdla.dev/open-use-of-data-agreement-v1-0/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OCCT-PL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OCCT-PL.json", + "referenceNumber": 521, + "name": "Open CASCADE Technology Public License", + "licenseId": "OCCT-PL", + "seeAlso": [ + "http://www.opencascade.com/content/occt-public-license" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OCLC-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OCLC-2.0.json", + "referenceNumber": 566, + "name": "OCLC Research Public License 2.0", + "licenseId": "OCLC-2.0", + "seeAlso": [ + "http://www.oclc.org/research/activities/software/license/v2final.htm", + "https://opensource.org/licenses/OCLC-2.0" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/ODbL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/ODbL-1.0.json", + "referenceNumber": 589, + "name": "Open Data Commons Open Database License v1.0", + "licenseId": "ODbL-1.0", + "seeAlso": [ + "http://www.opendatacommons.org/licenses/odbl/1.0/", + "https://opendatacommons.org/licenses/odbl/1-0/" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/ODC-By-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/ODC-By-1.0.json", + "referenceNumber": 141, + "name": "Open Data Commons Attribution License v1.0", + "licenseId": "ODC-By-1.0", + "seeAlso": [ + "https://opendatacommons.org/licenses/by/1.0/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OFFIS.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OFFIS.json", + "referenceNumber": 603, + "name": "OFFIS License", + "licenseId": "OFFIS", + "seeAlso": [ + "https://sourceforge.net/p/xmedcon/code/ci/master/tree/libs/dicom/README" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OFL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OFL-1.0.json", + "referenceNumber": 91, + "name": "SIL Open Font License 1.0", + "licenseId": "OFL-1.0", + "seeAlso": [ + "http://scripts.sil.org/cms/scripts/page.php?item_id\u003dOFL10_web" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/OFL-1.0-no-RFN.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OFL-1.0-no-RFN.json", + "referenceNumber": 149, + "name": "SIL Open Font License 1.0 with no Reserved Font Name", + "licenseId": "OFL-1.0-no-RFN", + "seeAlso": [ + "http://scripts.sil.org/cms/scripts/page.php?item_id\u003dOFL10_web" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OFL-1.0-RFN.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OFL-1.0-RFN.json", + "referenceNumber": 568, + "name": "SIL Open Font License 1.0 with Reserved Font Name", + "licenseId": "OFL-1.0-RFN", + "seeAlso": [ + "http://scripts.sil.org/cms/scripts/page.php?item_id\u003dOFL10_web" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OFL-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OFL-1.1.json", + "referenceNumber": 163, + "name": "SIL Open Font License 1.1", + "licenseId": "OFL-1.1", + "seeAlso": [ + "http://scripts.sil.org/cms/scripts/page.php?item_id\u003dOFL_web", + "https://opensource.org/licenses/OFL-1.1" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/OFL-1.1-no-RFN.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OFL-1.1-no-RFN.json", + "referenceNumber": 270, + "name": "SIL Open Font License 1.1 with no Reserved Font Name", + "licenseId": "OFL-1.1-no-RFN", + "seeAlso": [ + "http://scripts.sil.org/cms/scripts/page.php?item_id\u003dOFL_web", + "https://opensource.org/licenses/OFL-1.1" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/OFL-1.1-RFN.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OFL-1.1-RFN.json", + "referenceNumber": 80, + "name": "SIL Open Font License 1.1 with Reserved Font Name", + "licenseId": "OFL-1.1-RFN", + "seeAlso": [ + "http://scripts.sil.org/cms/scripts/page.php?item_id\u003dOFL_web", + "https://opensource.org/licenses/OFL-1.1" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/OGC-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OGC-1.0.json", + "referenceNumber": 86, + "name": "OGC Software License, Version 1.0", + "licenseId": "OGC-1.0", + "seeAlso": [ + "https://www.ogc.org/ogc/software/1.0" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OGDL-Taiwan-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OGDL-Taiwan-1.0.json", + "referenceNumber": 347, + "name": "Taiwan Open Government Data License, version 1.0", + "licenseId": "OGDL-Taiwan-1.0", + "seeAlso": [ + "https://data.gov.tw/license" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OGL-Canada-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OGL-Canada-2.0.json", + "referenceNumber": 506, + "name": "Open Government Licence - Canada", + "licenseId": "OGL-Canada-2.0", + "seeAlso": [ + "https://open.canada.ca/en/open-government-licence-canada" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OGL-UK-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OGL-UK-1.0.json", + "referenceNumber": 245, + "name": "Open Government Licence v1.0", + "licenseId": "OGL-UK-1.0", + "seeAlso": [ + "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/1/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OGL-UK-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OGL-UK-2.0.json", + "referenceNumber": 399, + "name": "Open Government Licence v2.0", + "licenseId": "OGL-UK-2.0", + "seeAlso": [ + "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OGL-UK-3.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OGL-UK-3.0.json", + "referenceNumber": 142, + "name": "Open Government Licence v3.0", + "licenseId": "OGL-UK-3.0", + "seeAlso": [ + "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OGTSL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OGTSL.json", + "referenceNumber": 214, + "name": "Open Group Test Suite License", + "licenseId": "OGTSL", + "seeAlso": [ + "http://www.opengroup.org/testing/downloads/The_Open_Group_TSL.txt", + "https://opensource.org/licenses/OGTSL" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/OLDAP-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OLDAP-1.1.json", + "referenceNumber": 565, + "name": "Open LDAP Public License v1.1", + "licenseId": "OLDAP-1.1", + "seeAlso": [ + "http://www.openldap.org/devel/gitweb.cgi?p\u003dopenldap.git;a\u003dblob;f\u003dLICENSE;hb\u003d806557a5ad59804ef3a44d5abfbe91d706b0791f" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OLDAP-1.2.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OLDAP-1.2.json", + "referenceNumber": 321, + "name": "Open LDAP Public License v1.2", + "licenseId": "OLDAP-1.2", + "seeAlso": [ + "http://www.openldap.org/devel/gitweb.cgi?p\u003dopenldap.git;a\u003dblob;f\u003dLICENSE;hb\u003d42b0383c50c299977b5893ee695cf4e486fb0dc7" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OLDAP-1.3.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OLDAP-1.3.json", + "referenceNumber": 312, + "name": "Open LDAP Public License v1.3", + "licenseId": "OLDAP-1.3", + "seeAlso": [ + "http://www.openldap.org/devel/gitweb.cgi?p\u003dopenldap.git;a\u003dblob;f\u003dLICENSE;hb\u003de5f8117f0ce088d0bd7a8e18ddf37eaa40eb09b1" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OLDAP-1.4.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OLDAP-1.4.json", + "referenceNumber": 120, + "name": "Open LDAP Public License v1.4", + "licenseId": "OLDAP-1.4", + "seeAlso": [ + "http://www.openldap.org/devel/gitweb.cgi?p\u003dopenldap.git;a\u003dblob;f\u003dLICENSE;hb\u003dc9f95c2f3f2ffb5e0ae55fe7388af75547660941" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OLDAP-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OLDAP-2.0.json", + "referenceNumber": 450, + "name": "Open LDAP Public License v2.0 (or possibly 2.0A and 2.0B)", + "licenseId": "OLDAP-2.0", + "seeAlso": [ + "http://www.openldap.org/devel/gitweb.cgi?p\u003dopenldap.git;a\u003dblob;f\u003dLICENSE;hb\u003dcbf50f4e1185a21abd4c0a54d3f4341fe28f36ea" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OLDAP-2.0.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OLDAP-2.0.1.json", + "referenceNumber": 59, + "name": "Open LDAP Public License v2.0.1", + "licenseId": "OLDAP-2.0.1", + "seeAlso": [ + "http://www.openldap.org/devel/gitweb.cgi?p\u003dopenldap.git;a\u003dblob;f\u003dLICENSE;hb\u003db6d68acd14e51ca3aab4428bf26522aa74873f0e" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OLDAP-2.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OLDAP-2.1.json", + "referenceNumber": 458, + "name": "Open LDAP Public License v2.1", + "licenseId": "OLDAP-2.1", + "seeAlso": [ + "http://www.openldap.org/devel/gitweb.cgi?p\u003dopenldap.git;a\u003dblob;f\u003dLICENSE;hb\u003db0d176738e96a0d3b9f85cb51e140a86f21be715" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OLDAP-2.2.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OLDAP-2.2.json", + "referenceNumber": 175, + "name": "Open LDAP Public License v2.2", + "licenseId": "OLDAP-2.2", + "seeAlso": [ + "http://www.openldap.org/devel/gitweb.cgi?p\u003dopenldap.git;a\u003dblob;f\u003dLICENSE;hb\u003d470b0c18ec67621c85881b2733057fecf4a1acc3" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OLDAP-2.2.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OLDAP-2.2.1.json", + "referenceNumber": 32, + "name": "Open LDAP Public License v2.2.1", + "licenseId": "OLDAP-2.2.1", + "seeAlso": [ + "http://www.openldap.org/devel/gitweb.cgi?p\u003dopenldap.git;a\u003dblob;f\u003dLICENSE;hb\u003d4bc786f34b50aa301be6f5600f58a980070f481e" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OLDAP-2.2.2.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OLDAP-2.2.2.json", + "referenceNumber": 293, + "name": "Open LDAP Public License 2.2.2", + "licenseId": "OLDAP-2.2.2", + "seeAlso": [ + "http://www.openldap.org/devel/gitweb.cgi?p\u003dopenldap.git;a\u003dblob;f\u003dLICENSE;hb\u003ddf2cc1e21eb7c160695f5b7cffd6296c151ba188" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OLDAP-2.3.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OLDAP-2.3.json", + "referenceNumber": 405, + "name": "Open LDAP Public License v2.3", + "licenseId": "OLDAP-2.3", + "seeAlso": [ + "http://www.openldap.org/devel/gitweb.cgi?p\u003dopenldap.git;a\u003dblob;f\u003dLICENSE;hb\u003dd32cf54a32d581ab475d23c810b0a7fbaf8d63c3" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/OLDAP-2.4.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OLDAP-2.4.json", + "referenceNumber": 619, + "name": "Open LDAP Public License v2.4", + "licenseId": "OLDAP-2.4", + "seeAlso": [ + "http://www.openldap.org/devel/gitweb.cgi?p\u003dopenldap.git;a\u003dblob;f\u003dLICENSE;hb\u003dcd1284c4a91a8a380d904eee68d1583f989ed386" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OLDAP-2.5.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OLDAP-2.5.json", + "referenceNumber": 426, + "name": "Open LDAP Public License v2.5", + "licenseId": "OLDAP-2.5", + "seeAlso": [ + "http://www.openldap.org/devel/gitweb.cgi?p\u003dopenldap.git;a\u003dblob;f\u003dLICENSE;hb\u003d6852b9d90022e8593c98205413380536b1b5a7cf" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OLDAP-2.6.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OLDAP-2.6.json", + "referenceNumber": 9, + "name": "Open LDAP Public License v2.6", + "licenseId": "OLDAP-2.6", + "seeAlso": [ + "http://www.openldap.org/devel/gitweb.cgi?p\u003dopenldap.git;a\u003dblob;f\u003dLICENSE;hb\u003d1cae062821881f41b73012ba816434897abf4205" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OLDAP-2.7.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OLDAP-2.7.json", + "referenceNumber": 178, + "name": "Open LDAP Public License v2.7", + "licenseId": "OLDAP-2.7", + "seeAlso": [ + "http://www.openldap.org/devel/gitweb.cgi?p\u003dopenldap.git;a\u003dblob;f\u003dLICENSE;hb\u003d47c2415c1df81556eeb39be6cad458ef87c534a2" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/OLDAP-2.8.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OLDAP-2.8.json", + "referenceNumber": 132, + "name": "Open LDAP Public License v2.8", + "licenseId": "OLDAP-2.8", + "seeAlso": [ + "http://www.openldap.org/software/release/license.html" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/OLFL-1.3.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OLFL-1.3.json", + "referenceNumber": 556, + "name": "Open Logistics Foundation License Version 1.3", + "licenseId": "OLFL-1.3", + "seeAlso": [ + "https://openlogisticsfoundation.org/licenses/", + "https://opensource.org/license/olfl-1-3/" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/OML.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OML.json", + "referenceNumber": 325, + "name": "Open Market License", + "licenseId": "OML", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Open_Market_License" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OpenPBS-2.3.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OpenPBS-2.3.json", + "referenceNumber": 490, + "name": "OpenPBS v2.3 Software License", + "licenseId": "OpenPBS-2.3", + "seeAlso": [ + "https://github.com/adaptivecomputing/torque/blob/master/PBS_License.txt", + "https://www.mcs.anl.gov/research/projects/openpbs/PBS_License.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OpenSSL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OpenSSL.json", + "referenceNumber": 564, + "name": "OpenSSL License", + "licenseId": "OpenSSL", + "seeAlso": [ + "http://www.openssl.org/source/license.html" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/OpenSSL-standalone.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OpenSSL-standalone.json", + "referenceNumber": 597, + "name": "OpenSSL License - standalone", + "licenseId": "OpenSSL-standalone", + "seeAlso": [ + "https://library.netapp.com/ecm/ecm_download_file/ECMP1196395", + "https://hstechdocs.helpsystems.com/manuals/globalscape/archive/cuteftp6/open_ssl_license_agreement.htm" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OpenVision.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OpenVision.json", + "referenceNumber": 590, + "name": "OpenVision License", + "licenseId": "OpenVision", + "seeAlso": [ + "https://github.com/krb5/krb5/blob/krb5-1.21.2-final/NOTICE#L66-L98", + "https://web.mit.edu/kerberos/krb5-1.21/doc/mitK5license.html", + "https://fedoraproject.org/wiki/Licensing:MIT#OpenVision_Variant" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OPL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OPL-1.0.json", + "referenceNumber": 116, + "name": "Open Public License v1.0", + "licenseId": "OPL-1.0", + "seeAlso": [ + "http://old.koalateam.com/jackaroo/OPL_1_0.TXT", + "https://fedoraproject.org/wiki/Licensing/Open_Public_License" + ], + "isOsiApproved": false, + "isFsfLibre": false + }, + { + "reference": "https://spdx.org/licenses/OPL-UK-3.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OPL-UK-3.0.json", + "referenceNumber": 276, + "name": "United Kingdom Open Parliament Licence v3.0", + "licenseId": "OPL-UK-3.0", + "seeAlso": [ + "https://www.parliament.uk/site-information/copyright-parliament/open-parliament-licence/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OPUBL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OPUBL-1.0.json", + "referenceNumber": 479, + "name": "Open Publication License v1.0", + "licenseId": "OPUBL-1.0", + "seeAlso": [ + "http://opencontent.org/openpub/", + "https://www.debian.org/opl", + "https://www.ctan.org/license/opl" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OSET-PL-2.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OSET-PL-2.1.json", + "referenceNumber": 19, + "name": "OSET Public License version 2.1", + "licenseId": "OSET-PL-2.1", + "seeAlso": [ + "http://www.osetfoundation.org/public-license", + "https://opensource.org/licenses/OPL-2.1" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/OSL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OSL-1.0.json", + "referenceNumber": 511, + "name": "Open Software License 1.0", + "licenseId": "OSL-1.0", + "seeAlso": [ + "https://opensource.org/licenses/OSL-1.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/OSL-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OSL-1.1.json", + "referenceNumber": 327, + "name": "Open Software License 1.1", + "licenseId": "OSL-1.1", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/OSL1.1" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/OSL-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OSL-2.0.json", + "referenceNumber": 579, + "name": "Open Software License 2.0", + "licenseId": "OSL-2.0", + "seeAlso": [ + "http://web.archive.org/web/20041020171434/http://www.rosenlaw.com/osl2.0.html" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/OSL-2.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OSL-2.1.json", + "referenceNumber": 480, + "name": "Open Software License 2.1", + "licenseId": "OSL-2.1", + "seeAlso": [ + "http://web.archive.org/web/20050212003940/http://www.rosenlaw.com/osl21.htm", + "https://opensource.org/licenses/OSL-2.1" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/OSL-3.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OSL-3.0.json", + "referenceNumber": 72, + "name": "Open Software License 3.0", + "licenseId": "OSL-3.0", + "seeAlso": [ + "https://web.archive.org/web/20120101081418/http://rosenlaw.com:80/OSL3.0.htm", + "https://opensource.org/licenses/OSL-3.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/PADL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/PADL.json", + "referenceNumber": 145, + "name": "PADL License", + "licenseId": "PADL", + "seeAlso": [ + "https://git.openldap.org/openldap/openldap/-/blob/master/libraries/libldap/os-local.c?ref_type\u003dheads#L19-23" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Parity-6.0.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Parity-6.0.0.json", + "referenceNumber": 546, + "name": "The Parity Public License 6.0.0", + "licenseId": "Parity-6.0.0", + "seeAlso": [ + "https://paritylicense.com/versions/6.0.0.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Parity-7.0.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Parity-7.0.0.json", + "referenceNumber": 281, + "name": "The Parity Public License 7.0.0", + "licenseId": "Parity-7.0.0", + "seeAlso": [ + "https://paritylicense.com/versions/7.0.0.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/PDDL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/PDDL-1.0.json", + "referenceNumber": 231, + "name": "Open Data Commons Public Domain Dedication \u0026 License 1.0", + "licenseId": "PDDL-1.0", + "seeAlso": [ + "http://opendatacommons.org/licenses/pddl/1.0/", + "https://opendatacommons.org/licenses/pddl/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/PHP-3.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/PHP-3.0.json", + "referenceNumber": 622, + "name": "PHP License v3.0", + "licenseId": "PHP-3.0", + "seeAlso": [ + "http://www.php.net/license/3_0.txt", + "https://opensource.org/licenses/PHP-3.0" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/PHP-3.01.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/PHP-3.01.json", + "referenceNumber": 11, + "name": "PHP License v3.01", + "licenseId": "PHP-3.01", + "seeAlso": [ + "http://www.php.net/license/3_01.txt" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/Pixar.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Pixar.json", + "referenceNumber": 240, + "name": "Pixar License", + "licenseId": "Pixar", + "seeAlso": [ + "https://github.com/PixarAnimationStudios/OpenSubdiv/raw/v3_5_0/LICENSE.txt", + "https://graphics.pixar.com/opensubdiv/docs/license.html", + "https://github.com/PixarAnimationStudios/OpenSubdiv/blob/v3_5_0/opensubdiv/version.cpp#L2-L22" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Plexus.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Plexus.json", + "referenceNumber": 354, + "name": "Plexus Classworlds License", + "licenseId": "Plexus", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Plexus_Classworlds_License" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/pnmstitch.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/pnmstitch.json", + "referenceNumber": 76, + "name": "pnmstitch License", + "licenseId": "pnmstitch", + "seeAlso": [ + "https://sourceforge.net/p/netpbm/code/HEAD/tree/super_stable/editor/pnmstitch.c#l2" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/PolyForm-Noncommercial-1.0.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/PolyForm-Noncommercial-1.0.0.json", + "referenceNumber": 343, + "name": "PolyForm Noncommercial License 1.0.0", + "licenseId": "PolyForm-Noncommercial-1.0.0", + "seeAlso": [ + "https://polyformproject.org/licenses/noncommercial/1.0.0" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/PolyForm-Small-Business-1.0.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/PolyForm-Small-Business-1.0.0.json", + "referenceNumber": 455, + "name": "PolyForm Small Business License 1.0.0", + "licenseId": "PolyForm-Small-Business-1.0.0", + "seeAlso": [ + "https://polyformproject.org/licenses/small-business/1.0.0" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/PostgreSQL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/PostgreSQL.json", + "referenceNumber": 390, + "name": "PostgreSQL License", + "licenseId": "PostgreSQL", + "seeAlso": [ + "http://www.postgresql.org/about/licence", + "https://opensource.org/licenses/PostgreSQL" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/PSF-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/PSF-2.0.json", + "referenceNumber": 381, + "name": "Python Software Foundation License 2.0", + "licenseId": "PSF-2.0", + "seeAlso": [ + "https://opensource.org/licenses/Python-2.0" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/psfrag.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/psfrag.json", + "referenceNumber": 150, + "name": "psfrag License", + "licenseId": "psfrag", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/psfrag" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/psutils.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/psutils.json", + "referenceNumber": 146, + "name": "psutils License", + "licenseId": "psutils", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/psutils" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Python-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Python-2.0.json", + "referenceNumber": 383, + "name": "Python License 2.0", + "licenseId": "Python-2.0", + "seeAlso": [ + "https://opensource.org/licenses/Python-2.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/Python-2.0.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Python-2.0.1.json", + "referenceNumber": 559, + "name": "Python License 2.0.1", + "licenseId": "Python-2.0.1", + "seeAlso": [ + "https://www.python.org/download/releases/2.0.1/license/", + "https://docs.python.org/3/license.html", + "https://github.com/python/cpython/blob/main/LICENSE" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/python-ldap.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/python-ldap.json", + "referenceNumber": 581, + "name": "Python ldap License", + "licenseId": "python-ldap", + "seeAlso": [ + "https://github.com/python-ldap/python-ldap/blob/main/LICENCE" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Qhull.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Qhull.json", + "referenceNumber": 241, + "name": "Qhull License", + "licenseId": "Qhull", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Qhull" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/QPL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/QPL-1.0.json", + "referenceNumber": 459, + "name": "Q Public License 1.0", + "licenseId": "QPL-1.0", + "seeAlso": [ + "http://doc.qt.nokia.com/3.3/license.html", + "https://opensource.org/licenses/QPL-1.0", + "https://doc.qt.io/archives/3.3/license.html" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/QPL-1.0-INRIA-2004.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/QPL-1.0-INRIA-2004.json", + "referenceNumber": 537, + "name": "Q Public License 1.0 - INRIA 2004 variant", + "licenseId": "QPL-1.0-INRIA-2004", + "seeAlso": [ + "https://github.com/maranget/hevea/blob/master/LICENSE" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/radvd.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/radvd.json", + "referenceNumber": 5, + "name": "radvd License", + "licenseId": "radvd", + "seeAlso": [ + "https://github.com/radvd-project/radvd/blob/master/COPYRIGHT" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Rdisc.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Rdisc.json", + "referenceNumber": 591, + "name": "Rdisc License", + "licenseId": "Rdisc", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Rdisc_License" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/RHeCos-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/RHeCos-1.1.json", + "referenceNumber": 484, + "name": "Red Hat eCos Public License v1.1", + "licenseId": "RHeCos-1.1", + "seeAlso": [ + "http://ecos.sourceware.org/old-license.html" + ], + "isOsiApproved": false, + "isFsfLibre": false + }, + { + "reference": "https://spdx.org/licenses/RPL-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/RPL-1.1.json", + "referenceNumber": 613, + "name": "Reciprocal Public License 1.1", + "licenseId": "RPL-1.1", + "seeAlso": [ + "https://opensource.org/licenses/RPL-1.1" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/RPL-1.5.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/RPL-1.5.json", + "referenceNumber": 531, + "name": "Reciprocal Public License 1.5", + "licenseId": "RPL-1.5", + "seeAlso": [ + "https://opensource.org/licenses/RPL-1.5" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/RPSL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/RPSL-1.0.json", + "referenceNumber": 168, + "name": "RealNetworks Public Source License v1.0", + "licenseId": "RPSL-1.0", + "seeAlso": [ + "https://helixcommunity.org/content/rpsl", + "https://opensource.org/licenses/RPSL-1.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/RSA-MD.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/RSA-MD.json", + "referenceNumber": 515, + "name": "RSA Message-Digest License", + "licenseId": "RSA-MD", + "seeAlso": [ + "http://www.faqs.org/rfcs/rfc1321.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/RSCPL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/RSCPL.json", + "referenceNumber": 580, + "name": "Ricoh Source Code Public License", + "licenseId": "RSCPL", + "seeAlso": [ + "http://wayback.archive.org/web/20060715140826/http://www.risource.org/RPL/RPL-1.0A.shtml", + "https://opensource.org/licenses/RSCPL" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/Ruby.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Ruby.json", + "referenceNumber": 528, + "name": "Ruby License", + "licenseId": "Ruby", + "seeAlso": [ + "https://www.ruby-lang.org/en/about/license.txt" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/SAX-PD.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SAX-PD.json", + "referenceNumber": 169, + "name": "Sax Public Domain Notice", + "licenseId": "SAX-PD", + "seeAlso": [ + "http://www.saxproject.org/copying.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/SAX-PD-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SAX-PD-2.0.json", + "referenceNumber": 585, + "name": "Sax Public Domain Notice 2.0", + "licenseId": "SAX-PD-2.0", + "seeAlso": [ + "http://www.saxproject.org/copying.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Saxpath.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Saxpath.json", + "referenceNumber": 430, + "name": "Saxpath License", + "licenseId": "Saxpath", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Saxpath_License" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/SCEA.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SCEA.json", + "referenceNumber": 230, + "name": "SCEA Shared Source License", + "licenseId": "SCEA", + "seeAlso": [ + "http://research.scea.com/scea_shared_source_license.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/SchemeReport.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SchemeReport.json", + "referenceNumber": 552, + "name": "Scheme Language Report License", + "licenseId": "SchemeReport", + "seeAlso": [], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Sendmail.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Sendmail.json", + "referenceNumber": 427, + "name": "Sendmail License", + "licenseId": "Sendmail", + "seeAlso": [ + "http://www.sendmail.com/pdfs/open_source/sendmail_license.pdf", + "https://web.archive.org/web/20160322142305/https://www.sendmail.com/pdfs/open_source/sendmail_license.pdf" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Sendmail-8.23.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Sendmail-8.23.json", + "referenceNumber": 24, + "name": "Sendmail License 8.23", + "licenseId": "Sendmail-8.23", + "seeAlso": [ + "https://www.proofpoint.com/sites/default/files/sendmail-license.pdf", + "https://web.archive.org/web/20181003101040/https://www.proofpoint.com/sites/default/files/sendmail-license.pdf" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/SGI-B-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SGI-B-1.0.json", + "referenceNumber": 25, + "name": "SGI Free Software License B v1.0", + "licenseId": "SGI-B-1.0", + "seeAlso": [ + "http://oss.sgi.com/projects/FreeB/SGIFreeSWLicB.1.0.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/SGI-B-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SGI-B-1.1.json", + "referenceNumber": 16, + "name": "SGI Free Software License B v1.1", + "licenseId": "SGI-B-1.1", + "seeAlso": [ + "http://oss.sgi.com/projects/FreeB/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/SGI-B-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SGI-B-2.0.json", + "referenceNumber": 431, + "name": "SGI Free Software License B v2.0", + "licenseId": "SGI-B-2.0", + "seeAlso": [ + "http://oss.sgi.com/projects/FreeB/SGIFreeSWLicB.2.0.pdf" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/SGI-OpenGL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SGI-OpenGL.json", + "referenceNumber": 408, + "name": "SGI OpenGL License", + "licenseId": "SGI-OpenGL", + "seeAlso": [ + "https://gitlab.freedesktop.org/mesa/glw/-/blob/master/README?ref_type\u003dheads" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/SGP4.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SGP4.json", + "referenceNumber": 461, + "name": "SGP4 Permission Notice", + "licenseId": "SGP4", + "seeAlso": [ + "https://celestrak.org/publications/AIAA/2006-6753/faq.php" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/SHL-0.5.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SHL-0.5.json", + "referenceNumber": 298, + "name": "Solderpad Hardware License v0.5", + "licenseId": "SHL-0.5", + "seeAlso": [ + "https://solderpad.org/licenses/SHL-0.5/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/SHL-0.51.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SHL-0.51.json", + "referenceNumber": 504, + "name": "Solderpad Hardware License, Version 0.51", + "licenseId": "SHL-0.51", + "seeAlso": [ + "https://solderpad.org/licenses/SHL-0.51/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/SimPL-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SimPL-2.0.json", + "referenceNumber": 617, + "name": "Simple Public License 2.0", + "licenseId": "SimPL-2.0", + "seeAlso": [ + "https://opensource.org/licenses/SimPL-2.0" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/SISSL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SISSL.json", + "referenceNumber": 525, + "name": "Sun Industry Standards Source License v1.1", + "licenseId": "SISSL", + "seeAlso": [ + "http://www.openoffice.org/licenses/sissl_license.html", + "https://opensource.org/licenses/SISSL" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/SISSL-1.2.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SISSL-1.2.json", + "referenceNumber": 493, + "name": "Sun Industry Standards Source License v1.2", + "licenseId": "SISSL-1.2", + "seeAlso": [ + "http://gridscheduler.sourceforge.net/Gridengine_SISSL_license.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/SL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SL.json", + "referenceNumber": 190, + "name": "SL License", + "licenseId": "SL", + "seeAlso": [ + "https://github.com/mtoyoda/sl/blob/master/LICENSE" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Sleepycat.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Sleepycat.json", + "referenceNumber": 239, + "name": "Sleepycat License", + "licenseId": "Sleepycat", + "seeAlso": [ + "https://opensource.org/licenses/Sleepycat" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/SMLNJ.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SMLNJ.json", + "referenceNumber": 63, + "name": "Standard ML of New Jersey License", + "licenseId": "SMLNJ", + "seeAlso": [ + "https://www.smlnj.org/license.html" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/SMPPL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SMPPL.json", + "referenceNumber": 193, + "name": "Secure Messaging Protocol Public License", + "licenseId": "SMPPL", + "seeAlso": [ + "https://github.com/dcblake/SMP/blob/master/Documentation/License.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/SNIA.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SNIA.json", + "referenceNumber": 211, + "name": "SNIA Public License 1.1", + "licenseId": "SNIA", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/SNIA_Public_License" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/snprintf.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/snprintf.json", + "referenceNumber": 159, + "name": "snprintf License", + "licenseId": "snprintf", + "seeAlso": [ + "https://github.com/openssh/openssh-portable/blob/master/openbsd-compat/bsd-snprintf.c#L2" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/softSurfer.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/softSurfer.json", + "referenceNumber": 489, + "name": "softSurfer License", + "licenseId": "softSurfer", + "seeAlso": [ + "https://github.com/mm2/Little-CMS/blob/master/src/cmssm.c#L207", + "https://fedoraproject.org/wiki/Licensing/softSurfer" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Soundex.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Soundex.json", + "referenceNumber": 43, + "name": "Soundex License", + "licenseId": "Soundex", + "seeAlso": [ + "https://metacpan.org/release/RJBS/Text-Soundex-3.05/source/Soundex.pm#L3-11" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Spencer-86.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Spencer-86.json", + "referenceNumber": 469, + "name": "Spencer License 86", + "licenseId": "Spencer-86", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Henry_Spencer_Reg-Ex_Library_License" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Spencer-94.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Spencer-94.json", + "referenceNumber": 583, + "name": "Spencer License 94", + "licenseId": "Spencer-94", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Henry_Spencer_Reg-Ex_Library_License", + "https://metacpan.org/release/KNOK/File-MMagic-1.30/source/COPYING#L28" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Spencer-99.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Spencer-99.json", + "referenceNumber": 420, + "name": "Spencer License 99", + "licenseId": "Spencer-99", + "seeAlso": [ + "http://www.opensource.apple.com/source/tcl/tcl-5/tcl/generic/regfronts.c" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/SPL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SPL-1.0.json", + "referenceNumber": 3, + "name": "Sun Public License v1.0", + "licenseId": "SPL-1.0", + "seeAlso": [ + "https://opensource.org/licenses/SPL-1.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/ssh-keyscan.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/ssh-keyscan.json", + "referenceNumber": 84, + "name": "ssh-keyscan License", + "licenseId": "ssh-keyscan", + "seeAlso": [ + "https://github.com/openssh/openssh-portable/blob/master/LICENCE#L82" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/SSH-OpenSSH.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SSH-OpenSSH.json", + "referenceNumber": 364, + "name": "SSH OpenSSH license", + "licenseId": "SSH-OpenSSH", + "seeAlso": [ + "https://github.com/openssh/openssh-portable/blob/1b11ea7c58cd5c59838b5fa574cd456d6047b2d4/LICENCE#L10" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/SSH-short.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SSH-short.json", + "referenceNumber": 428, + "name": "SSH short notice", + "licenseId": "SSH-short", + "seeAlso": [ + "https://github.com/openssh/openssh-portable/blob/1b11ea7c58cd5c59838b5fa574cd456d6047b2d4/pathnames.h", + "http://web.mit.edu/kolya/.f/root/athena.mit.edu/sipb.mit.edu/project/openssh/OldFiles/src/openssh-2.9.9p2/ssh-add.1", + "https://joinup.ec.europa.eu/svn/lesoll/trunk/italc/lib/src/dsa_key.cpp" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/SSLeay-standalone.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SSLeay-standalone.json", + "referenceNumber": 419, + "name": "SSLeay License - standalone", + "licenseId": "SSLeay-standalone", + "seeAlso": [ + "https://www.tq-group.com/filedownloads/files/software-license-conditions/OriginalSSLeay/OriginalSSLeay.pdf" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/SSPL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SSPL-1.0.json", + "referenceNumber": 156, + "name": "Server Side Public License, v 1", + "licenseId": "SSPL-1.0", + "seeAlso": [ + "https://www.mongodb.com/licensing/server-side-public-license" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/StandardML-NJ.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/StandardML-NJ.json", + "referenceNumber": 510, + "name": "Standard ML of New Jersey License", + "licenseId": "StandardML-NJ", + "seeAlso": [ + "https://www.smlnj.org/license.html" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/SugarCRM-1.1.3.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SugarCRM-1.1.3.json", + "referenceNumber": 33, + "name": "SugarCRM Public License v1.1.3", + "licenseId": "SugarCRM-1.1.3", + "seeAlso": [ + "http://www.sugarcrm.com/crm/SPL" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Sun-PPP.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Sun-PPP.json", + "referenceNumber": 598, + "name": "Sun PPP License", + "licenseId": "Sun-PPP", + "seeAlso": [ + "https://github.com/ppp-project/ppp/blob/master/pppd/eap.c#L7-L16" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/SunPro.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SunPro.json", + "referenceNumber": 95, + "name": "SunPro License", + "licenseId": "SunPro", + "seeAlso": [ + "https://github.com/freebsd/freebsd-src/blob/main/lib/msun/src/e_acosh.c", + "https://github.com/freebsd/freebsd-src/blob/main/lib/msun/src/e_lgammal.c" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/SWL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SWL.json", + "referenceNumber": 360, + "name": "Scheme Widget Library (SWL) Software License Agreement", + "licenseId": "SWL", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/SWL" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/swrule.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/swrule.json", + "referenceNumber": 362, + "name": "swrule License", + "licenseId": "swrule", + "seeAlso": [ + "https://ctan.math.utah.edu/ctan/tex-archive/macros/generic/misc/swrule.sty" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Symlinks.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Symlinks.json", + "referenceNumber": 488, + "name": "Symlinks License", + "licenseId": "Symlinks", + "seeAlso": [ + "https://www.mail-archive.com/debian-bugs-rc@lists.debian.org/msg11494.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/TAPR-OHL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/TAPR-OHL-1.0.json", + "referenceNumber": 403, + "name": "TAPR Open Hardware License v1.0", + "licenseId": "TAPR-OHL-1.0", + "seeAlso": [ + "https://www.tapr.org/OHL" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/TCL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/TCL.json", + "referenceNumber": 494, + "name": "TCL/TK License", + "licenseId": "TCL", + "seeAlso": [ + "http://www.tcl.tk/software/tcltk/license.html", + "https://fedoraproject.org/wiki/Licensing/TCL" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/TCP-wrappers.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/TCP-wrappers.json", + "referenceNumber": 194, + "name": "TCP Wrappers License", + "licenseId": "TCP-wrappers", + "seeAlso": [ + "http://rc.quest.com/topics/openssh/license.php#tcpwrappers" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/TermReadKey.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/TermReadKey.json", + "referenceNumber": 412, + "name": "TermReadKey License", + "licenseId": "TermReadKey", + "seeAlso": [ + "https://github.com/jonathanstowe/TermReadKey/blob/master/README#L9-L10" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/TGPPL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/TGPPL-1.0.json", + "referenceNumber": 208, + "name": "Transitive Grace Period Public Licence 1.0", + "licenseId": "TGPPL-1.0", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/TGPPL", + "https://tahoe-lafs.org/trac/tahoe-lafs/browser/trunk/COPYING.TGPPL.rst" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/TMate.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/TMate.json", + "referenceNumber": 541, + "name": "TMate Open Source License", + "licenseId": "TMate", + "seeAlso": [ + "http://svnkit.com/license.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/TORQUE-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/TORQUE-1.1.json", + "referenceNumber": 332, + "name": "TORQUE v2.5+ Software License v1.1", + "licenseId": "TORQUE-1.1", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/TORQUEv1.1" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/TOSL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/TOSL.json", + "referenceNumber": 574, + "name": "Trusster Open Source License", + "licenseId": "TOSL", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/TOSL" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/TPDL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/TPDL.json", + "referenceNumber": 302, + "name": "Time::ParseDate License", + "licenseId": "TPDL", + "seeAlso": [ + "https://metacpan.org/pod/Time::ParseDate#LICENSE" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/TPL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/TPL-1.0.json", + "referenceNumber": 134, + "name": "THOR Public License 1.0", + "licenseId": "TPL-1.0", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing:ThorPublicLicense" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/TTWL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/TTWL.json", + "referenceNumber": 28, + "name": "Text-Tabs+Wrap License", + "licenseId": "TTWL", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/TTWL", + "https://github.com/ap/Text-Tabs/blob/master/lib.modern/Text/Tabs.pm#L148" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/TTYP0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/TTYP0.json", + "referenceNumber": 207, + "name": "TTYP0 License", + "licenseId": "TTYP0", + "seeAlso": [ + "https://people.mpi-inf.mpg.de/~uwe/misc/uw-ttyp0/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/TU-Berlin-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/TU-Berlin-1.0.json", + "referenceNumber": 98, + "name": "Technische Universitaet Berlin License 1.0", + "licenseId": "TU-Berlin-1.0", + "seeAlso": [ + "https://github.com/swh/ladspa/blob/7bf6f3799fdba70fda297c2d8fd9f526803d9680/gsm/COPYRIGHT" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/TU-Berlin-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/TU-Berlin-2.0.json", + "referenceNumber": 533, + "name": "Technische Universitaet Berlin License 2.0", + "licenseId": "TU-Berlin-2.0", + "seeAlso": [ + "https://github.com/CorsixTH/deps/blob/fd339a9f526d1d9c9f01ccf39e438a015da50035/licences/libgsm.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/UCAR.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/UCAR.json", + "referenceNumber": 371, + "name": "UCAR License", + "licenseId": "UCAR", + "seeAlso": [ + "https://github.com/Unidata/UDUNITS-2/blob/master/COPYRIGHT" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/UCL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/UCL-1.0.json", + "referenceNumber": 88, + "name": "Upstream Compatibility License v1.0", + "licenseId": "UCL-1.0", + "seeAlso": [ + "https://opensource.org/licenses/UCL-1.0" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/ulem.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/ulem.json", + "referenceNumber": 401, + "name": "ulem License", + "licenseId": "ulem", + "seeAlso": [ + "https://mirrors.ctan.org/macros/latex/contrib/ulem/README" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/UMich-Merit.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/UMich-Merit.json", + "referenceNumber": 413, + "name": "Michigan/Merit Networks License", + "licenseId": "UMich-Merit", + "seeAlso": [ + "https://github.com/radcli/radcli/blob/master/COPYRIGHT#L64" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Unicode-3.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Unicode-3.0.json", + "referenceNumber": 287, + "name": "Unicode License v3", + "licenseId": "Unicode-3.0", + "seeAlso": [ + "https://www.unicode.org/license.txt" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/Unicode-DFS-2015.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Unicode-DFS-2015.json", + "referenceNumber": 137, + "name": "Unicode License Agreement - Data Files and Software (2015)", + "licenseId": "Unicode-DFS-2015", + "seeAlso": [ + "https://web.archive.org/web/20151224134844/http://unicode.org/copyright.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Unicode-DFS-2016.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Unicode-DFS-2016.json", + "referenceNumber": 295, + "name": "Unicode License Agreement - Data Files and Software (2016)", + "licenseId": "Unicode-DFS-2016", + "seeAlso": [ + "https://www.unicode.org/license.txt", + "http://web.archive.org/web/20160823201924/http://www.unicode.org/copyright.html#License", + "http://www.unicode.org/copyright.html" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/Unicode-TOU.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Unicode-TOU.json", + "referenceNumber": 432, + "name": "Unicode Terms of Use", + "licenseId": "Unicode-TOU", + "seeAlso": [ + "http://web.archive.org/web/20140704074106/http://www.unicode.org/copyright.html", + "http://www.unicode.org/copyright.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/UnixCrypt.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/UnixCrypt.json", + "referenceNumber": 275, + "name": "UnixCrypt License", + "licenseId": "UnixCrypt", + "seeAlso": [ + "https://foss.heptapod.net/python-libs/passlib/-/blob/branch/stable/LICENSE#L70", + "https://opensource.apple.com/source/JBoss/JBoss-737/jboss-all/jetty/src/main/org/mortbay/util/UnixCrypt.java.auto.html", + "https://archive.eclipse.org/jetty/8.0.1.v20110908/xref/org/eclipse/jetty/http/security/UnixCrypt.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Unlicense.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Unlicense.json", + "referenceNumber": 58, + "name": "The Unlicense", + "licenseId": "Unlicense", + "seeAlso": [ + "https://unlicense.org/" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/UPL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/UPL-1.0.json", + "referenceNumber": 165, + "name": "Universal Permissive License v1.0", + "licenseId": "UPL-1.0", + "seeAlso": [ + "https://opensource.org/licenses/UPL" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/URT-RLE.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/URT-RLE.json", + "referenceNumber": 416, + "name": "Utah Raster Toolkit Run Length Encoded License", + "licenseId": "URT-RLE", + "seeAlso": [ + "https://sourceforge.net/p/netpbm/code/HEAD/tree/super_stable/converter/other/pnmtorle.c", + "https://sourceforge.net/p/netpbm/code/HEAD/tree/super_stable/converter/other/rletopnm.c" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Vim.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Vim.json", + "referenceNumber": 296, + "name": "Vim License", + "licenseId": "Vim", + "seeAlso": [ + "http://vimdoc.sourceforge.net/htmldoc/uganda.html" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/VOSTROM.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/VOSTROM.json", + "referenceNumber": 516, + "name": "VOSTROM Public License for Open Source", + "licenseId": "VOSTROM", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/VOSTROM" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/VSL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/VSL-1.0.json", + "referenceNumber": 440, + "name": "Vovida Software License v1.0", + "licenseId": "VSL-1.0", + "seeAlso": [ + "https://opensource.org/licenses/VSL-1.0" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/W3C.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/W3C.json", + "referenceNumber": 13, + "name": "W3C Software Notice and License (2002-12-31)", + "licenseId": "W3C", + "seeAlso": [ + "http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231.html", + "https://opensource.org/licenses/W3C" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/W3C-19980720.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/W3C-19980720.json", + "referenceNumber": 625, + "name": "W3C Software Notice and License (1998-07-20)", + "licenseId": "W3C-19980720", + "seeAlso": [ + "http://www.w3.org/Consortium/Legal/copyright-software-19980720.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/W3C-20150513.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/W3C-20150513.json", + "referenceNumber": 524, + "name": "W3C Software Notice and Document License (2015-05-13)", + "licenseId": "W3C-20150513", + "seeAlso": [ + "https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/w3m.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/w3m.json", + "referenceNumber": 509, + "name": "w3m License", + "licenseId": "w3m", + "seeAlso": [ + "https://github.com/tats/w3m/blob/master/COPYING" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Watcom-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Watcom-1.0.json", + "referenceNumber": 81, + "name": "Sybase Open Watcom Public License 1.0", + "licenseId": "Watcom-1.0", + "seeAlso": [ + "https://opensource.org/licenses/Watcom-1.0" + ], + "isOsiApproved": true, + "isFsfLibre": false + }, + { + "reference": "https://spdx.org/licenses/Widget-Workshop.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Widget-Workshop.json", + "referenceNumber": 503, + "name": "Widget Workshop License", + "licenseId": "Widget-Workshop", + "seeAlso": [ + "https://github.com/novnc/noVNC/blob/master/core/crypto/des.js#L24" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Wsuipa.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Wsuipa.json", + "referenceNumber": 612, + "name": "Wsuipa License", + "licenseId": "Wsuipa", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Wsuipa" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/WTFPL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/WTFPL.json", + "referenceNumber": 315, + "name": "Do What The F*ck You Want To Public License", + "licenseId": "WTFPL", + "seeAlso": [ + "http://www.wtfpl.net/about/", + "http://sam.zoy.org/wtfpl/COPYING" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/wxWindows.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/wxWindows.json", + "referenceNumber": 274, + "name": "wxWindows Library License", + "licenseId": "wxWindows", + "seeAlso": [ + "https://opensource.org/licenses/WXwindows" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/X11.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/X11.json", + "referenceNumber": 518, + "name": "X11 License", + "licenseId": "X11", + "seeAlso": [ + "http://www.xfree86.org/3.3.6/COPYRIGHT2.html#3" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/X11-distribute-modifications-variant.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/X11-distribute-modifications-variant.json", + "referenceNumber": 587, + "name": "X11 License Distribution Modification Variant", + "licenseId": "X11-distribute-modifications-variant", + "seeAlso": [ + "https://github.com/mirror/ncurses/blob/master/COPYING" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Xdebug-1.03.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Xdebug-1.03.json", + "referenceNumber": 198, + "name": "Xdebug License v 1.03", + "licenseId": "Xdebug-1.03", + "seeAlso": [ + "https://github.com/xdebug/xdebug/blob/master/LICENSE" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Xerox.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Xerox.json", + "referenceNumber": 320, + "name": "Xerox License", + "licenseId": "Xerox", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Xerox" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Xfig.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Xfig.json", + "referenceNumber": 171, + "name": "Xfig License", + "licenseId": "Xfig", + "seeAlso": [ + "https://github.com/Distrotech/transfig/blob/master/transfig/transfig.c", + "https://fedoraproject.org/wiki/Licensing:MIT#Xfig_Variant", + "https://sourceforge.net/p/mcj/xfig/ci/master/tree/src/Makefile.am" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/XFree86-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/XFree86-1.1.json", + "referenceNumber": 247, + "name": "XFree86 License 1.1", + "licenseId": "XFree86-1.1", + "seeAlso": [ + "http://www.xfree86.org/current/LICENSE4.html" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/xinetd.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/xinetd.json", + "referenceNumber": 17, + "name": "xinetd License", + "licenseId": "xinetd", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Xinetd_License" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/xkeyboard-config-Zinoviev.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/xkeyboard-config-Zinoviev.json", + "referenceNumber": 445, + "name": "xkeyboard-config Zinoviev License", + "licenseId": "xkeyboard-config-Zinoviev", + "seeAlso": [ + "https://gitlab.freedesktop.org/xkeyboard-config/xkeyboard-config/-/blob/master/COPYING?ref_type\u003dheads#L178" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/xlock.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/xlock.json", + "referenceNumber": 361, + "name": "xlock License", + "licenseId": "xlock", + "seeAlso": [ + "https://fossies.org/linux/tiff/contrib/ras/ras2tif.c" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Xnet.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Xnet.json", + "referenceNumber": 125, + "name": "X.Net License", + "licenseId": "Xnet", + "seeAlso": [ + "https://opensource.org/licenses/Xnet" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/xpp.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/xpp.json", + "referenceNumber": 55, + "name": "XPP License", + "licenseId": "xpp", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/xpp" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/XSkat.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/XSkat.json", + "referenceNumber": 356, + "name": "XSkat License", + "licenseId": "XSkat", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/XSkat_License" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/YPL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/YPL-1.0.json", + "referenceNumber": 27, + "name": "Yahoo! Public License v1.0", + "licenseId": "YPL-1.0", + "seeAlso": [ + "http://www.zimbra.com/license/yahoo_public_license_1.0.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/YPL-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/YPL-1.1.json", + "referenceNumber": 170, + "name": "Yahoo! Public License v1.1", + "licenseId": "YPL-1.1", + "seeAlso": [ + "http://www.zimbra.com/license/yahoo_public_license_1.1.html" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/Zed.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Zed.json", + "referenceNumber": 505, + "name": "Zed License", + "licenseId": "Zed", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Zed" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Zeeff.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Zeeff.json", + "referenceNumber": 177, + "name": "Zeeff License", + "licenseId": "Zeeff", + "seeAlso": [ + "ftp://ftp.tin.org/pub/news/utils/newsx/newsx-1.6.tar.gz" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Zend-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Zend-2.0.json", + "referenceNumber": 290, + "name": "Zend License v2.0", + "licenseId": "Zend-2.0", + "seeAlso": [ + "https://web.archive.org/web/20130517195954/http://www.zend.com/license/2_00.txt" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/Zimbra-1.3.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Zimbra-1.3.json", + "referenceNumber": 561, + "name": "Zimbra Public License v1.3", + "licenseId": "Zimbra-1.3", + "seeAlso": [ + "http://web.archive.org/web/20100302225219/http://www.zimbra.com/license/zimbra-public-license-1-3.html" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/Zimbra-1.4.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Zimbra-1.4.json", + "referenceNumber": 185, + "name": "Zimbra Public License v1.4", + "licenseId": "Zimbra-1.4", + "seeAlso": [ + "http://www.zimbra.com/legal/zimbra-public-license-1-4" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Zlib.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Zlib.json", + "referenceNumber": 606, + "name": "zlib License", + "licenseId": "Zlib", + "seeAlso": [ + "http://www.zlib.net/zlib_license.html", + "https://opensource.org/licenses/Zlib" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/zlib-acknowledgement.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/zlib-acknowledgement.json", + "referenceNumber": 560, + "name": "zlib/libpng License with Acknowledgement", + "licenseId": "zlib-acknowledgement", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/ZlibWithAcknowledgement" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/ZPL-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/ZPL-1.1.json", + "referenceNumber": 79, + "name": "Zope Public License 1.1", + "licenseId": "ZPL-1.1", + "seeAlso": [ + "http://old.zope.org/Resources/License/ZPL-1.1" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/ZPL-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/ZPL-2.0.json", + "referenceNumber": 629, + "name": "Zope Public License 2.0", + "licenseId": "ZPL-2.0", + "seeAlso": [ + "http://old.zope.org/Resources/License/ZPL-2.0", + "https://opensource.org/licenses/ZPL-2.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/ZPL-2.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/ZPL-2.1.json", + "referenceNumber": 301, + "name": "Zope Public License 2.1", + "licenseId": "ZPL-2.1", + "seeAlso": [ + "http://old.zope.org/Resources/ZPL/" + ], + "isOsiApproved": true, + "isFsfLibre": true + } + ], + "releaseDate": "2024-02-08" +} \ No newline at end of file diff --git a/pkg/licenses/files/licenses_spdx_exception.json b/pkg/licenses/files/licenses_spdx_exception.json new file mode 100644 index 0000000..e2ad728 --- /dev/null +++ b/pkg/licenses/files/licenses_spdx_exception.json @@ -0,0 +1,772 @@ +{ + "licenseListVersion": "3.23", + "exceptions": [ + { + "reference": "./389-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./389-exception.html", + "referenceNumber": 41, + "name": "389 Directory Server Exception", + "licenseExceptionId": "389-exception", + "seeAlso": [ + "http://directory.fedoraproject.org/wiki/GPL_Exception_License_Text", + "https://web.archive.org/web/20080828121337/http://directory.fedoraproject.org/wiki/GPL_Exception_License_Text" + ] + }, + { + "reference": "./Asterisk-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./Asterisk-exception.html", + "referenceNumber": 25, + "name": "Asterisk exception", + "licenseExceptionId": "Asterisk-exception", + "seeAlso": [ + "https://github.com/asterisk/libpri/blob/7f91151e6bd10957c746c031c1f4a030e8146e9a/pri.c#L22", + "https://github.com/asterisk/libss7/blob/03e81bcd0d28ff25d4c77c78351ddadc82ff5c3f/ss7.c#L24" + ] + }, + { + "reference": "./Autoconf-exception-2.0.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./Autoconf-exception-2.0.html", + "referenceNumber": 47, + "name": "Autoconf exception 2.0", + "licenseExceptionId": "Autoconf-exception-2.0", + "seeAlso": [ + "http://ac-archive.sourceforge.net/doc/copyright.html", + "http://ftp.gnu.org/gnu/autoconf/autoconf-2.59.tar.gz" + ] + }, + { + "reference": "./Autoconf-exception-3.0.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./Autoconf-exception-3.0.html", + "referenceNumber": 18, + "name": "Autoconf exception 3.0", + "licenseExceptionId": "Autoconf-exception-3.0", + "seeAlso": [ + "http://www.gnu.org/licenses/autoconf-exception-3.0.html" + ] + }, + { + "reference": "./Autoconf-exception-generic.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./Autoconf-exception-generic.html", + "referenceNumber": 1, + "name": "Autoconf generic exception", + "licenseExceptionId": "Autoconf-exception-generic", + "seeAlso": [ + "https://launchpad.net/ubuntu/precise/+source/xmltooling/+copyright", + "https://tracker.debian.org/media/packages/s/sipwitch/copyright-1.9.15-3", + "https://opensource.apple.com/source/launchd/launchd-258.1/launchd/compile.auto.html", + "https://git.savannah.gnu.org/gitweb/?p\u003dgnulib.git;a\u003dblob;f\u003dgnulib-tool;h\u003d029a8cf377ad8d8f2d9e54061bf2f20496ad2eef;hb\u003d73c74ba0197e6566da6882c87b1adee63e24d75c#l407" + ] + }, + { + "reference": "./Autoconf-exception-generic-3.0.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./Autoconf-exception-generic-3.0.html", + "referenceNumber": 58, + "name": "Autoconf generic exception for GPL-3.0", + "licenseExceptionId": "Autoconf-exception-generic-3.0", + "seeAlso": [ + "https://src.fedoraproject.org/rpms/redhat-rpm-config/blob/rawhide/f/config.guess" + ] + }, + { + "reference": "./Autoconf-exception-macro.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./Autoconf-exception-macro.html", + "referenceNumber": 29, + "name": "Autoconf macro exception", + "licenseExceptionId": "Autoconf-exception-macro", + "seeAlso": [ + "https://github.com/freedesktop/xorg-macros/blob/39f07f7db58ebbf3dcb64a2bf9098ed5cf3d1223/xorg-macros.m4.in", + "https://www.gnu.org/software/autoconf-archive/ax_pthread.html", + "https://launchpad.net/ubuntu/precise/+source/xmltooling/+copyright" + ] + }, + { + "reference": "./Bison-exception-1.24.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./Bison-exception-1.24.html", + "referenceNumber": 53, + "name": "Bison exception 1.24", + "licenseExceptionId": "Bison-exception-1.24", + "seeAlso": [ + "https://github.com/arineng/rwhoisd/blob/master/rwhoisd/mkdb/y.tab.c#L180" + ] + }, + { + "reference": "./Bison-exception-2.2.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./Bison-exception-2.2.html", + "referenceNumber": 19, + "name": "Bison exception 2.2", + "licenseExceptionId": "Bison-exception-2.2", + "seeAlso": [ + "http://git.savannah.gnu.org/cgit/bison.git/tree/data/yacc.c?id\u003d193d7c7054ba7197b0789e14965b739162319b5e#n141" + ] + }, + { + "reference": "./Bootloader-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./Bootloader-exception.html", + "referenceNumber": 44, + "name": "Bootloader Distribution Exception", + "licenseExceptionId": "Bootloader-exception", + "seeAlso": [ + "https://github.com/pyinstaller/pyinstaller/blob/develop/COPYING.txt" + ] + }, + { + "reference": "./Classpath-exception-2.0.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./Classpath-exception-2.0.html", + "referenceNumber": 56, + "name": "Classpath exception 2.0", + "licenseExceptionId": "Classpath-exception-2.0", + "seeAlso": [ + "http://www.gnu.org/software/classpath/license.html", + "https://fedoraproject.org/wiki/Licensing/GPL_Classpath_Exception" + ] + }, + { + "reference": "./CLISP-exception-2.0.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./CLISP-exception-2.0.html", + "referenceNumber": 59, + "name": "CLISP exception 2.0", + "licenseExceptionId": "CLISP-exception-2.0", + "seeAlso": [ + "http://sourceforge.net/p/clisp/clisp/ci/default/tree/COPYRIGHT" + ] + }, + { + "reference": "./cryptsetup-OpenSSL-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./cryptsetup-OpenSSL-exception.html", + "referenceNumber": 30, + "name": "cryptsetup OpenSSL exception", + "licenseExceptionId": "cryptsetup-OpenSSL-exception", + "seeAlso": [ + "https://gitlab.com/cryptsetup/cryptsetup/-/blob/main/COPYING", + "https://gitlab.nic.cz/datovka/datovka/-/blob/develop/COPYING", + "https://github.com/nbs-system/naxsi/blob/951123ad456bdf5ac94e8d8819342fe3d49bc002/naxsi_src/naxsi_raw.c", + "http://web.mit.edu/jgross/arch/amd64_deb60/bin/mosh" + ] + }, + { + "reference": "./DigiRule-FOSS-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./DigiRule-FOSS-exception.html", + "referenceNumber": 26, + "name": "DigiRule FOSS License Exception", + "licenseExceptionId": "DigiRule-FOSS-exception", + "seeAlso": [ + "http://www.digirulesolutions.com/drupal/foss" + ] + }, + { + "reference": "./eCos-exception-2.0.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./eCos-exception-2.0.html", + "referenceNumber": 31, + "name": "eCos exception 2.0", + "licenseExceptionId": "eCos-exception-2.0", + "seeAlso": [ + "http://ecos.sourceware.org/license-overview.html" + ] + }, + { + "reference": "./Fawkes-Runtime-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./Fawkes-Runtime-exception.html", + "referenceNumber": 11, + "name": "Fawkes Runtime Exception", + "licenseExceptionId": "Fawkes-Runtime-exception", + "seeAlso": [ + "http://www.fawkesrobotics.org/about/license/" + ] + }, + { + "reference": "./FLTK-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./FLTK-exception.html", + "referenceNumber": 37, + "name": "FLTK exception", + "licenseExceptionId": "FLTK-exception", + "seeAlso": [ + "http://www.fltk.org/COPYING.php" + ] + }, + { + "reference": "./fmt-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./fmt-exception.html", + "referenceNumber": 35, + "name": "fmt exception", + "licenseExceptionId": "fmt-exception", + "seeAlso": [ + "https://github.com/fmtlib/fmt/blob/master/LICENSE", + "https://github.com/fmtlib/fmt/blob/2eb363297b24cd71a68ccfb20ff755430f17e60f/LICENSE#L22C1-L27C62" + ] + }, + { + "reference": "./Font-exception-2.0.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./Font-exception-2.0.html", + "referenceNumber": 38, + "name": "Font exception 2.0", + "licenseExceptionId": "Font-exception-2.0", + "seeAlso": [ + "http://www.gnu.org/licenses/gpl-faq.html#FontException" + ] + }, + { + "reference": "./freertos-exception-2.0.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./freertos-exception-2.0.html", + "referenceNumber": 17, + "name": "FreeRTOS Exception 2.0", + "licenseExceptionId": "freertos-exception-2.0", + "seeAlso": [ + "https://web.archive.org/web/20060809182744/http://www.freertos.org/a00114.html" + ] + }, + { + "reference": "./GCC-exception-2.0.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./GCC-exception-2.0.html", + "referenceNumber": 66, + "name": "GCC Runtime Library exception 2.0", + "licenseExceptionId": "GCC-exception-2.0", + "seeAlso": [ + "https://gcc.gnu.org/git/?p\u003dgcc.git;a\u003dblob;f\u003dgcc/libgcc1.c;h\u003d762f5143fc6eed57b6797c82710f3538aa52b40b;hb\u003dcb143a3ce4fb417c68f5fa2691a1b1b1053dfba9#l10", + "https://sourceware.org/git/?p\u003dglibc.git;a\u003dblob;f\u003dcsu/abi-note.c;h\u003dc2ec208e94fbe91f63d3c375bd254b884695d190;hb\u003dHEAD" + ] + }, + { + "reference": "./GCC-exception-2.0-note.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./GCC-exception-2.0-note.html", + "referenceNumber": 46, + "name": "GCC Runtime Library exception 2.0 - note variant", + "licenseExceptionId": "GCC-exception-2.0-note", + "seeAlso": [ + "https://sourceware.org/git/?p\u003dglibc.git;a\u003dblob;f\u003dsysdeps/x86_64/start.S" + ] + }, + { + "reference": "./GCC-exception-3.1.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./GCC-exception-3.1.html", + "referenceNumber": 12, + "name": "GCC Runtime Library exception 3.1", + "licenseExceptionId": "GCC-exception-3.1", + "seeAlso": [ + "http://www.gnu.org/licenses/gcc-exception-3.1.html" + ] + }, + { + "reference": "./Gmsh-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./Gmsh-exception.html", + "referenceNumber": 15, + "name": "Gmsh exception\u003e", + "licenseExceptionId": "Gmsh-exception", + "seeAlso": [ + "https://gitlab.onelab.info/gmsh/gmsh/-/raw/master/LICENSE.txt" + ] + }, + { + "reference": "./GNAT-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./GNAT-exception.html", + "referenceNumber": 7, + "name": "GNAT exception", + "licenseExceptionId": "GNAT-exception", + "seeAlso": [ + "https://github.com/AdaCore/florist/blob/master/libsrc/posix-configurable_file_limits.adb" + ] + }, + { + "reference": "./GNOME-examples-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./GNOME-examples-exception.html", + "referenceNumber": 32, + "name": "GNOME examples exception", + "licenseExceptionId": "GNOME-examples-exception", + "seeAlso": [ + "https://gitlab.gnome.org/Archive/gnome-devel-docs/-/blob/master/platform-demos/C/legal.xml?ref_type\u003dheads", + "http://meldmerge.org/help/" + ] + }, + { + "reference": "./GNU-compiler-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./GNU-compiler-exception.html", + "referenceNumber": 62, + "name": "GNU Compiler Exception", + "licenseExceptionId": "GNU-compiler-exception", + "seeAlso": [ + "https://sourceware.org/git?p\u003dbinutils-gdb.git;a\u003dblob;f\u003dlibiberty/unlink-if-ordinary.c;h\u003de49f2f2f67bfdb10d6b2bd579b0e01cad0fd708e;hb\u003dHEAD#l19" + ] + }, + { + "reference": "./gnu-javamail-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./gnu-javamail-exception.html", + "referenceNumber": 8, + "name": "GNU JavaMail exception", + "licenseExceptionId": "gnu-javamail-exception", + "seeAlso": [ + "http://www.gnu.org/software/classpathx/javamail/javamail.html" + ] + }, + { + "reference": "./GPL-3.0-interface-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./GPL-3.0-interface-exception.html", + "referenceNumber": 23, + "name": "GPL-3.0 Interface Exception", + "licenseExceptionId": "GPL-3.0-interface-exception", + "seeAlso": [ + "https://www.gnu.org/licenses/gpl-faq.en.html#LinkingOverControlledInterface" + ] + }, + { + "reference": "./GPL-3.0-linking-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./GPL-3.0-linking-exception.html", + "referenceNumber": 21, + "name": "GPL-3.0 Linking Exception", + "licenseExceptionId": "GPL-3.0-linking-exception", + "seeAlso": [ + "https://www.gnu.org/licenses/gpl-faq.en.html#GPLIncompatibleLibs" + ] + }, + { + "reference": "./GPL-3.0-linking-source-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./GPL-3.0-linking-source-exception.html", + "referenceNumber": 54, + "name": "GPL-3.0 Linking Exception (with Corresponding Source)", + "licenseExceptionId": "GPL-3.0-linking-source-exception", + "seeAlso": [ + "https://www.gnu.org/licenses/gpl-faq.en.html#GPLIncompatibleLibs", + "https://github.com/mirror/wget/blob/master/src/http.c#L20" + ] + }, + { + "reference": "./GPL-CC-1.0.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./GPL-CC-1.0.html", + "referenceNumber": 57, + "name": "GPL Cooperation Commitment 1.0", + "licenseExceptionId": "GPL-CC-1.0", + "seeAlso": [ + "https://github.com/gplcc/gplcc/blob/master/Project/COMMITMENT", + "https://gplcc.github.io/gplcc/Project/README-PROJECT.html" + ] + }, + { + "reference": "./GStreamer-exception-2005.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./GStreamer-exception-2005.html", + "referenceNumber": 28, + "name": "GStreamer Exception (2005)", + "licenseExceptionId": "GStreamer-exception-2005", + "seeAlso": [ + "https://gstreamer.freedesktop.org/documentation/frequently-asked-questions/licensing.html?gi-language\u003dc#licensing-of-applications-using-gstreamer" + ] + }, + { + "reference": "./GStreamer-exception-2008.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./GStreamer-exception-2008.html", + "referenceNumber": 67, + "name": "GStreamer Exception (2008)", + "licenseExceptionId": "GStreamer-exception-2008", + "seeAlso": [ + "https://gstreamer.freedesktop.org/documentation/frequently-asked-questions/licensing.html?gi-language\u003dc#licensing-of-applications-using-gstreamer" + ] + }, + { + "reference": "./i2p-gpl-java-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./i2p-gpl-java-exception.html", + "referenceNumber": 22, + "name": "i2p GPL+Java Exception", + "licenseExceptionId": "i2p-gpl-java-exception", + "seeAlso": [ + "http://geti2p.net/en/get-involved/develop/licenses#java_exception" + ] + }, + { + "reference": "./KiCad-libraries-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./KiCad-libraries-exception.html", + "referenceNumber": 39, + "name": "KiCad Libraries Exception", + "licenseExceptionId": "KiCad-libraries-exception", + "seeAlso": [ + "https://www.kicad.org/libraries/license/" + ] + }, + { + "reference": "./LGPL-3.0-linking-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./LGPL-3.0-linking-exception.html", + "referenceNumber": 13, + "name": "LGPL-3.0 Linking Exception", + "licenseExceptionId": "LGPL-3.0-linking-exception", + "seeAlso": [ + "https://raw.githubusercontent.com/go-xmlpath/xmlpath/v2/LICENSE", + "https://github.com/goamz/goamz/blob/master/LICENSE", + "https://github.com/juju/errors/blob/master/LICENSE" + ] + }, + { + "reference": "./libpri-OpenH323-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./libpri-OpenH323-exception.html", + "referenceNumber": 65, + "name": "libpri OpenH323 exception", + "licenseExceptionId": "libpri-OpenH323-exception", + "seeAlso": [ + "https://github.com/asterisk/libpri/blob/1.6.0/README#L19-L22" + ] + }, + { + "reference": "./Libtool-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./Libtool-exception.html", + "referenceNumber": 20, + "name": "Libtool Exception", + "licenseExceptionId": "Libtool-exception", + "seeAlso": [ + "http://git.savannah.gnu.org/cgit/libtool.git/tree/m4/libtool.m4", + "https://git.savannah.gnu.org/cgit/libtool.git/tree/libltdl/lt__alloc.c#n15" + ] + }, + { + "reference": "./Linux-syscall-note.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./Linux-syscall-note.html", + "referenceNumber": 34, + "name": "Linux Syscall Note", + "licenseExceptionId": "Linux-syscall-note", + "seeAlso": [ + "https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/COPYING" + ] + }, + { + "reference": "./LLGPL.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./LLGPL.html", + "referenceNumber": 51, + "name": "LLGPL Preamble", + "licenseExceptionId": "LLGPL", + "seeAlso": [ + "http://opensource.franz.com/preamble.html" + ] + }, + { + "reference": "./LLVM-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./LLVM-exception.html", + "referenceNumber": 24, + "name": "LLVM Exception", + "licenseExceptionId": "LLVM-exception", + "seeAlso": [ + "http://llvm.org/foundation/relicensing/LICENSE.txt" + ] + }, + { + "reference": "./LZMA-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./LZMA-exception.html", + "referenceNumber": 60, + "name": "LZMA exception", + "licenseExceptionId": "LZMA-exception", + "seeAlso": [ + "http://nsis.sourceforge.net/Docs/AppendixI.html#I.6" + ] + }, + { + "reference": "./mif-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./mif-exception.html", + "referenceNumber": 5, + "name": "Macros and Inline Functions Exception", + "licenseExceptionId": "mif-exception", + "seeAlso": [ + "http://www.scs.stanford.edu/histar/src/lib/cppsup/exception", + "http://dev.bertos.org/doxygen/", + "https://www.threadingbuildingblocks.org/licensing" + ] + }, + { + "reference": "./Nokia-Qt-exception-1.1.json", + "isDeprecatedLicenseId": true, + "detailsUrl": "./Nokia-Qt-exception-1.1.html", + "referenceNumber": 9, + "name": "Nokia Qt LGPL exception 1.1", + "licenseExceptionId": "Nokia-Qt-exception-1.1", + "seeAlso": [ + "https://www.keepassx.org/dev/projects/keepassx/repository/revisions/b8dfb9cc4d5133e0f09cd7533d15a4f1c19a40f2/entry/LICENSE.NOKIA-LGPL-EXCEPTION" + ] + }, + { + "reference": "./OCaml-LGPL-linking-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./OCaml-LGPL-linking-exception.html", + "referenceNumber": 63, + "name": "OCaml LGPL Linking Exception", + "licenseExceptionId": "OCaml-LGPL-linking-exception", + "seeAlso": [ + "https://caml.inria.fr/ocaml/license.en.html" + ] + }, + { + "reference": "./OCCT-exception-1.0.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./OCCT-exception-1.0.html", + "referenceNumber": 6, + "name": "Open CASCADE Exception 1.0", + "licenseExceptionId": "OCCT-exception-1.0", + "seeAlso": [ + "http://www.opencascade.com/content/licensing" + ] + }, + { + "reference": "./OpenJDK-assembly-exception-1.0.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./OpenJDK-assembly-exception-1.0.html", + "referenceNumber": 43, + "name": "OpenJDK Assembly exception 1.0", + "licenseExceptionId": "OpenJDK-assembly-exception-1.0", + "seeAlso": [ + "http://openjdk.java.net/legal/assembly-exception.html" + ] + }, + { + "reference": "./openvpn-openssl-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./openvpn-openssl-exception.html", + "referenceNumber": 52, + "name": "OpenVPN OpenSSL Exception", + "licenseExceptionId": "openvpn-openssl-exception", + "seeAlso": [ + "http://openvpn.net/index.php/license.html", + "https://github.com/psycopg/psycopg2/blob/2_9_3/LICENSE#L14" + ] + }, + { + "reference": "./PS-or-PDF-font-exception-20170817.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./PS-or-PDF-font-exception-20170817.html", + "referenceNumber": 14, + "name": "PS/PDF font exception (2017-08-17)", + "licenseExceptionId": "PS-or-PDF-font-exception-20170817", + "seeAlso": [ + "https://github.com/ArtifexSoftware/urw-base35-fonts/blob/65962e27febc3883a17e651cdb23e783668c996f/LICENSE" + ] + }, + { + "reference": "./QPL-1.0-INRIA-2004-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./QPL-1.0-INRIA-2004-exception.html", + "referenceNumber": 16, + "name": "INRIA QPL 1.0 2004 variant exception", + "licenseExceptionId": "QPL-1.0-INRIA-2004-exception", + "seeAlso": [ + "https://git.frama-c.com/pub/frama-c/-/blob/master/licenses/Q_MODIFIED_LICENSE", + "https://github.com/maranget/hevea/blob/master/LICENSE" + ] + }, + { + "reference": "./Qt-GPL-exception-1.0.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./Qt-GPL-exception-1.0.html", + "referenceNumber": 40, + "name": "Qt GPL exception 1.0", + "licenseExceptionId": "Qt-GPL-exception-1.0", + "seeAlso": [ + "http://code.qt.io/cgit/qt/qtbase.git/tree/LICENSE.GPL3-EXCEPT" + ] + }, + { + "reference": "./Qt-LGPL-exception-1.1.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./Qt-LGPL-exception-1.1.html", + "referenceNumber": 45, + "name": "Qt LGPL exception 1.1", + "licenseExceptionId": "Qt-LGPL-exception-1.1", + "seeAlso": [ + "http://code.qt.io/cgit/qt/qtbase.git/tree/LGPL_EXCEPTION.txt" + ] + }, + { + "reference": "./Qwt-exception-1.0.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./Qwt-exception-1.0.html", + "referenceNumber": 49, + "name": "Qwt exception 1.0", + "licenseExceptionId": "Qwt-exception-1.0", + "seeAlso": [ + "http://qwt.sourceforge.net/qwtlicense.html" + ] + }, + { + "reference": "./SANE-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./SANE-exception.html", + "referenceNumber": 48, + "name": "SANE Exception", + "licenseExceptionId": "SANE-exception", + "seeAlso": [ + "https://github.com/alexpevzner/sane-airscan/blob/master/LICENSE", + "https://gitlab.com/sane-project/backends/-/blob/master/sanei/sanei_pp.c?ref_type\u003dheads", + "https://gitlab.com/sane-project/frontends/-/blob/master/sanei/sanei_codec_ascii.c?ref_type\u003dheads" + ] + }, + { + "reference": "./SHL-2.0.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./SHL-2.0.html", + "referenceNumber": 33, + "name": "Solderpad Hardware License v2.0", + "licenseExceptionId": "SHL-2.0", + "seeAlso": [ + "https://solderpad.org/licenses/SHL-2.0/" + ] + }, + { + "reference": "./SHL-2.1.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./SHL-2.1.html", + "referenceNumber": 64, + "name": "Solderpad Hardware License v2.1", + "licenseExceptionId": "SHL-2.1", + "seeAlso": [ + "https://solderpad.org/licenses/SHL-2.1/" + ] + }, + { + "reference": "./stunnel-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./stunnel-exception.html", + "referenceNumber": 3, + "name": "stunnel Exception", + "licenseExceptionId": "stunnel-exception", + "seeAlso": [ + "https://github.com/mtrojnar/stunnel/blob/master/COPYING.md" + ] + }, + { + "reference": "./SWI-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./SWI-exception.html", + "referenceNumber": 50, + "name": "SWI exception", + "licenseExceptionId": "SWI-exception", + "seeAlso": [ + "https://github.com/SWI-Prolog/packages-clpqr/blob/bfa80b9270274f0800120d5b8e6fef42ac2dc6a5/clpqr/class.pl" + ] + }, + { + "reference": "./Swift-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./Swift-exception.html", + "referenceNumber": 42, + "name": "Swift Exception", + "licenseExceptionId": "Swift-exception", + "seeAlso": [ + "https://swift.org/LICENSE.txt", + "https://github.com/apple/swift-package-manager/blob/7ab2275f447a5eb37497ed63a9340f8a6d1e488b/LICENSE.txt#L205" + ] + }, + { + "reference": "./Texinfo-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./Texinfo-exception.html", + "referenceNumber": 36, + "name": "Texinfo exception", + "licenseExceptionId": "Texinfo-exception", + "seeAlso": [ + "https://git.savannah.gnu.org/cgit/automake.git/tree/lib/texinfo.tex?h\u003dv1.16.5#n23" + ] + }, + { + "reference": "./u-boot-exception-2.0.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./u-boot-exception-2.0.html", + "referenceNumber": 61, + "name": "U-Boot exception 2.0", + "licenseExceptionId": "u-boot-exception-2.0", + "seeAlso": [ + "http://git.denx.de/?p\u003du-boot.git;a\u003dblob;f\u003dLicenses/Exceptions" + ] + }, + { + "reference": "./UBDL-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./UBDL-exception.html", + "referenceNumber": 2, + "name": "Unmodified Binary Distribution exception", + "licenseExceptionId": "UBDL-exception", + "seeAlso": [ + "https://github.com/ipxe/ipxe/blob/master/COPYING.UBDL" + ] + }, + { + "reference": "./Universal-FOSS-exception-1.0.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./Universal-FOSS-exception-1.0.html", + "referenceNumber": 27, + "name": "Universal FOSS Exception, Version 1.0", + "licenseExceptionId": "Universal-FOSS-exception-1.0", + "seeAlso": [ + "https://oss.oracle.com/licenses/universal-foss-exception/" + ] + }, + { + "reference": "./vsftpd-openssl-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./vsftpd-openssl-exception.html", + "referenceNumber": 10, + "name": "vsftpd OpenSSL exception", + "licenseExceptionId": "vsftpd-openssl-exception", + "seeAlso": [ + "https://git.stg.centos.org/source-git/vsftpd/blob/f727873674d9c9cd7afcae6677aa782eb54c8362/f/LICENSE", + "https://launchpad.net/debian/squeeze/+source/vsftpd/+copyright", + "https://github.com/richardcochran/vsftpd/blob/master/COPYING" + ] + }, + { + "reference": "./WxWindows-exception-3.1.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./WxWindows-exception-3.1.html", + "referenceNumber": 4, + "name": "WxWindows Library Exception 3.1", + "licenseExceptionId": "WxWindows-exception-3.1", + "seeAlso": [ + "http://www.opensource.org/licenses/WXwindows" + ] + }, + { + "reference": "./x11vnc-openssl-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./x11vnc-openssl-exception.html", + "referenceNumber": 55, + "name": "x11vnc OpenSSL Exception", + "licenseExceptionId": "x11vnc-openssl-exception", + "seeAlso": [ + "https://github.com/LibVNC/x11vnc/blob/master/src/8to24.c#L22" + ] + } + ], + "releaseDate": "2024-02-08" +} \ No newline at end of file diff --git a/pkg/licenses/license.go b/pkg/licenses/license.go new file mode 100644 index 0000000..93e2fd1 --- /dev/null +++ b/pkg/licenses/license.go @@ -0,0 +1,215 @@ +// Copyright 2023 Interlynk.io +// +// 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. + +package licenses + +import ( + "errors" + "strings" + + go_spdx "github.com/github/go-spdx/v2/spdxexp" +) + +type License interface { + Name() string + ShortID() string + Deprecated() bool + OsiApproved() bool + FsfLibre() bool + FreeAnyUse() bool + Restrictive() bool + Exception() bool + Source() string +} + +type meta struct { + name string + short string + deprecated bool + osiApproved bool + fsfLibre bool + freeAnyUse bool + restrictive bool + exception bool + source string +} + +func (m meta) Name() string { + return m.name +} + +func (m meta) ShortID() string { + return m.short +} + +func (m meta) Deprecated() bool { + return m.deprecated +} + +func (m meta) OsiApproved() bool { + return m.osiApproved +} + +func (m meta) FsfLibre() bool { + return m.fsfLibre +} + +func (m meta) FreeAnyUse() bool { + return m.freeAnyUse +} + +func (m meta) Restrictive() bool { + return m.restrictive +} + +func (m meta) Exception() bool { + return m.exception +} + +func (m meta) Source() string { + return m.source +} + +func IsSpdxExpression(licenseKey string) bool { + licenses, err := go_spdx.ExtractLicenses(licenseKey) + if err != nil { + return false + } + + if len(licenses) <= 1 { + return false + } + + return true +} + +func LookupSpdxLicense(licenseKey string) (License, error) { + if licenseKey == "" { + return nil, errors.New("license not found") + } + + lowerKey := strings.ToLower(licenseKey) + + if lowerKey == "none" || lowerKey == "noassertion" { + return nil, errors.New("license not found") + } + + tLicKey := strings.TrimRight(licenseKey, "+") + + license, lok := licenseList[tLicKey] + if lok { + return license, nil + } + + return nil, errors.New("license not found") +} + +func LookupAdoutCodeLicense(licenseKey string) (License, error) { + if licenseKey == "" { + return nil, errors.New("license not found") + } + + lowerKey := strings.ToLower(licenseKey) + + if lowerKey == "none" || lowerKey == "noassertion" { + return nil, errors.New("license not found") + } + + tLicKey := strings.TrimRight(licenseKey, "+") + + abouLicense, aok := LicenseListAboutCode[tLicKey] + + if aok { + return abouLicense, nil + } + return nil, errors.New("license not found") +} + +func LookupLicense(licenseKey string) (License, error) { + spdxL, err := LookupSpdxLicense(licenseKey) + abcL, err2 := LookupAdoutCodeLicense(licenseKey) + + if err != nil && err2 != nil { + return nil, errors.New("license not found") + } + + if err == nil { + return spdxL, nil + } + + if err2 == nil { + return abcL, nil + } + + return nil, errors.New("license not found") +} + +func LookupExpression(expression string, customLicense []License) []License { + customLookup := func(licenseKey string) (License, error) { + if len(customLicense) == 0 { + return nil, errors.New("license not found") + } + + for _, l := range customLicense { + if l.ShortID() == licenseKey { + return l, nil + } + } + return nil, errors.New("license not found") + } + + if expression == "" || strings.ToLower(expression) == "none" || strings.ToLower(expression) == "noassertion" { + return []License{} + } + + licenses, err := go_spdx.ExtractLicenses(expression) + if err != nil { + return []License{CreateCustomLicense(expression, expression)} + } + + ls := []License{} + + for _, l := range licenses { + tLicKey := strings.TrimRight(l, "+") + lic, err := LookupLicense(tLicKey) + if err != nil { + custLic, err2 := customLookup(tLicKey) + if err2 != nil { + ls = append(ls, CreateCustomLicense(tLicKey, tLicKey)) + continue + } + ls = append(ls, custLic) + } + + if lic != nil { + ls = append(ls, lic) + } + } + + return ls +} + +func CreateCustomLicense(id, name string) License { + return meta{ + name: name, + short: id, + deprecated: false, + osiApproved: false, + fsfLibre: false, + freeAnyUse: false, + restrictive: false, + exception: false, + source: "custom", + } +} From e9acb193bc2b759873b4dcb38be378eac803ad7b Mon Sep 17 00:00:00 2001 From: Ritesh Noronha Date: Tue, 20 Aug 2024 17:02:28 -0700 Subject: [PATCH 2/4] Add Readme update --- README.md | 45 ++++++++++++++++++++++++++++++++++++++++--- pkg/edit/spdx_edit.go | 20 ++++++++++++------- 2 files changed, 55 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 1074dc7..2388040 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/interlynk-io/sbomasm/badge)](https://securityscorecards.dev/viewer/?uri=github.com/interlynk-io/sbomasm) ![GitHub all releases](https://img.shields.io/github/downloads/interlynk-io/sbomasm/total) -`sbomasm` is your primary tool to assemble SBOMs, for easy management and distribution. +`sbomasm` is your primary tool to assemble and edit SBOMs, for easy management and distribution. ```sh go install github.com/interlynk-io/sbomasm@latest @@ -35,11 +35,13 @@ other installation [options](#installation). )](https://app.interlynk.io/customer/products?id=c706ae8e-56dc-4386-9c8e-11c2401c0e94&signed_url_params=eyJfcmFpbHMiOnsibWVzc2FnZSI6IklqbGtaVFZqTVdKaUxUSTJPV0V0TkdNeE55MWhaVEZpTFRBek1ETmlOREF3TlRjNFpDST0iLCJleHAiOm51bGwsInB1ciI6InNoYXJlX2x5bmsvc2hhcmVfbHluayJ9fQ==--84180d9ed3c786dce7119abc7fc35eb7adb0fbc8a9093c4f6e7e5d0ad778089e) # Usage + +### Assemle SBOMs +```sh `SPDX` assemble multiple SBOMs ```sh sbomasm assemble -n "mega spdx app" -v "1.0.0" -t "application" -o final-product.spdx.json sdk.spdx.json demo-app.spdx.json report.spdx.json ``` - `CDX` assemble multiple SBOMs ```sh sbomasm assemble -n "mega cdx app" -v "1.0.0" -t "application" -o final-product.cdx.json sbom1.json sbom2.json sbom3.json @@ -57,10 +59,32 @@ docker run -v .:/app/sboms/ ghcr.io/interlynk-io/sbomasm:v0.1.3 assemble -n "ass sbomasm assemble -n "mega cdx app" -v "1.0.0" -t "application" -e 1.4 -o final-product.cdx.json sbom1.json sbom2.json sbom3.json ``` +### Edit SBOMs +Change the name and version of the primary component. +```sh +sbomasm edit --subject "primary-component" --name "cool-app" --version "v1.0.0" --type "application" --output cool-app-mod.spdx.json cool-app.spdx.json +``` + +Add supplier information & timestamp to the document, if missing. +```sh +sbomasm edit --missing --subject document --timestamp --supplier "interlynk (support@interlynk.io)" in-sbom-cdx.json +``` + +Append a new author to the primary component. +```sh +sbomasm edit --append --subject primary-component --author "abc (abc@gmail.com)" in-sbom-2.json +``` + +Find a component by name & version and add update its purl +```sh + sbomasm edit --subject component-name-version --search "abc (v1.0.0)" --purl "pkg:deb/debian/abc@1.0.0" in-sbom-3.json +``` + # Features - SBOM format agnostic -- Supports Hierarchial and Flat merging +- Supports Hierarchial/Flat and Assemble merging - Configurable primary component/package +- Edit metadata for SBOMs - Blazing fast :rocket: # Why should we assemble SBOMs? @@ -213,6 +237,21 @@ To get more details in case of issues or just information, run the above command The assembled SBOM can now be monitored using any SBOM monitoring tool of your choice. If you don't have one, contact us, we are building an SBOM monitor product to help with this. + +# Edit +The edit command allows you to modify an existing Software Bill of Materials (SBOM) by filling in gaps or adding information that may have been missed during the generation process. This command operates by first locating the entity to edit and then adding the required information. The goal of edit is not to provide a full editing experience but to help fill in filling in missing information useful for compliance and security purposes + +The edit command is spec and format agnostic. + +## Output + +## Fields +| Spec | Input SBOM Formats | Output SBOM formats | Output SBOM spec version | +|----------|----------|----------| -----------------------------| +| SPDX | json, yaml, rdf, tag-value | json, xml | 2.3 | + + + # Installation ## Using Prebuilt binaries diff --git a/pkg/edit/spdx_edit.go b/pkg/edit/spdx_edit.go index ce79bd1..c6925a8 100644 --- a/pkg/edit/spdx_edit.go +++ b/pkg/edit/spdx_edit.go @@ -427,16 +427,22 @@ func (d *spdxEditDoc) description() error { return errNoConfiguration } - if d.c.search.subject == "document" { - return errNotSupported - } - if d.c.onMissing() { - if d.pkg.PackageDescription == "" { - d.pkg.PackageDescription = d.c.description + if d.c.search.subject == "document" { + if d.bom.DocumentComment == "" { + d.bom.DocumentComment = d.c.description + } + } else { + if d.pkg.PackageDescription == "" { + d.pkg.PackageDescription = d.c.description + } } } else { - d.pkg.PackageDescription = d.c.description + if d.c.search.subject == "document" { + d.bom.DocumentComment = d.c.description + } else { + d.pkg.PackageDescription = d.c.description + } } return nil From f0e14cff478f302bd37955f35da28d26cfa7af4f Mon Sep 17 00:00:00 2001 From: Ritesh Noronha Date: Tue, 20 Aug 2024 17:04:15 -0700 Subject: [PATCH 3/4] more updates --- README.md | 109 +++++++++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 103 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 2388040..05b34af 100644 --- a/README.md +++ b/README.md @@ -62,7 +62,7 @@ sbomasm assemble -n "mega cdx app" -v "1.0.0" -t "application" -e 1.4 -o final-p ### Edit SBOMs Change the name and version of the primary component. ```sh -sbomasm edit --subject "primary-component" --name "cool-app" --version "v1.0.0" --type "application" --output cool-app-mod.spdx.json cool-app.spdx.json +sbomasm edit --subject primary-component --name "cool-app" --version "v1.0.0" --type "application" --output cool-app-mod.spdx.json cool-app.spdx.json ``` Add supplier information & timestamp to the document, if missing. @@ -241,16 +241,113 @@ The assembled SBOM can now be monitored using any SBOM monitoring tool of your c # Edit The edit command allows you to modify an existing Software Bill of Materials (SBOM) by filling in gaps or adding information that may have been missed during the generation process. This command operates by first locating the entity to edit and then adding the required information. The goal of edit is not to provide a full editing experience but to help fill in filling in missing information useful for compliance and security purposes -The edit command is spec and format agnostic. +## How it works +The edit command works based on locating entities and then modifying their metadata. -## Output +We support locating the following entities. +- Document: This is the SBOM itself. +- Primary Component: The primary component described by the SBOM. +- Any Component via search : Any component or package described by the SBOM, which can be located by name & version. -## Fields -| Spec | Input SBOM Formats | Output SBOM formats | Output SBOM spec version | +We support the following modifications operations +- Overwrite (default): This operation replaces the existing value with the new value or array with a new array of values +- Append: This operation appends the new value to the existing value or array of values, or concats strings. +- Missing: This operation is only applied if the field is missing. + +Fields we support by locations + +`Document` +| Input Param | Input Format | CDX Spec Field | SPDX Spec field | |----------|----------|----------| -----------------------------| -| SPDX | json, yaml, rdf, tag-value | json, xml | 2.3 | +| author | "name (email)" | Metadata->authors | CreationInfo->Creator->Person| +| supplier | "name (url)" | Metadata->Supplier | CreationInfo->Creator->Comment | +| tool | "name (version)" | Metadata->Tools | CreationInfo->Creator->Tool | +| lifecycle | "build" | Metadata->lifecycles->phase | - | +| type | "application" | - | - | +| name | "name" | - | - | +| version | "1.0.0" | - | - | +| description | "description" | - | DocumentComment | +| copyright| "abc @2023" | - | - | +| repository | "github.com/interlynk/sbomasm"| bom->externalreferences | - | +| cpe | "cpe:2.3:a:apache:tomcat:9.0.0:*:*:*:*:*:*:*" | - | - | +| purl| "pkg:github/apache/tomcat@9.0.0" | - | - | +| hash | "MD5 (1234567890)" | - | - | +| license | "Apache-2.0 (https://www.apache.org/licenses/LICENSE-2.0.txt)" | Metadata->Licenses | DataLicense | +| timestamp | "2023-05-03T04:49:33.378-0700" | Metadata->timestamp | CreationInfo->Created | + + +`Primary Component & Component Name Version` +| Input Param | Input Format | CDX Spec Field | SPDX Spec field | +|----------|----------|----------| -----------------------------| +| author | "name (email)" | Comp->authors or author | - | +| supplier | "name (url)" | Comp->Supplier | Pkg->Supplier | +| tool | "name (version)" | - | - | +| lifecycle | "build" | - | - | +| type | "application" | Comp->Type | Pkg->PrimaryPackagePurpose | +| name | "name" | Comp->name | Pkg->PackageName | +| version | "1.0.0" | Comp->version | Pkg->PackageVersion | +| description | "description" | Comp->Description | Pkg->PackageDescription | +| copyright| "abc @2023" | Comp->copyright | pkg->copyright | +| repository | "github.com/interlynk/sbomasm"| Comp->externalreferences | Pkg->PackageDownloadLocation | +| cpe | "cpe:2.3:a:apache:tomcat:9.0.0:*:*:*:*:*:*:*" | Comp->cpe | Pkg->ExternalReferences->Security | +| purl| "pkg:github/apache/tomcat@9.0.0" | Comp->purl | Pkg->ExternalReferences->PackageManager | +| hash | "MD5 (1234567890)" | Comp->hashes | Pkg->Checksums | +| license | "Apache-2.0 (https://www.apache.org/licenses/LICENSE-2.0.txt)" | Comp->Licenses | Pkg->ConcludedLicense | +| timestamp | "2023-05-03T04:49:33.378-0700" | - | - | + + +### Searching for a component + +Edit allows you to search for a component to edit. Currently you can only search for a component by its name & version. +```sh +sbomasm edit --subject component-name-version --search "apache tomcat (9.0.0)" --name "apache tomcat" --version "9.0.0" --author "apache" --license "Apache-2.0" --supplier "apache.org" --repository "github.com/apache/tomcat" --cpe "cpe:2.3:a:apache:tomcat:9.0.0:*:*:*:*:*:*:*" --purl "pkg:github/apache/tomcat@9.0.0" --hash "MD5 (1234567890)" in-cdx.json +``` +In the above command, the subject indicate the type of search to use, and the search parameter is the format of the search string. The format is +`name (version)`. The name and version are required fields. + +### Things to know +- Edit never modifies the original SBOM, it creates a new SBOM with the modifications. +- Every edit operation changes the serial number in CDX spec. +- Edit attempts to write out the SBOM in the same format it was read in. Only SPDX rdf & xml cannot be serialized out. + +### Example +The primary use-case this was build for is to augment recently merged sboms or fix sboms which have know bad metadata. In your CICD pipeline +once you merge two sboms using sbomasm, you would like to provide more metadata to its primary component to meet compliance +standards. e.g you would like to add supplier, author, license data. + +Step 1: Merge the sboms +```sh +sbomasm assemble -n "mega cdx app" -v "1.0.0" -t "application" -o final-product.cdx.json sbom1.json sbom2.json sbom3.json +``` + +Step 2: Edit the document metadata add in 2 authors, a supplier, a tool, a license, a repository, and update the timestamp and write out the final sbom to a new sbom. + +```sh +sbomasm edit --subject document --author "fred (fred@c.com)" --author "jane (jane@c.com)" --supplier "interlynk.io (https://interlynk.io)" --tool "sbomasm edit (v1.0.0)" --license "Apache-2.0 (https://www.apache.org/licenses/LICENSE-2.0.txt)" --repository "github.com/interlynk/cool-app" --timestamp" -o final-mod-product.json final-product.cdx.json +``` + +Step 3: Edit the primary component, set its version to be the one provided by ENV, and also update its PURL as the sbom-generate wrote out a malformed one. + +```sh +sbomasm edit --subject primary-component --purl "pkg:golang/interlynk/cool-app@1.0.0" --version "$PRODUCT_VERSION" -o final-mod-primary-product.json final-mod-product.json +``` + +Step 4: Edit some components which are missing license data, which we know it should be Apache-2.0 + +```bash +edit_components() { + for component in "$@"; do + name=$(echo "$component" | cut -d',' -f1) + version=$(echo "$component" | cut -d',' -f2 | sed 's/\s//g') + sbomasm edit --subject component-name-version --search "$name ($version)" --license "Apache-2.0 (https://www.apache.org/licenses/LICENSE-2.0.txt)" -o final-mod-primary-product.json final-mod-primary-product.json + done +} + +components=("demo-lib, v1.0.0" "third-party-lib, v2.1.3" "local-lib, v0.9.2") +edit_components "${components[@]}" +``` # Installation From 9f93bec703f385814f7ef705618a53330ffc2e8a Mon Sep 17 00:00:00 2001 From: Ritesh Noronha Date: Tue, 20 Aug 2024 17:28:13 -0700 Subject: [PATCH 4/4] readme updates --- README.md | 38 ++++++++++++++++++++++---------------- 1 file changed, 22 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index 05b34af..393cba3 100644 --- a/README.md +++ b/README.md @@ -245,16 +245,16 @@ The edit command allows you to modify an existing Software Bill of Materials (SB The edit command works based on locating entities and then modifying their metadata. We support locating the following entities. -- Document: This is the SBOM itself. -- Primary Component: The primary component described by the SBOM. -- Any Component via search : Any component or package described by the SBOM, which can be located by name & version. +- *Document*: This is the SBOM itself. +- *Primary Component*: The primary component described by the SBOM. +- *Any Component via search*: Any component or package described by the SBOM, which can be located by name & version. We support the following modifications operations -- Overwrite (default): This operation replaces the existing value with the new value or array with a new array of values -- Append: This operation appends the new value to the existing value or array of values, or concats strings. -- Missing: This operation is only applied if the field is missing. +- *Overwrite (default)*: This operation replaces the existing value. +- *Append*: This operation appends the new value to the existing value. +- *Missing*: This operation is only applied if the field or value is missing. -Fields we support by locations +## Fields supported `Document` | Input Param | Input Format | CDX Spec Field | SPDX Spec field | @@ -272,7 +272,7 @@ Fields we support by locations | cpe | "cpe:2.3:a:apache:tomcat:9.0.0:*:*:*:*:*:*:*" | - | - | | purl| "pkg:github/apache/tomcat@9.0.0" | - | - | | hash | "MD5 (1234567890)" | - | - | -| license | "Apache-2.0 (https://www.apache.org/licenses/LICENSE-2.0.txt)" | Metadata->Licenses | DataLicense | +| license | "MIT (mit.edu/~amini/LICENSE.md)" | Metadata->Licenses | DataLicense | | timestamp | "2023-05-03T04:49:33.378-0700" | Metadata->timestamp | CreationInfo->Created | @@ -292,11 +292,11 @@ Fields we support by locations | cpe | "cpe:2.3:a:apache:tomcat:9.0.0:*:*:*:*:*:*:*" | Comp->cpe | Pkg->ExternalReferences->Security | | purl| "pkg:github/apache/tomcat@9.0.0" | Comp->purl | Pkg->ExternalReferences->PackageManager | | hash | "MD5 (1234567890)" | Comp->hashes | Pkg->Checksums | -| license | "Apache-2.0 (https://www.apache.org/licenses/LICENSE-2.0.txt)" | Comp->Licenses | Pkg->ConcludedLicense | +| license | "MIT (mit.edu/~amini/LICENSE.md)" | Comp->Licenses | Pkg->ConcludedLicense | | timestamp | "2023-05-03T04:49:33.378-0700" | - | - | -### Searching for a component +## Searching for a component Edit allows you to search for a component to edit. Currently you can only search for a component by its name & version. @@ -307,34 +307,34 @@ sbomasm edit --subject component-name-version --search "apache tomcat (9.0.0)" - In the above command, the subject indicate the type of search to use, and the search parameter is the format of the search string. The format is `name (version)`. The name and version are required fields. -### Things to know +## Things to know - Edit never modifies the original SBOM, it creates a new SBOM with the modifications. - Every edit operation changes the serial number in CDX spec. - Edit attempts to write out the SBOM in the same format it was read in. Only SPDX rdf & xml cannot be serialized out. -### Example +## Example The primary use-case this was build for is to augment recently merged sboms or fix sboms which have know bad metadata. In your CICD pipeline once you merge two sboms using sbomasm, you would like to provide more metadata to its primary component to meet compliance standards. e.g you would like to add supplier, author, license data. -Step 1: Merge the sboms +`Step 1`: Merge the sboms ```sh sbomasm assemble -n "mega cdx app" -v "1.0.0" -t "application" -o final-product.cdx.json sbom1.json sbom2.json sbom3.json ``` -Step 2: Edit the document metadata add in 2 authors, a supplier, a tool, a license, a repository, and update the timestamp and write out the final sbom to a new sbom. +`Step 2`: Edit the document metadata add in 2 authors, a supplier, a tool, a license, a repository, and update the timestamp and write out the final sbom to a new sbom. ```sh sbomasm edit --subject document --author "fred (fred@c.com)" --author "jane (jane@c.com)" --supplier "interlynk.io (https://interlynk.io)" --tool "sbomasm edit (v1.0.0)" --license "Apache-2.0 (https://www.apache.org/licenses/LICENSE-2.0.txt)" --repository "github.com/interlynk/cool-app" --timestamp" -o final-mod-product.json final-product.cdx.json ``` -Step 3: Edit the primary component, set its version to be the one provided by ENV, and also update its PURL as the sbom-generate wrote out a malformed one. +`Step 3`: Edit the primary component, set its version to be the one provided by ENV, and also update its PURL as the sbom-generate wrote out a malformed one. ```sh sbomasm edit --subject primary-component --purl "pkg:golang/interlynk/cool-app@1.0.0" --version "$PRODUCT_VERSION" -o final-mod-primary-product.json final-mod-product.json ``` -Step 4: Edit some components which are missing license data, which we know it should be Apache-2.0 +`Step 4`: Edit some components which are missing license data, which we know it should be Apache-2.0 ```bash edit_components() { @@ -349,6 +349,12 @@ components=("demo-lib, v1.0.0" "third-party-lib, v2.1.3" "local-lib, v0.9.2") edit_components "${components[@]}" ``` +`Step 5`: Upload the final-mod-primary-product.json to your artifact for vuln scanning and compliance checks to Interlynk Platform. + +```bash +python3 ${{ env.PYLYNK_TEMP_DIR }}/pylynk.py --verbose upload --prod ${{env.TOOL_NAME}} --env ${{ env.SBOM_ENV }} --sbom final-mod-pimary-product.json --token ${{ secrets.INTERLYNK_SECURITY_TOKEN }} +``` + # Installation ## Using Prebuilt binaries