From c56c1b2fb4247fae6049d5fc0cba00a02c95d9be Mon Sep 17 00:00:00 2001 From: Mayeul Kauffmann Date: Wed, 8 Nov 2023 20:22:10 +0100 Subject: [PATCH 1/2] spdx_licenses.R Download and convert spdx list of licenses --- spdx_licenses.R | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 spdx_licenses.R diff --git a/spdx_licenses.R b/spdx_licenses.R new file mode 100644 index 0000000..ce52e5a --- /dev/null +++ b/spdx_licenses.R @@ -0,0 +1,39 @@ +# getwd() + +download.file(url = "https://raw.githubusercontent.com/spdx/license-list-data/main/json/licenses.json", + destfile = "spdx_licenses.json") + +spdx_licenses_1_v <- scan( + file="spdx_licenses.json", + sep="\n", + what="character" + ) + +spdx_licenses_2_v <- paste0(spdx_licenses_1_v, collapse = "") + +# There is currently only one license with empty "seeAlso" slot, which needs to be changed +# (otherwise the rest fails) +spdx_licenses_3_v <- + gsub(pattern = '"seeAlso": [],', + replacement = '"seeAlso": [""],', + x = spdx_licenses_2_v, + fixed = T) + +spdx_licenses_1_df <- dplyr::bind_rows( + lapply(rjson::fromJSON(spdx_licenses_3_v)[2]$licenses, as.data.frame) + ) + +# The above duplicates licenses that have various values for the seeAlso slot +# FIXME: For those duplicates, we keep only the first seeAlso value +# (still, in a number of cases, the additional "seeAlso" slot is just the same page at archive.org) +spdx_licenses_2_df <- dplyr::distinct( + spdx_licenses_1_df, + # Variables for checking uniqueness; this list does not include "seeAlso": + reference, isDeprecatedLicenseId, detailsUrl, referenceNumber, name, licenseId, isOsiApproved, isFsfLibre, + .keep_all = TRUE # Keep first value of "seeAlso" + ) + +write.csv(spdx_licenses_2_df, + file = "spdx_licenses.csv", + row.names = FALSE + ) From 3ff7314013d5526e88511acc6f2f7799bbb351b6 Mon Sep 17 00:00:00 2001 From: Mayeul Kauffmann Date: Wed, 8 Nov 2023 20:24:44 +0100 Subject: [PATCH 2/2] spdx list of licenses in json and csv Nota: JSON file releaseDate: "2023-11-06" CSV file keeps only the first seeAlso value for each license. --- spdx_licenses.csv | 599 ++++ spdx_licenses.json | 7514 ++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 8113 insertions(+) create mode 100644 spdx_licenses.csv create mode 100644 spdx_licenses.json diff --git a/spdx_licenses.csv b/spdx_licenses.csv new file mode 100644 index 0000000..fabac7f --- /dev/null +++ b/spdx_licenses.csv @@ -0,0 +1,599 @@ +"reference","isDeprecatedLicenseId","detailsUrl","referenceNumber","name","licenseId","seeAlso","isOsiApproved","isFsfLibre" +"https://spdx.org/licenses/0BSD.html",FALSE,"https://spdx.org/licenses/0BSD.json",393,"BSD Zero Clause License","0BSD","http://landley.net/toybox/license.html",TRUE,NA +"https://spdx.org/licenses/AAL.html",FALSE,"https://spdx.org/licenses/AAL.json",392,"Attribution Assurance License","AAL","https://opensource.org/licenses/attribution",TRUE,NA +"https://spdx.org/licenses/Abstyles.html",FALSE,"https://spdx.org/licenses/Abstyles.json",450,"Abstyles License","Abstyles","https://fedoraproject.org/wiki/Licensing/Abstyles",FALSE,NA +"https://spdx.org/licenses/AdaCore-doc.html",FALSE,"https://spdx.org/licenses/AdaCore-doc.json",192,"AdaCore Doc License","AdaCore-doc","https://github.com/AdaCore/xmlada/blob/master/docs/index.rst",FALSE,NA +"https://spdx.org/licenses/Adobe-2006.html",FALSE,"https://spdx.org/licenses/Adobe-2006.json",123,"Adobe Systems Incorporated Source Code License Agreement","Adobe-2006","https://fedoraproject.org/wiki/Licensing/AdobeLicense",FALSE,NA +"https://spdx.org/licenses/Adobe-Glyph.html",FALSE,"https://spdx.org/licenses/Adobe-Glyph.json",155,"Adobe Glyph List License","Adobe-Glyph","https://fedoraproject.org/wiki/Licensing/MIT#AdobeGlyph",FALSE,NA +"https://spdx.org/licenses/Adobe-Utopia.html",FALSE,"https://spdx.org/licenses/Adobe-Utopia.json",49,"Adobe Utopia Font License","Adobe-Utopia","https://gitlab.freedesktop.org/xorg/font/adobe-utopia-100dpi/-/blob/master/COPYING?ref_type=heads",FALSE,NA +"https://spdx.org/licenses/ADSL.html",FALSE,"https://spdx.org/licenses/ADSL.json",198,"Amazon Digital Services License","ADSL","https://fedoraproject.org/wiki/Licensing/AmazonDigitalServicesLicense",FALSE,NA +"https://spdx.org/licenses/AFL-1.1.html",FALSE,"https://spdx.org/licenses/AFL-1.1.json",58,"Academic Free License v1.1","AFL-1.1","http://opensource.linux-mirror.org/licenses/afl-1.1.txt",TRUE,TRUE +"https://spdx.org/licenses/AFL-1.2.html",FALSE,"https://spdx.org/licenses/AFL-1.2.json",293,"Academic Free License v1.2","AFL-1.2","http://opensource.linux-mirror.org/licenses/afl-1.2.txt",TRUE,TRUE +"https://spdx.org/licenses/AFL-2.0.html",FALSE,"https://spdx.org/licenses/AFL-2.0.json",145,"Academic Free License v2.0","AFL-2.0","http://wayback.archive.org/web/20060924134533/http://www.opensource.org/licenses/afl-2.0.txt",TRUE,TRUE +"https://spdx.org/licenses/AFL-2.1.html",FALSE,"https://spdx.org/licenses/AFL-2.1.json",218,"Academic Free License v2.1","AFL-2.1","http://opensource.linux-mirror.org/licenses/afl-2.1.txt",TRUE,TRUE +"https://spdx.org/licenses/AFL-3.0.html",FALSE,"https://spdx.org/licenses/AFL-3.0.json",158,"Academic Free License v3.0","AFL-3.0","http://www.rosenlaw.com/AFL3.0.htm",TRUE,TRUE +"https://spdx.org/licenses/Afmparse.html",FALSE,"https://spdx.org/licenses/Afmparse.json",337,"Afmparse License","Afmparse","https://fedoraproject.org/wiki/Licensing/Afmparse",FALSE,NA +"https://spdx.org/licenses/AGPL-1.0.html",TRUE,"https://spdx.org/licenses/AGPL-1.0.json",394,"Affero General Public License v1.0","AGPL-1.0","http://www.affero.org/oagpl.html",FALSE,TRUE +"https://spdx.org/licenses/AGPL-1.0-only.html",FALSE,"https://spdx.org/licenses/AGPL-1.0-only.json",384,"Affero General Public License v1.0 only","AGPL-1.0-only","http://www.affero.org/oagpl.html",FALSE,NA +"https://spdx.org/licenses/AGPL-1.0-or-later.html",FALSE,"https://spdx.org/licenses/AGPL-1.0-or-later.json",17,"Affero General Public License v1.0 or later","AGPL-1.0-or-later","http://www.affero.org/oagpl.html",FALSE,NA +"https://spdx.org/licenses/AGPL-3.0.html",TRUE,"https://spdx.org/licenses/AGPL-3.0.json",409,"GNU Affero General Public License v3.0","AGPL-3.0","https://www.gnu.org/licenses/agpl.txt",TRUE,TRUE +"https://spdx.org/licenses/AGPL-3.0-only.html",FALSE,"https://spdx.org/licenses/AGPL-3.0-only.json",137,"GNU Affero General Public License v3.0 only","AGPL-3.0-only","https://www.gnu.org/licenses/agpl.txt",TRUE,TRUE +"https://spdx.org/licenses/AGPL-3.0-or-later.html",FALSE,"https://spdx.org/licenses/AGPL-3.0-or-later.json",138,"GNU Affero General Public License v3.0 or later","AGPL-3.0-or-later","https://www.gnu.org/licenses/agpl.txt",TRUE,TRUE +"https://spdx.org/licenses/Aladdin.html",FALSE,"https://spdx.org/licenses/Aladdin.json",377,"Aladdin Free Public License","Aladdin","http://pages.cs.wisc.edu/~ghost/doc/AFPL/6.01/Public.htm",FALSE,FALSE +"https://spdx.org/licenses/AMDPLPA.html",FALSE,"https://spdx.org/licenses/AMDPLPA.json",349,"AMD's plpa_map.c License","AMDPLPA","https://fedoraproject.org/wiki/Licensing/AMD_plpa_map_License",FALSE,NA +"https://spdx.org/licenses/AML.html",FALSE,"https://spdx.org/licenses/AML.json",191,"Apple MIT License","AML","https://fedoraproject.org/wiki/Licensing/Apple_MIT_License",FALSE,NA +"https://spdx.org/licenses/AMPAS.html",FALSE,"https://spdx.org/licenses/AMPAS.json",558,"Academy of Motion Picture Arts and Sciences BSD","AMPAS","https://fedoraproject.org/wiki/Licensing/BSD#AMPASBSD",FALSE,NA +"https://spdx.org/licenses/ANTLR-PD.html",FALSE,"https://spdx.org/licenses/ANTLR-PD.json",134,"ANTLR Software Rights Notice","ANTLR-PD","http://www.antlr2.org/license.html",FALSE,NA +"https://spdx.org/licenses/ANTLR-PD-fallback.html",FALSE,"https://spdx.org/licenses/ANTLR-PD-fallback.json",14,"ANTLR Software Rights Notice with license fallback","ANTLR-PD-fallback","http://www.antlr2.org/license.html",FALSE,NA +"https://spdx.org/licenses/Apache-1.0.html",FALSE,"https://spdx.org/licenses/Apache-1.0.json",43,"Apache License 1.0","Apache-1.0","http://www.apache.org/licenses/LICENSE-1.0",FALSE,TRUE +"https://spdx.org/licenses/Apache-1.1.html",FALSE,"https://spdx.org/licenses/Apache-1.1.json",418,"Apache License 1.1","Apache-1.1","http://apache.org/licenses/LICENSE-1.1",TRUE,TRUE +"https://spdx.org/licenses/Apache-2.0.html",FALSE,"https://spdx.org/licenses/Apache-2.0.json",177,"Apache License 2.0","Apache-2.0","https://www.apache.org/licenses/LICENSE-2.0",TRUE,TRUE +"https://spdx.org/licenses/APAFML.html",FALSE,"https://spdx.org/licenses/APAFML.json",284,"Adobe Postscript AFM License","APAFML","https://fedoraproject.org/wiki/Licensing/AdobePostscriptAFM",FALSE,NA +"https://spdx.org/licenses/APL-1.0.html",FALSE,"https://spdx.org/licenses/APL-1.0.json",299,"Adaptive Public License 1.0","APL-1.0","https://opensource.org/licenses/APL-1.0",TRUE,NA +"https://spdx.org/licenses/App-s2p.html",FALSE,"https://spdx.org/licenses/App-s2p.json",140,"App::s2p License","App-s2p","https://fedoraproject.org/wiki/Licensing/App-s2p",FALSE,NA +"https://spdx.org/licenses/APSL-1.0.html",FALSE,"https://spdx.org/licenses/APSL-1.0.json",29,"Apple Public Source License 1.0","APSL-1.0","https://fedoraproject.org/wiki/Licensing/Apple_Public_Source_License_1.0",TRUE,FALSE +"https://spdx.org/licenses/APSL-1.1.html",FALSE,"https://spdx.org/licenses/APSL-1.1.json",555,"Apple Public Source License 1.1","APSL-1.1","http://www.opensource.apple.com/source/IOSerialFamily/IOSerialFamily-7/APPLE_LICENSE",TRUE,NA +"https://spdx.org/licenses/APSL-1.2.html",FALSE,"https://spdx.org/licenses/APSL-1.2.json",549,"Apple Public Source License 1.2","APSL-1.2","http://www.samurajdata.se/opensource/mirror/licenses/apsl.php",TRUE,NA +"https://spdx.org/licenses/APSL-2.0.html",FALSE,"https://spdx.org/licenses/APSL-2.0.json",467,"Apple Public Source License 2.0","APSL-2.0","http://www.opensource.apple.com/license/apsl/",TRUE,TRUE +"https://spdx.org/licenses/Arphic-1999.html",FALSE,"https://spdx.org/licenses/Arphic-1999.json",358,"Arphic Public License","Arphic-1999","http://ftp.gnu.org/gnu/non-gnu/chinese-fonts-truetype/LICENSE",FALSE,NA +"https://spdx.org/licenses/Artistic-1.0.html",FALSE,"https://spdx.org/licenses/Artistic-1.0.json",496,"Artistic License 1.0","Artistic-1.0","https://opensource.org/licenses/Artistic-1.0",TRUE,FALSE +"https://spdx.org/licenses/Artistic-1.0-cl8.html",FALSE,"https://spdx.org/licenses/Artistic-1.0-cl8.json",331,"Artistic License 1.0 w/clause 8","Artistic-1.0-cl8","https://opensource.org/licenses/Artistic-1.0",TRUE,NA +"https://spdx.org/licenses/Artistic-1.0-Perl.html",FALSE,"https://spdx.org/licenses/Artistic-1.0-Perl.json",224,"Artistic License 1.0 (Perl)","Artistic-1.0-Perl","http://dev.perl.org/licenses/artistic.html",TRUE,NA +"https://spdx.org/licenses/Artistic-2.0.html",FALSE,"https://spdx.org/licenses/Artistic-2.0.json",539,"Artistic License 2.0","Artistic-2.0","http://www.perlfoundation.org/artistic_license_2_0",TRUE,TRUE +"https://spdx.org/licenses/ASWF-Digital-Assets-1.0.html",FALSE,"https://spdx.org/licenses/ASWF-Digital-Assets-1.0.json",225,"ASWF Digital Assets License version 1.0","ASWF-Digital-Assets-1.0","https://github.com/AcademySoftwareFoundation/foundation/blob/main/digital_assets/aswf_digital_assets_license_v1.0.txt",FALSE,NA +"https://spdx.org/licenses/ASWF-Digital-Assets-1.1.html",FALSE,"https://spdx.org/licenses/ASWF-Digital-Assets-1.1.json",486,"ASWF Digital Assets License 1.1","ASWF-Digital-Assets-1.1","https://github.com/AcademySoftwareFoundation/foundation/blob/main/digital_assets/aswf_digital_assets_license_v1.1.txt",FALSE,NA +"https://spdx.org/licenses/Baekmuk.html",FALSE,"https://spdx.org/licenses/Baekmuk.json",208,"Baekmuk License","Baekmuk","https://fedoraproject.org/wiki/Licensing:Baekmuk?rd=Licensing/Baekmuk",FALSE,NA +"https://spdx.org/licenses/Bahyph.html",FALSE,"https://spdx.org/licenses/Bahyph.json",427,"Bahyph License","Bahyph","https://fedoraproject.org/wiki/Licensing/Bahyph",FALSE,NA +"https://spdx.org/licenses/Barr.html",FALSE,"https://spdx.org/licenses/Barr.json",267,"Barr License","Barr","https://fedoraproject.org/wiki/Licensing/Barr",FALSE,NA +"https://spdx.org/licenses/Beerware.html",FALSE,"https://spdx.org/licenses/Beerware.json",90,"Beerware License","Beerware","https://fedoraproject.org/wiki/Licensing/Beerware",FALSE,NA +"https://spdx.org/licenses/Bitstream-Charter.html",FALSE,"https://spdx.org/licenses/Bitstream-Charter.json",111,"Bitstream Charter Font License","Bitstream-Charter","https://fedoraproject.org/wiki/Licensing/Charter#License_Text",FALSE,NA +"https://spdx.org/licenses/Bitstream-Vera.html",FALSE,"https://spdx.org/licenses/Bitstream-Vera.json",173,"Bitstream Vera Font License","Bitstream-Vera","https://web.archive.org/web/20080207013128/http://www.gnome.org/fonts/",FALSE,NA +"https://spdx.org/licenses/BitTorrent-1.0.html",FALSE,"https://spdx.org/licenses/BitTorrent-1.0.json",179,"BitTorrent Open Source License v1.0","BitTorrent-1.0","http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/licenses/BitTorrent?r1=1.1&r2=1.1.1.1&diff_format=s",FALSE,NA +"https://spdx.org/licenses/BitTorrent-1.1.html",FALSE,"https://spdx.org/licenses/BitTorrent-1.1.json",15,"BitTorrent Open Source License v1.1","BitTorrent-1.1","http://directory.fsf.org/wiki/License:BitTorrentOSL1.1",FALSE,TRUE +"https://spdx.org/licenses/blessing.html",FALSE,"https://spdx.org/licenses/blessing.json",47,"SQLite Blessing","blessing","https://www.sqlite.org/src/artifact/e33a4df7e32d742a?ln=4-9",FALSE,NA +"https://spdx.org/licenses/BlueOak-1.0.0.html",FALSE,"https://spdx.org/licenses/BlueOak-1.0.0.json",361,"Blue Oak Model License 1.0.0","BlueOak-1.0.0","https://blueoakcouncil.org/license/1.0.0",FALSE,NA +"https://spdx.org/licenses/Boehm-GC.html",FALSE,"https://spdx.org/licenses/Boehm-GC.json",332,"Boehm-Demers-Weiser GC License","Boehm-GC","https://fedoraproject.org/wiki/Licensing:MIT#Another_Minimal_variant_(found_in_libatomic_ops)",FALSE,NA +"https://spdx.org/licenses/Borceux.html",FALSE,"https://spdx.org/licenses/Borceux.json",26,"Borceux license","Borceux","https://fedoraproject.org/wiki/Licensing/Borceux",FALSE,NA +"https://spdx.org/licenses/Brian-Gladman-3-Clause.html",FALSE,"https://spdx.org/licenses/Brian-Gladman-3-Clause.json",397,"Brian Gladman 3-Clause License","Brian-Gladman-3-Clause","https://github.com/SWI-Prolog/packages-clib/blob/master/sha1/brg_endian.h",FALSE,NA +"https://spdx.org/licenses/BSD-1-Clause.html",FALSE,"https://spdx.org/licenses/BSD-1-Clause.json",359,"BSD 1-Clause License","BSD-1-Clause","https://svnweb.freebsd.org/base/head/include/ifaddrs.h?revision=326823",TRUE,NA +"https://spdx.org/licenses/BSD-2-Clause.html",FALSE,"https://spdx.org/licenses/BSD-2-Clause.json",461,"BSD 2-Clause ""Simplified"" License","BSD-2-Clause","https://opensource.org/licenses/BSD-2-Clause",TRUE,TRUE +"https://spdx.org/licenses/BSD-2-Clause-FreeBSD.html",TRUE,"https://spdx.org/licenses/BSD-2-Clause-FreeBSD.json",501,"BSD 2-Clause FreeBSD License","BSD-2-Clause-FreeBSD","http://www.freebsd.org/copyright/freebsd-license.html",FALSE,TRUE +"https://spdx.org/licenses/BSD-2-Clause-NetBSD.html",TRUE,"https://spdx.org/licenses/BSD-2-Clause-NetBSD.json",122,"BSD 2-Clause NetBSD License","BSD-2-Clause-NetBSD","http://www.netbsd.org/about/redistribution.html#default",FALSE,TRUE +"https://spdx.org/licenses/BSD-2-Clause-Patent.html",FALSE,"https://spdx.org/licenses/BSD-2-Clause-Patent.json",10,"BSD-2-Clause Plus Patent License","BSD-2-Clause-Patent","https://opensource.org/licenses/BSDplusPatent",TRUE,NA +"https://spdx.org/licenses/BSD-2-Clause-Views.html",FALSE,"https://spdx.org/licenses/BSD-2-Clause-Views.json",23,"BSD 2-Clause with views sentence","BSD-2-Clause-Views","http://www.freebsd.org/copyright/freebsd-license.html",FALSE,NA +"https://spdx.org/licenses/BSD-3-Clause.html",FALSE,"https://spdx.org/licenses/BSD-3-Clause.json",131,"BSD 3-Clause ""New"" or ""Revised"" License","BSD-3-Clause","https://opensource.org/licenses/BSD-3-Clause",TRUE,TRUE +"https://spdx.org/licenses/BSD-3-Clause-Attribution.html",FALSE,"https://spdx.org/licenses/BSD-3-Clause-Attribution.json",544,"BSD with attribution","BSD-3-Clause-Attribution","https://fedoraproject.org/wiki/Licensing/BSD_with_Attribution",FALSE,NA +"https://spdx.org/licenses/BSD-3-Clause-Clear.html",FALSE,"https://spdx.org/licenses/BSD-3-Clause-Clear.json",460,"BSD 3-Clause Clear License","BSD-3-Clause-Clear","http://labs.metacarta.com/license-explanation.html#license",FALSE,TRUE +"https://spdx.org/licenses/BSD-3-Clause-flex.html",FALSE,"https://spdx.org/licenses/BSD-3-Clause-flex.json",445,"BSD 3-Clause Flex variant","BSD-3-Clause-flex","https://github.com/westes/flex/blob/master/COPYING",FALSE,NA +"https://spdx.org/licenses/BSD-3-Clause-HP.html",FALSE,"https://spdx.org/licenses/BSD-3-Clause-HP.json",119,"Hewlett-Packard BSD variant license","BSD-3-Clause-HP","https://github.com/zdohnal/hplip/blob/master/COPYING#L939",FALSE,NA +"https://spdx.org/licenses/BSD-3-Clause-LBNL.html",FALSE,"https://spdx.org/licenses/BSD-3-Clause-LBNL.json",240,"Lawrence Berkeley National Labs BSD variant license","BSD-3-Clause-LBNL","https://fedoraproject.org/wiki/Licensing/LBNLBSD",TRUE,NA +"https://spdx.org/licenses/BSD-3-Clause-Modification.html",FALSE,"https://spdx.org/licenses/BSD-3-Clause-Modification.json",363,"BSD 3-Clause Modification","BSD-3-Clause-Modification","https://fedoraproject.org/wiki/Licensing:BSD#Modification_Variant",FALSE,NA +"https://spdx.org/licenses/BSD-3-Clause-No-Military-License.html",FALSE,"https://spdx.org/licenses/BSD-3-Clause-No-Military-License.json",493,"BSD 3-Clause No Military License","BSD-3-Clause-No-Military-License","https://gitlab.syncad.com/hive/dhive/-/blob/master/LICENSE",FALSE,NA +"https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License.html",FALSE,"https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License.json",244,"BSD 3-Clause No Nuclear License","BSD-3-Clause-No-Nuclear-License","http://download.oracle.com/otn-pub/java/licenses/bsd.txt?AuthParam=1467140197_43d516ce1776bd08a58235a7785be1cc",FALSE,NA +"https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License-2014.html",FALSE,"https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License-2014.json",188,"BSD 3-Clause No Nuclear License 2014","BSD-3-Clause-No-Nuclear-License-2014","https://java.net/projects/javaeetutorial/pages/BerkeleyLicense",FALSE,NA +"https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-Warranty.html",FALSE,"https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-Warranty.json",185,"BSD 3-Clause No Nuclear Warranty","BSD-3-Clause-No-Nuclear-Warranty","https://jogamp.org/git/?p=gluegen.git;a=blob_plain;f=LICENSE.txt",FALSE,NA +"https://spdx.org/licenses/BSD-3-Clause-Open-MPI.html",FALSE,"https://spdx.org/licenses/BSD-3-Clause-Open-MPI.json",330,"BSD 3-Clause Open MPI variant","BSD-3-Clause-Open-MPI","https://www.open-mpi.org/community/license.php",FALSE,NA +"https://spdx.org/licenses/BSD-3-Clause-Sun.html",FALSE,"https://spdx.org/licenses/BSD-3-Clause-Sun.json",511,"BSD 3-Clause Sun Microsystems","BSD-3-Clause-Sun","https://github.com/xmlark/msv/blob/b9316e2f2270bc1606952ea4939ec87fbba157f3/xsdlib/src/main/java/com/sun/msv/datatype/regexp/InternalImpl.java",FALSE,NA +"https://spdx.org/licenses/BSD-4-Clause.html",FALSE,"https://spdx.org/licenses/BSD-4-Clause.json",594,"BSD 4-Clause ""Original"" or ""Old"" License","BSD-4-Clause","http://directory.fsf.org/wiki/License:BSD_4Clause",FALSE,TRUE +"https://spdx.org/licenses/BSD-4-Clause-Shortened.html",FALSE,"https://spdx.org/licenses/BSD-4-Clause-Shortened.json",322,"BSD 4 Clause Shortened","BSD-4-Clause-Shortened","https://metadata.ftp-master.debian.org/changelogs//main/a/arpwatch/arpwatch_2.1a15-7_copyright",FALSE,NA +"https://spdx.org/licenses/BSD-4-Clause-UC.html",FALSE,"https://spdx.org/licenses/BSD-4-Clause-UC.json",305,"BSD-4-Clause (University of California-Specific)","BSD-4-Clause-UC","http://www.freebsd.org/copyright/license.html",FALSE,NA +"https://spdx.org/licenses/BSD-4.3RENO.html",FALSE,"https://spdx.org/licenses/BSD-4.3RENO.json",553,"BSD 4.3 RENO License","BSD-4.3RENO","https://sourceware.org/git/?p=binutils-gdb.git;a=blob;f=libiberty/strcasecmp.c;h=131d81c2ce7881fa48c363dc5bf5fb302c61ce0b;hb=HEAD",FALSE,NA +"https://spdx.org/licenses/BSD-4.3TAHOE.html",FALSE,"https://spdx.org/licenses/BSD-4.3TAHOE.json",356,"BSD 4.3 TAHOE License","BSD-4.3TAHOE","https://github.com/389ds/389-ds-base/blob/main/ldap/include/sysexits-compat.h#L15",FALSE,NA +"https://spdx.org/licenses/BSD-Advertising-Acknowledgement.html",FALSE,"https://spdx.org/licenses/BSD-Advertising-Acknowledgement.json",32,"BSD Advertising Acknowledgement License","BSD-Advertising-Acknowledgement","https://github.com/python-excel/xlrd/blob/master/LICENSE#L33",FALSE,NA +"https://spdx.org/licenses/BSD-Attribution-HPND-disclaimer.html",FALSE,"https://spdx.org/licenses/BSD-Attribution-HPND-disclaimer.json",53,"BSD with Attribution and HPND disclaimer","BSD-Attribution-HPND-disclaimer","https://github.com/cyrusimap/cyrus-sasl/blob/master/COPYING",FALSE,NA +"https://spdx.org/licenses/BSD-Inferno-Nettverk.html",FALSE,"https://spdx.org/licenses/BSD-Inferno-Nettverk.json",98,"BSD-Inferno-Nettverk","BSD-Inferno-Nettverk","https://www.inet.no/dante/LICENSE",FALSE,NA +"https://spdx.org/licenses/BSD-Protection.html",FALSE,"https://spdx.org/licenses/BSD-Protection.json",276,"BSD Protection License","BSD-Protection","https://fedoraproject.org/wiki/Licensing/BSD_Protection_License",FALSE,NA +"https://spdx.org/licenses/BSD-Source-Code.html",FALSE,"https://spdx.org/licenses/BSD-Source-Code.json",278,"BSD Source Code Attribution","BSD-Source-Code","https://github.com/robbiehanson/CocoaHTTPServer/blob/master/LICENSE.txt",FALSE,NA +"https://spdx.org/licenses/BSD-Systemics.html",FALSE,"https://spdx.org/licenses/BSD-Systemics.json",19,"Systemics BSD variant license","BSD-Systemics","https://metacpan.org/release/DPARIS/Crypt-DES-2.07/source/COPYRIGHT",FALSE,NA +"https://spdx.org/licenses/BSL-1.0.html",FALSE,"https://spdx.org/licenses/BSL-1.0.json",466,"Boost Software License 1.0","BSL-1.0","http://www.boost.org/LICENSE_1_0.txt",TRUE,TRUE +"https://spdx.org/licenses/BUSL-1.1.html",FALSE,"https://spdx.org/licenses/BUSL-1.1.json",419,"Business Source License 1.1","BUSL-1.1","https://mariadb.com/bsl11/",FALSE,NA +"https://spdx.org/licenses/bzip2-1.0.5.html",TRUE,"https://spdx.org/licenses/bzip2-1.0.5.json",421,"bzip2 and libbzip2 License v1.0.5","bzip2-1.0.5","https://sourceware.org/bzip2/1.0.5/bzip2-manual-1.0.5.html",FALSE,NA +"https://spdx.org/licenses/bzip2-1.0.6.html",FALSE,"https://spdx.org/licenses/bzip2-1.0.6.json",257,"bzip2 and libbzip2 License v1.0.6","bzip2-1.0.6","https://sourceware.org/git/?p=bzip2.git;a=blob;f=LICENSE;hb=bzip2-1.0.6",FALSE,NA +"https://spdx.org/licenses/C-UDA-1.0.html",FALSE,"https://spdx.org/licenses/C-UDA-1.0.json",65,"Computational Use of Data Agreement v1.0","C-UDA-1.0","https://github.com/microsoft/Computational-Use-of-Data-Agreement/blob/master/C-UDA-1.0.md",FALSE,NA +"https://spdx.org/licenses/CAL-1.0.html",FALSE,"https://spdx.org/licenses/CAL-1.0.json",592,"Cryptographic Autonomy License 1.0","CAL-1.0","http://cryptographicautonomylicense.com/license-text.html",TRUE,NA +"https://spdx.org/licenses/CAL-1.0-Combined-Work-Exception.html",FALSE,"https://spdx.org/licenses/CAL-1.0-Combined-Work-Exception.json",199,"Cryptographic Autonomy License 1.0 (Combined Work Exception)","CAL-1.0-Combined-Work-Exception","http://cryptographicautonomylicense.com/license-text.html",TRUE,NA +"https://spdx.org/licenses/Caldera.html",FALSE,"https://spdx.org/licenses/Caldera.json",303,"Caldera License","Caldera","http://www.lemis.com/grog/UNIX/ancient-source-all.pdf",FALSE,NA +"https://spdx.org/licenses/CATOSL-1.1.html",FALSE,"https://spdx.org/licenses/CATOSL-1.1.json",242,"Computer Associates Trusted Open Source License 1.1","CATOSL-1.1","https://opensource.org/licenses/CATOSL-1.1",TRUE,NA +"https://spdx.org/licenses/CC-BY-1.0.html",FALSE,"https://spdx.org/licenses/CC-BY-1.0.json",443,"Creative Commons Attribution 1.0 Generic","CC-BY-1.0","https://creativecommons.org/licenses/by/1.0/legalcode",FALSE,NA +"https://spdx.org/licenses/CC-BY-2.0.html",FALSE,"https://spdx.org/licenses/CC-BY-2.0.json",521,"Creative Commons Attribution 2.0 Generic","CC-BY-2.0","https://creativecommons.org/licenses/by/2.0/legalcode",FALSE,NA +"https://spdx.org/licenses/CC-BY-2.5.html",FALSE,"https://spdx.org/licenses/CC-BY-2.5.json",24,"Creative Commons Attribution 2.5 Generic","CC-BY-2.5","https://creativecommons.org/licenses/by/2.5/legalcode",FALSE,NA +"https://spdx.org/licenses/CC-BY-2.5-AU.html",FALSE,"https://spdx.org/licenses/CC-BY-2.5-AU.json",67,"Creative Commons Attribution 2.5 Australia","CC-BY-2.5-AU","https://creativecommons.org/licenses/by/2.5/au/legalcode",FALSE,NA +"https://spdx.org/licenses/CC-BY-3.0.html",FALSE,"https://spdx.org/licenses/CC-BY-3.0.json",238,"Creative Commons Attribution 3.0 Unported","CC-BY-3.0","https://creativecommons.org/licenses/by/3.0/legalcode",FALSE,NA +"https://spdx.org/licenses/CC-BY-3.0-AT.html",FALSE,"https://spdx.org/licenses/CC-BY-3.0-AT.json",463,"Creative Commons Attribution 3.0 Austria","CC-BY-3.0-AT","https://creativecommons.org/licenses/by/3.0/at/legalcode",FALSE,NA +"https://spdx.org/licenses/CC-BY-3.0-DE.html",FALSE,"https://spdx.org/licenses/CC-BY-3.0-DE.json",357,"Creative Commons Attribution 3.0 Germany","CC-BY-3.0-DE","https://creativecommons.org/licenses/by/3.0/de/legalcode",FALSE,NA +"https://spdx.org/licenses/CC-BY-3.0-IGO.html",FALSE,"https://spdx.org/licenses/CC-BY-3.0-IGO.json",294,"Creative Commons Attribution 3.0 IGO","CC-BY-3.0-IGO","https://creativecommons.org/licenses/by/3.0/igo/legalcode",FALSE,NA +"https://spdx.org/licenses/CC-BY-3.0-NL.html",FALSE,"https://spdx.org/licenses/CC-BY-3.0-NL.json",310,"Creative Commons Attribution 3.0 Netherlands","CC-BY-3.0-NL","https://creativecommons.org/licenses/by/3.0/nl/legalcode",FALSE,NA +"https://spdx.org/licenses/CC-BY-3.0-US.html",FALSE,"https://spdx.org/licenses/CC-BY-3.0-US.json",83,"Creative Commons Attribution 3.0 United States","CC-BY-3.0-US","https://creativecommons.org/licenses/by/3.0/us/legalcode",FALSE,NA +"https://spdx.org/licenses/CC-BY-4.0.html",FALSE,"https://spdx.org/licenses/CC-BY-4.0.json",79,"Creative Commons Attribution 4.0 International","CC-BY-4.0","https://creativecommons.org/licenses/by/4.0/legalcode",FALSE,TRUE +"https://spdx.org/licenses/CC-BY-NC-1.0.html",FALSE,"https://spdx.org/licenses/CC-BY-NC-1.0.json",51,"Creative Commons Attribution Non Commercial 1.0 Generic","CC-BY-NC-1.0","https://creativecommons.org/licenses/by-nc/1.0/legalcode",FALSE,FALSE +"https://spdx.org/licenses/CC-BY-NC-2.0.html",FALSE,"https://spdx.org/licenses/CC-BY-NC-2.0.json",12,"Creative Commons Attribution Non Commercial 2.0 Generic","CC-BY-NC-2.0","https://creativecommons.org/licenses/by-nc/2.0/legalcode",FALSE,FALSE +"https://spdx.org/licenses/CC-BY-NC-2.5.html",FALSE,"https://spdx.org/licenses/CC-BY-NC-2.5.json",589,"Creative Commons Attribution Non Commercial 2.5 Generic","CC-BY-NC-2.5","https://creativecommons.org/licenses/by-nc/2.5/legalcode",FALSE,FALSE +"https://spdx.org/licenses/CC-BY-NC-3.0.html",FALSE,"https://spdx.org/licenses/CC-BY-NC-3.0.json",355,"Creative Commons Attribution Non Commercial 3.0 Unported","CC-BY-NC-3.0","https://creativecommons.org/licenses/by-nc/3.0/legalcode",FALSE,FALSE +"https://spdx.org/licenses/CC-BY-NC-3.0-DE.html",FALSE,"https://spdx.org/licenses/CC-BY-NC-3.0-DE.json",265,"Creative Commons Attribution Non Commercial 3.0 Germany","CC-BY-NC-3.0-DE","https://creativecommons.org/licenses/by-nc/3.0/de/legalcode",FALSE,NA +"https://spdx.org/licenses/CC-BY-NC-4.0.html",FALSE,"https://spdx.org/licenses/CC-BY-NC-4.0.json",249,"Creative Commons Attribution Non Commercial 4.0 International","CC-BY-NC-4.0","https://creativecommons.org/licenses/by-nc/4.0/legalcode",FALSE,FALSE +"https://spdx.org/licenses/CC-BY-NC-ND-1.0.html",FALSE,"https://spdx.org/licenses/CC-BY-NC-ND-1.0.json",275,"Creative Commons Attribution Non Commercial No Derivatives 1.0 Generic","CC-BY-NC-ND-1.0","https://creativecommons.org/licenses/by-nd-nc/1.0/legalcode",FALSE,NA +"https://spdx.org/licenses/CC-BY-NC-ND-2.0.html",FALSE,"https://spdx.org/licenses/CC-BY-NC-ND-2.0.json",574,"Creative Commons Attribution Non Commercial No Derivatives 2.0 Generic","CC-BY-NC-ND-2.0","https://creativecommons.org/licenses/by-nc-nd/2.0/legalcode",FALSE,NA +"https://spdx.org/licenses/CC-BY-NC-ND-2.5.html",FALSE,"https://spdx.org/licenses/CC-BY-NC-ND-2.5.json",73,"Creative Commons Attribution Non Commercial No Derivatives 2.5 Generic","CC-BY-NC-ND-2.5","https://creativecommons.org/licenses/by-nc-nd/2.5/legalcode",FALSE,NA +"https://spdx.org/licenses/CC-BY-NC-ND-3.0.html",FALSE,"https://spdx.org/licenses/CC-BY-NC-ND-3.0.json",86,"Creative Commons Attribution Non Commercial No Derivatives 3.0 Unported","CC-BY-NC-ND-3.0","https://creativecommons.org/licenses/by-nc-nd/3.0/legalcode",FALSE,NA +"https://spdx.org/licenses/CC-BY-NC-ND-3.0-DE.html",FALSE,"https://spdx.org/licenses/CC-BY-NC-ND-3.0-DE.json",430,"Creative Commons Attribution Non Commercial No Derivatives 3.0 Germany","CC-BY-NC-ND-3.0-DE","https://creativecommons.org/licenses/by-nc-nd/3.0/de/legalcode",FALSE,NA +"https://spdx.org/licenses/CC-BY-NC-ND-3.0-IGO.html",FALSE,"https://spdx.org/licenses/CC-BY-NC-ND-3.0-IGO.json",117,"Creative Commons Attribution Non Commercial No Derivatives 3.0 IGO","CC-BY-NC-ND-3.0-IGO","https://creativecommons.org/licenses/by-nc-nd/3.0/igo/legalcode",FALSE,NA +"https://spdx.org/licenses/CC-BY-NC-ND-4.0.html",FALSE,"https://spdx.org/licenses/CC-BY-NC-ND-4.0.json",458,"Creative Commons Attribution Non Commercial No Derivatives 4.0 International","CC-BY-NC-ND-4.0","https://creativecommons.org/licenses/by-nc-nd/4.0/legalcode",FALSE,NA +"https://spdx.org/licenses/CC-BY-NC-SA-1.0.html",FALSE,"https://spdx.org/licenses/CC-BY-NC-SA-1.0.json",588,"Creative Commons Attribution Non Commercial Share Alike 1.0 Generic","CC-BY-NC-SA-1.0","https://creativecommons.org/licenses/by-nc-sa/1.0/legalcode",FALSE,NA +"https://spdx.org/licenses/CC-BY-NC-SA-2.0.html",FALSE,"https://spdx.org/licenses/CC-BY-NC-SA-2.0.json",190,"Creative Commons Attribution Non Commercial Share Alike 2.0 Generic","CC-BY-NC-SA-2.0","https://creativecommons.org/licenses/by-nc-sa/2.0/legalcode",FALSE,NA +"https://spdx.org/licenses/CC-BY-NC-SA-2.0-DE.html",FALSE,"https://spdx.org/licenses/CC-BY-NC-SA-2.0-DE.json",313,"Creative Commons Attribution Non Commercial Share Alike 2.0 Germany","CC-BY-NC-SA-2.0-DE","https://creativecommons.org/licenses/by-nc-sa/2.0/de/legalcode",FALSE,NA +"https://spdx.org/licenses/CC-BY-NC-SA-2.0-FR.html",FALSE,"https://spdx.org/licenses/CC-BY-NC-SA-2.0-FR.json",75,"Creative Commons Attribution-NonCommercial-ShareAlike 2.0 France","CC-BY-NC-SA-2.0-FR","https://creativecommons.org/licenses/by-nc-sa/2.0/fr/legalcode",FALSE,NA +"https://spdx.org/licenses/CC-BY-NC-SA-2.0-UK.html",FALSE,"https://spdx.org/licenses/CC-BY-NC-SA-2.0-UK.json",41,"Creative Commons Attribution Non Commercial Share Alike 2.0 England and Wales","CC-BY-NC-SA-2.0-UK","https://creativecommons.org/licenses/by-nc-sa/2.0/uk/legalcode",FALSE,NA +"https://spdx.org/licenses/CC-BY-NC-SA-2.5.html",FALSE,"https://spdx.org/licenses/CC-BY-NC-SA-2.5.json",55,"Creative Commons Attribution Non Commercial Share Alike 2.5 Generic","CC-BY-NC-SA-2.5","https://creativecommons.org/licenses/by-nc-sa/2.5/legalcode",FALSE,NA +"https://spdx.org/licenses/CC-BY-NC-SA-3.0.html",FALSE,"https://spdx.org/licenses/CC-BY-NC-SA-3.0.json",228,"Creative Commons Attribution Non Commercial Share Alike 3.0 Unported","CC-BY-NC-SA-3.0","https://creativecommons.org/licenses/by-nc-sa/3.0/legalcode",FALSE,NA +"https://spdx.org/licenses/CC-BY-NC-SA-3.0-DE.html",FALSE,"https://spdx.org/licenses/CC-BY-NC-SA-3.0-DE.json",237,"Creative Commons Attribution Non Commercial Share Alike 3.0 Germany","CC-BY-NC-SA-3.0-DE","https://creativecommons.org/licenses/by-nc-sa/3.0/de/legalcode",FALSE,NA +"https://spdx.org/licenses/CC-BY-NC-SA-3.0-IGO.html",FALSE,"https://spdx.org/licenses/CC-BY-NC-SA-3.0-IGO.json",308,"Creative Commons Attribution Non Commercial Share Alike 3.0 IGO","CC-BY-NC-SA-3.0-IGO","https://creativecommons.org/licenses/by-nc-sa/3.0/igo/legalcode",FALSE,NA +"https://spdx.org/licenses/CC-BY-NC-SA-4.0.html",FALSE,"https://spdx.org/licenses/CC-BY-NC-SA-4.0.json",576,"Creative Commons Attribution Non Commercial Share Alike 4.0 International","CC-BY-NC-SA-4.0","https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode",FALSE,NA +"https://spdx.org/licenses/CC-BY-ND-1.0.html",FALSE,"https://spdx.org/licenses/CC-BY-ND-1.0.json",448,"Creative Commons Attribution No Derivatives 1.0 Generic","CC-BY-ND-1.0","https://creativecommons.org/licenses/by-nd/1.0/legalcode",FALSE,FALSE +"https://spdx.org/licenses/CC-BY-ND-2.0.html",FALSE,"https://spdx.org/licenses/CC-BY-ND-2.0.json",468,"Creative Commons Attribution No Derivatives 2.0 Generic","CC-BY-ND-2.0","https://creativecommons.org/licenses/by-nd/2.0/legalcode",FALSE,FALSE +"https://spdx.org/licenses/CC-BY-ND-2.5.html",FALSE,"https://spdx.org/licenses/CC-BY-ND-2.5.json",420,"Creative Commons Attribution No Derivatives 2.5 Generic","CC-BY-ND-2.5","https://creativecommons.org/licenses/by-nd/2.5/legalcode",FALSE,FALSE +"https://spdx.org/licenses/CC-BY-ND-3.0.html",FALSE,"https://spdx.org/licenses/CC-BY-ND-3.0.json",328,"Creative Commons Attribution No Derivatives 3.0 Unported","CC-BY-ND-3.0","https://creativecommons.org/licenses/by-nd/3.0/legalcode",FALSE,FALSE +"https://spdx.org/licenses/CC-BY-ND-3.0-DE.html",FALSE,"https://spdx.org/licenses/CC-BY-ND-3.0-DE.json",488,"Creative Commons Attribution No Derivatives 3.0 Germany","CC-BY-ND-3.0-DE","https://creativecommons.org/licenses/by-nd/3.0/de/legalcode",FALSE,NA +"https://spdx.org/licenses/CC-BY-ND-4.0.html",FALSE,"https://spdx.org/licenses/CC-BY-ND-4.0.json",382,"Creative Commons Attribution No Derivatives 4.0 International","CC-BY-ND-4.0","https://creativecommons.org/licenses/by-nd/4.0/legalcode",FALSE,FALSE +"https://spdx.org/licenses/CC-BY-SA-1.0.html",FALSE,"https://spdx.org/licenses/CC-BY-SA-1.0.json",452,"Creative Commons Attribution Share Alike 1.0 Generic","CC-BY-SA-1.0","https://creativecommons.org/licenses/by-sa/1.0/legalcode",FALSE,NA +"https://spdx.org/licenses/CC-BY-SA-2.0.html",FALSE,"https://spdx.org/licenses/CC-BY-SA-2.0.json",404,"Creative Commons Attribution Share Alike 2.0 Generic","CC-BY-SA-2.0","https://creativecommons.org/licenses/by-sa/2.0/legalcode",FALSE,NA +"https://spdx.org/licenses/CC-BY-SA-2.0-UK.html",FALSE,"https://spdx.org/licenses/CC-BY-SA-2.0-UK.json",271,"Creative Commons Attribution Share Alike 2.0 England and Wales","CC-BY-SA-2.0-UK","https://creativecommons.org/licenses/by-sa/2.0/uk/legalcode",FALSE,NA +"https://spdx.org/licenses/CC-BY-SA-2.1-JP.html",FALSE,"https://spdx.org/licenses/CC-BY-SA-2.1-JP.json",282,"Creative Commons Attribution Share Alike 2.1 Japan","CC-BY-SA-2.1-JP","https://creativecommons.org/licenses/by-sa/2.1/jp/legalcode",FALSE,NA +"https://spdx.org/licenses/CC-BY-SA-2.5.html",FALSE,"https://spdx.org/licenses/CC-BY-SA-2.5.json",347,"Creative Commons Attribution Share Alike 2.5 Generic","CC-BY-SA-2.5","https://creativecommons.org/licenses/by-sa/2.5/legalcode",FALSE,NA +"https://spdx.org/licenses/CC-BY-SA-3.0.html",FALSE,"https://spdx.org/licenses/CC-BY-SA-3.0.json",520,"Creative Commons Attribution Share Alike 3.0 Unported","CC-BY-SA-3.0","https://creativecommons.org/licenses/by-sa/3.0/legalcode",FALSE,NA +"https://spdx.org/licenses/CC-BY-SA-3.0-AT.html",FALSE,"https://spdx.org/licenses/CC-BY-SA-3.0-AT.json",522,"Creative Commons Attribution Share Alike 3.0 Austria","CC-BY-SA-3.0-AT","https://creativecommons.org/licenses/by-sa/3.0/at/legalcode",FALSE,NA +"https://spdx.org/licenses/CC-BY-SA-3.0-DE.html",FALSE,"https://spdx.org/licenses/CC-BY-SA-3.0-DE.json",441,"Creative Commons Attribution Share Alike 3.0 Germany","CC-BY-SA-3.0-DE","https://creativecommons.org/licenses/by-sa/3.0/de/legalcode",FALSE,NA +"https://spdx.org/licenses/CC-BY-SA-3.0-IGO.html",FALSE,"https://spdx.org/licenses/CC-BY-SA-3.0-IGO.json",42,"Creative Commons Attribution-ShareAlike 3.0 IGO","CC-BY-SA-3.0-IGO","https://creativecommons.org/licenses/by-sa/3.0/igo/legalcode",FALSE,NA +"https://spdx.org/licenses/CC-BY-SA-4.0.html",FALSE,"https://spdx.org/licenses/CC-BY-SA-4.0.json",194,"Creative Commons Attribution Share Alike 4.0 International","CC-BY-SA-4.0","https://creativecommons.org/licenses/by-sa/4.0/legalcode",FALSE,TRUE +"https://spdx.org/licenses/CC-PDDC.html",FALSE,"https://spdx.org/licenses/CC-PDDC.json",85,"Creative Commons Public Domain Dedication and Certification","CC-PDDC","https://creativecommons.org/licenses/publicdomain/",FALSE,NA +"https://spdx.org/licenses/CC0-1.0.html",FALSE,"https://spdx.org/licenses/CC0-1.0.json",87,"Creative Commons Zero v1.0 Universal","CC0-1.0","https://creativecommons.org/publicdomain/zero/1.0/legalcode",FALSE,TRUE +"https://spdx.org/licenses/CDDL-1.0.html",FALSE,"https://spdx.org/licenses/CDDL-1.0.json",446,"Common Development and Distribution License 1.0","CDDL-1.0","https://opensource.org/licenses/cddl1",TRUE,TRUE +"https://spdx.org/licenses/CDDL-1.1.html",FALSE,"https://spdx.org/licenses/CDDL-1.1.json",97,"Common Development and Distribution License 1.1","CDDL-1.1","http://glassfish.java.net/public/CDDL+GPL_1_1.html",FALSE,NA +"https://spdx.org/licenses/CDL-1.0.html",FALSE,"https://spdx.org/licenses/CDL-1.0.json",517,"Common Documentation License 1.0","CDL-1.0","http://www.opensource.apple.com/cdl/",FALSE,NA +"https://spdx.org/licenses/CDLA-Permissive-1.0.html",FALSE,"https://spdx.org/licenses/CDLA-Permissive-1.0.json",84,"Community Data License Agreement Permissive 1.0","CDLA-Permissive-1.0","https://cdla.io/permissive-1-0",FALSE,NA +"https://spdx.org/licenses/CDLA-Permissive-2.0.html",FALSE,"https://spdx.org/licenses/CDLA-Permissive-2.0.json",480,"Community Data License Agreement Permissive 2.0","CDLA-Permissive-2.0","https://cdla.dev/permissive-2-0",FALSE,NA +"https://spdx.org/licenses/CDLA-Sharing-1.0.html",FALSE,"https://spdx.org/licenses/CDLA-Sharing-1.0.json",306,"Community Data License Agreement Sharing 1.0","CDLA-Sharing-1.0","https://cdla.io/sharing-1-0",FALSE,NA +"https://spdx.org/licenses/CECILL-1.0.html",FALSE,"https://spdx.org/licenses/CECILL-1.0.json",425,"CeCILL Free Software License Agreement v1.0","CECILL-1.0","http://www.cecill.info/licences/Licence_CeCILL_V1-fr.html",FALSE,NA +"https://spdx.org/licenses/CECILL-1.1.html",FALSE,"https://spdx.org/licenses/CECILL-1.1.json",414,"CeCILL Free Software License Agreement v1.1","CECILL-1.1","http://www.cecill.info/licences/Licence_CeCILL_V1.1-US.html",FALSE,NA +"https://spdx.org/licenses/CECILL-2.0.html",FALSE,"https://spdx.org/licenses/CECILL-2.0.json",129,"CeCILL Free Software License Agreement v2.0","CECILL-2.0","http://www.cecill.info/licences/Licence_CeCILL_V2-en.html",FALSE,TRUE +"https://spdx.org/licenses/CECILL-2.1.html",FALSE,"https://spdx.org/licenses/CECILL-2.1.json",413,"CeCILL Free Software License Agreement v2.1","CECILL-2.1","http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.html",TRUE,NA +"https://spdx.org/licenses/CECILL-B.html",FALSE,"https://spdx.org/licenses/CECILL-B.json",415,"CeCILL-B Free Software License Agreement","CECILL-B","http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html",FALSE,TRUE +"https://spdx.org/licenses/CECILL-C.html",FALSE,"https://spdx.org/licenses/CECILL-C.json",70,"CeCILL-C Free Software License Agreement","CECILL-C","http://www.cecill.info/licences/Licence_CeCILL-C_V1-en.html",FALSE,TRUE +"https://spdx.org/licenses/CERN-OHL-1.1.html",FALSE,"https://spdx.org/licenses/CERN-OHL-1.1.json",442,"CERN Open Hardware Licence v1.1","CERN-OHL-1.1","https://www.ohwr.org/project/licenses/wikis/cern-ohl-v1.1",FALSE,NA +"https://spdx.org/licenses/CERN-OHL-1.2.html",FALSE,"https://spdx.org/licenses/CERN-OHL-1.2.json",234,"CERN Open Hardware Licence v1.2","CERN-OHL-1.2","https://www.ohwr.org/project/licenses/wikis/cern-ohl-v1.2",FALSE,NA +"https://spdx.org/licenses/CERN-OHL-P-2.0.html",FALSE,"https://spdx.org/licenses/CERN-OHL-P-2.0.json",465,"CERN Open Hardware Licence Version 2 - Permissive","CERN-OHL-P-2.0","https://www.ohwr.org/project/cernohl/wikis/Documents/CERN-OHL-version-2",TRUE,NA +"https://spdx.org/licenses/CERN-OHL-S-2.0.html",FALSE,"https://spdx.org/licenses/CERN-OHL-S-2.0.json",323,"CERN Open Hardware Licence Version 2 - Strongly Reciprocal","CERN-OHL-S-2.0","https://www.ohwr.org/project/cernohl/wikis/Documents/CERN-OHL-version-2",TRUE,NA +"https://spdx.org/licenses/CERN-OHL-W-2.0.html",FALSE,"https://spdx.org/licenses/CERN-OHL-W-2.0.json",231,"CERN Open Hardware Licence Version 2 - Weakly Reciprocal","CERN-OHL-W-2.0","https://www.ohwr.org/project/cernohl/wikis/Documents/CERN-OHL-version-2",TRUE,NA +"https://spdx.org/licenses/CFITSIO.html",FALSE,"https://spdx.org/licenses/CFITSIO.json",314,"CFITSIO License","CFITSIO","https://heasarc.gsfc.nasa.gov/docs/software/fitsio/c/f_user/node9.html",FALSE,NA +"https://spdx.org/licenses/check-cvs.html",FALSE,"https://spdx.org/licenses/check-cvs.json",189,"check-cvs License","check-cvs","http://cvs.savannah.gnu.org/viewvc/cvs/ccvs/contrib/check_cvs.in?revision=1.1.4.3&view=markup&pathrev=cvs1-11-23#l2",FALSE,NA +"https://spdx.org/licenses/checkmk.html",FALSE,"https://spdx.org/licenses/checkmk.json",417,"Checkmk License","checkmk","https://github.com/libcheck/check/blob/master/checkmk/checkmk.in",FALSE,NA +"https://spdx.org/licenses/ClArtistic.html",FALSE,"https://spdx.org/licenses/ClArtistic.json",261,"Clarified Artistic License","ClArtistic","http://gianluca.dellavedova.org/2011/01/03/clarified-artistic-license/",FALSE,TRUE +"https://spdx.org/licenses/Clips.html",FALSE,"https://spdx.org/licenses/Clips.json",513,"Clips License","Clips","https://github.com/DrItanium/maya/blob/master/LICENSE.CLIPS",FALSE,NA +"https://spdx.org/licenses/CMU-Mach.html",FALSE,"https://spdx.org/licenses/CMU-Mach.json",470,"CMU Mach License","CMU-Mach","https://www.cs.cmu.edu/~410/licenses.html",FALSE,NA +"https://spdx.org/licenses/CNRI-Jython.html",FALSE,"https://spdx.org/licenses/CNRI-Jython.json",81,"CNRI Jython License","CNRI-Jython","http://www.jython.org/license.html",FALSE,NA +"https://spdx.org/licenses/CNRI-Python.html",FALSE,"https://spdx.org/licenses/CNRI-Python.json",11,"CNRI Python License","CNRI-Python","https://opensource.org/licenses/CNRI-Python",TRUE,NA +"https://spdx.org/licenses/CNRI-Python-GPL-Compatible.html",FALSE,"https://spdx.org/licenses/CNRI-Python-GPL-Compatible.json",568,"CNRI Python Open Source GPL Compatible License Agreement","CNRI-Python-GPL-Compatible","http://www.python.org/download/releases/1.6.1/download_win/",FALSE,NA +"https://spdx.org/licenses/COIL-1.0.html",FALSE,"https://spdx.org/licenses/COIL-1.0.json",585,"Copyfree Open Innovation License","COIL-1.0","https://coil.apotheon.org/plaintext/01.0.txt",FALSE,NA +"https://spdx.org/licenses/Community-Spec-1.0.html",FALSE,"https://spdx.org/licenses/Community-Spec-1.0.json",180,"Community Specification License 1.0","Community-Spec-1.0","https://github.com/CommunitySpecification/1.0/blob/master/1._Community_Specification_License-v1.md",FALSE,NA +"https://spdx.org/licenses/Condor-1.1.html",FALSE,"https://spdx.org/licenses/Condor-1.1.json",283,"Condor Public License v1.1","Condor-1.1","http://research.cs.wisc.edu/condor/license.html#condor",FALSE,TRUE +"https://spdx.org/licenses/copyleft-next-0.3.0.html",FALSE,"https://spdx.org/licenses/copyleft-next-0.3.0.json",62,"copyleft-next 0.3.0","copyleft-next-0.3.0","https://github.com/copyleft-next/copyleft-next/blob/master/Releases/copyleft-next-0.3.0",FALSE,NA +"https://spdx.org/licenses/copyleft-next-0.3.1.html",FALSE,"https://spdx.org/licenses/copyleft-next-0.3.1.json",93,"copyleft-next 0.3.1","copyleft-next-0.3.1","https://github.com/copyleft-next/copyleft-next/blob/master/Releases/copyleft-next-0.3.1",FALSE,NA +"https://spdx.org/licenses/Cornell-Lossless-JPEG.html",FALSE,"https://spdx.org/licenses/Cornell-Lossless-JPEG.json",99,"Cornell Lossless JPEG License","Cornell-Lossless-JPEG","https://android.googlesource.com/platform/external/dng_sdk/+/refs/heads/master/source/dng_lossless_jpeg.cpp#16",FALSE,NA +"https://spdx.org/licenses/CPAL-1.0.html",FALSE,"https://spdx.org/licenses/CPAL-1.0.json",110,"Common Public Attribution License 1.0","CPAL-1.0","https://opensource.org/licenses/CPAL-1.0",TRUE,TRUE +"https://spdx.org/licenses/CPL-1.0.html",FALSE,"https://spdx.org/licenses/CPL-1.0.json",559,"Common Public License 1.0","CPL-1.0","https://opensource.org/licenses/CPL-1.0",TRUE,TRUE +"https://spdx.org/licenses/CPOL-1.02.html",FALSE,"https://spdx.org/licenses/CPOL-1.02.json",566,"Code Project Open License 1.02","CPOL-1.02","http://www.codeproject.com/info/cpol10.aspx",FALSE,FALSE +"https://spdx.org/licenses/Cronyx.html",FALSE,"https://spdx.org/licenses/Cronyx.json",183,"Cronyx License","Cronyx","https://gitlab.freedesktop.org/xorg/font/alias/-/blob/master/COPYING",FALSE,NA +"https://spdx.org/licenses/Crossword.html",FALSE,"https://spdx.org/licenses/Crossword.json",582,"Crossword License","Crossword","https://fedoraproject.org/wiki/Licensing/Crossword",FALSE,NA +"https://spdx.org/licenses/CrystalStacker.html",FALSE,"https://spdx.org/licenses/CrystalStacker.json",214,"CrystalStacker License","CrystalStacker","https://fedoraproject.org/wiki/Licensing:CrystalStacker?rd=Licensing/CrystalStacker",FALSE,NA +"https://spdx.org/licenses/CUA-OPL-1.0.html",FALSE,"https://spdx.org/licenses/CUA-OPL-1.0.json",94,"CUA Office Public License v1.0","CUA-OPL-1.0","https://opensource.org/licenses/CUA-OPL-1.0",TRUE,NA +"https://spdx.org/licenses/Cube.html",FALSE,"https://spdx.org/licenses/Cube.json",495,"Cube License","Cube","https://fedoraproject.org/wiki/Licensing/Cube",FALSE,NA +"https://spdx.org/licenses/curl.html",FALSE,"https://spdx.org/licenses/curl.json",530,"curl License","curl","https://github.com/bagder/curl/blob/master/COPYING",FALSE,NA +"https://spdx.org/licenses/D-FSL-1.0.html",FALSE,"https://spdx.org/licenses/D-FSL-1.0.json",432,"Deutsche Freie Software Lizenz","D-FSL-1.0","http://www.dipp.nrw.de/d-fsl/lizenzen/",FALSE,NA +"https://spdx.org/licenses/diffmark.html",FALSE,"https://spdx.org/licenses/diffmark.json",326,"diffmark license","diffmark","https://fedoraproject.org/wiki/Licensing/diffmark",FALSE,NA +"https://spdx.org/licenses/DL-DE-BY-2.0.html",FALSE,"https://spdx.org/licenses/DL-DE-BY-2.0.json",485,"Data licence Germany – attribution – version 2.0","DL-DE-BY-2.0","https://www.govdata.de/dl-de/by-2-0",FALSE,NA +"https://spdx.org/licenses/DL-DE-ZERO-2.0.html",FALSE,"https://spdx.org/licenses/DL-DE-ZERO-2.0.json",402,"Data licence Germany – zero – version 2.0","DL-DE-ZERO-2.0","https://www.govdata.de/dl-de/zero-2-0",FALSE,NA +"https://spdx.org/licenses/DOC.html",FALSE,"https://spdx.org/licenses/DOC.json",80,"DOC License","DOC","http://www.cs.wustl.edu/~schmidt/ACE-copying.html",FALSE,NA +"https://spdx.org/licenses/Dotseqn.html",FALSE,"https://spdx.org/licenses/Dotseqn.json",256,"Dotseqn License","Dotseqn","https://fedoraproject.org/wiki/Licensing/Dotseqn",FALSE,NA +"https://spdx.org/licenses/DRL-1.0.html",FALSE,"https://spdx.org/licenses/DRL-1.0.json",279,"Detection Rule License 1.0","DRL-1.0","https://github.com/Neo23x0/sigma/blob/master/LICENSE.Detection.Rules.md",FALSE,NA +"https://spdx.org/licenses/DSDP.html",FALSE,"https://spdx.org/licenses/DSDP.json",136,"DSDP License","DSDP","https://fedoraproject.org/wiki/Licensing/DSDP",FALSE,NA +"https://spdx.org/licenses/dtoa.html",FALSE,"https://spdx.org/licenses/dtoa.json",385,"David M. Gay dtoa License","dtoa","https://github.com/SWI-Prolog/swipl-devel/blob/master/src/os/dtoa.c",FALSE,NA +"https://spdx.org/licenses/dvipdfm.html",FALSE,"https://spdx.org/licenses/dvipdfm.json",176,"dvipdfm License","dvipdfm","https://fedoraproject.org/wiki/Licensing/dvipdfm",FALSE,NA +"https://spdx.org/licenses/ECL-1.0.html",FALSE,"https://spdx.org/licenses/ECL-1.0.json",266,"Educational Community License v1.0","ECL-1.0","https://opensource.org/licenses/ECL-1.0",TRUE,NA +"https://spdx.org/licenses/ECL-2.0.html",FALSE,"https://spdx.org/licenses/ECL-2.0.json",255,"Educational Community License v2.0","ECL-2.0","https://opensource.org/licenses/ECL-2.0",TRUE,TRUE +"https://spdx.org/licenses/eCos-2.0.html",TRUE,"https://spdx.org/licenses/eCos-2.0.json",487,"eCos license version 2.0","eCos-2.0","https://www.gnu.org/licenses/ecos-license.html",FALSE,TRUE +"https://spdx.org/licenses/EFL-1.0.html",FALSE,"https://spdx.org/licenses/EFL-1.0.json",309,"Eiffel Forum License v1.0","EFL-1.0","http://www.eiffel-nice.org/license/forum.txt",TRUE,NA +"https://spdx.org/licenses/EFL-2.0.html",FALSE,"https://spdx.org/licenses/EFL-2.0.json",127,"Eiffel Forum License v2.0","EFL-2.0","http://www.eiffel-nice.org/license/eiffel-forum-license-2.html",TRUE,TRUE +"https://spdx.org/licenses/eGenix.html",FALSE,"https://spdx.org/licenses/eGenix.json",50,"eGenix.com Public License 1.1.0","eGenix","http://www.egenix.com/products/eGenix.com-Public-License-1.1.0.pdf",FALSE,NA +"https://spdx.org/licenses/Elastic-2.0.html",FALSE,"https://spdx.org/licenses/Elastic-2.0.json",362,"Elastic License 2.0","Elastic-2.0","https://www.elastic.co/licensing/elastic-license",FALSE,NA +"https://spdx.org/licenses/Entessa.html",FALSE,"https://spdx.org/licenses/Entessa.json",205,"Entessa Public License v1.0","Entessa","https://opensource.org/licenses/Entessa",TRUE,NA +"https://spdx.org/licenses/EPICS.html",FALSE,"https://spdx.org/licenses/EPICS.json",525,"EPICS Open License","EPICS","https://epics.anl.gov/license/open.php",FALSE,NA +"https://spdx.org/licenses/EPL-1.0.html",FALSE,"https://spdx.org/licenses/EPL-1.0.json",143,"Eclipse Public License 1.0","EPL-1.0","http://www.eclipse.org/legal/epl-v10.html",TRUE,TRUE +"https://spdx.org/licenses/EPL-2.0.html",FALSE,"https://spdx.org/licenses/EPL-2.0.json",436,"Eclipse Public License 2.0","EPL-2.0","https://www.eclipse.org/legal/epl-2.0",TRUE,TRUE +"https://spdx.org/licenses/ErlPL-1.1.html",FALSE,"https://spdx.org/licenses/ErlPL-1.1.json",253,"Erlang Public License v1.1","ErlPL-1.1","http://www.erlang.org/EPLICENSE",FALSE,NA +"https://spdx.org/licenses/etalab-2.0.html",FALSE,"https://spdx.org/licenses/etalab-2.0.json",374,"Etalab Open License 2.0","etalab-2.0","https://github.com/DISIC/politique-de-contribution-open-source/blob/master/LICENSE.pdf",FALSE,NA +"https://spdx.org/licenses/EUDatagrid.html",FALSE,"https://spdx.org/licenses/EUDatagrid.json",2,"EU DataGrid Software License","EUDatagrid","http://eu-datagrid.web.cern.ch/eu-datagrid/license.html",TRUE,TRUE +"https://spdx.org/licenses/EUPL-1.0.html",FALSE,"https://spdx.org/licenses/EUPL-1.0.json",104,"European Union Public License 1.0","EUPL-1.0","http://ec.europa.eu/idabc/en/document/7330.html",FALSE,NA +"https://spdx.org/licenses/EUPL-1.1.html",FALSE,"https://spdx.org/licenses/EUPL-1.1.json",577,"European Union Public License 1.1","EUPL-1.1","https://joinup.ec.europa.eu/software/page/eupl/licence-eupl",TRUE,TRUE +"https://spdx.org/licenses/EUPL-1.2.html",FALSE,"https://spdx.org/licenses/EUPL-1.2.json",56,"European Union Public License 1.2","EUPL-1.2","https://joinup.ec.europa.eu/page/eupl-text-11-12",TRUE,TRUE +"https://spdx.org/licenses/Eurosym.html",FALSE,"https://spdx.org/licenses/Eurosym.json",182,"Eurosym License","Eurosym","https://fedoraproject.org/wiki/Licensing/Eurosym",FALSE,NA +"https://spdx.org/licenses/Fair.html",FALSE,"https://spdx.org/licenses/Fair.json",248,"Fair License","Fair","http://fairlicense.org/",TRUE,NA +"https://spdx.org/licenses/FBM.html",FALSE,"https://spdx.org/licenses/FBM.json",426,"Fuzzy Bitmap License","FBM","https://github.com/SWI-Prolog/packages-xpce/blob/161a40cd82004f731ba48024f9d30af388a7edf5/src/img/gifwrite.c#L21-L26",FALSE,NA +"https://spdx.org/licenses/FDK-AAC.html",FALSE,"https://spdx.org/licenses/FDK-AAC.json",301,"Fraunhofer FDK AAC Codec Library","FDK-AAC","https://fedoraproject.org/wiki/Licensing/FDK-AAC",FALSE,NA +"https://spdx.org/licenses/Ferguson-Twofish.html",FALSE,"https://spdx.org/licenses/Ferguson-Twofish.json",583,"Ferguson Twofish License","Ferguson-Twofish","https://github.com/wernerd/ZRTPCPP/blob/6b3cd8e6783642292bad0c21e3e5e5ce45ff3e03/cryptcommon/twofish.c#L113C3-L127",FALSE,NA +"https://spdx.org/licenses/Frameworx-1.0.html",FALSE,"https://spdx.org/licenses/Frameworx-1.0.json",444,"Frameworx Open License 1.0","Frameworx-1.0","https://opensource.org/licenses/Frameworx-1.0",TRUE,NA +"https://spdx.org/licenses/FreeBSD-DOC.html",FALSE,"https://spdx.org/licenses/FreeBSD-DOC.json",554,"FreeBSD Documentation License","FreeBSD-DOC","https://www.freebsd.org/copyright/freebsd-doc-license/",FALSE,NA +"https://spdx.org/licenses/FreeImage.html",FALSE,"https://spdx.org/licenses/FreeImage.json",315,"FreeImage Public License v1.0","FreeImage","http://freeimage.sourceforge.net/freeimage-license.txt",FALSE,NA +"https://spdx.org/licenses/FSFAP.html",FALSE,"https://spdx.org/licenses/FSFAP.json",399,"FSF All Permissive License","FSFAP","https://www.gnu.org/prep/maintain/html_node/License-Notices-for-Other-Files.html",FALSE,TRUE +"https://spdx.org/licenses/FSFUL.html",FALSE,"https://spdx.org/licenses/FSFUL.json",36,"FSF Unlimited License","FSFUL","https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License",FALSE,NA +"https://spdx.org/licenses/FSFULLR.html",FALSE,"https://spdx.org/licenses/FSFULLR.json",429,"FSF Unlimited License (with License Retention)","FSFULLR","https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention_Variant",FALSE,NA +"https://spdx.org/licenses/FSFULLRWD.html",FALSE,"https://spdx.org/licenses/FSFULLRWD.json",18,"FSF Unlimited License (With License Retention and Warranty Disclaimer)","FSFULLRWD","https://lists.gnu.org/archive/html/autoconf/2012-04/msg00061.html",FALSE,NA +"https://spdx.org/licenses/FTL.html",FALSE,"https://spdx.org/licenses/FTL.json",233,"Freetype Project License","FTL","http://freetype.fis.uniroma2.it/FTL.TXT",FALSE,TRUE +"https://spdx.org/licenses/Furuseth.html",FALSE,"https://spdx.org/licenses/Furuseth.json",273,"Furuseth License","Furuseth","https://git.openldap.org/openldap/openldap/-/blob/master/COPYRIGHT?ref_type=heads#L39-51",FALSE,NA +"https://spdx.org/licenses/fwlw.html",FALSE,"https://spdx.org/licenses/fwlw.json",166,"fwlw License","fwlw","https://mirrors.nic.cz/tex-archive/macros/latex/contrib/fwlw/README",FALSE,NA +"https://spdx.org/licenses/GD.html",FALSE,"https://spdx.org/licenses/GD.json",489,"GD License","GD","https://libgd.github.io/manuals/2.3.0/files/license-txt.html",FALSE,NA +"https://spdx.org/licenses/GFDL-1.1.html",TRUE,"https://spdx.org/licenses/GFDL-1.1.json",162,"GNU Free Documentation License v1.1","GFDL-1.1","https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt",FALSE,TRUE +"https://spdx.org/licenses/GFDL-1.1-invariants-only.html",FALSE,"https://spdx.org/licenses/GFDL-1.1-invariants-only.json",368,"GNU Free Documentation License v1.1 only - invariants","GFDL-1.1-invariants-only","https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt",FALSE,NA +"https://spdx.org/licenses/GFDL-1.1-invariants-or-later.html",FALSE,"https://spdx.org/licenses/GFDL-1.1-invariants-or-later.json",38,"GNU Free Documentation License v1.1 or later - invariants","GFDL-1.1-invariants-or-later","https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt",FALSE,NA +"https://spdx.org/licenses/GFDL-1.1-no-invariants-only.html",FALSE,"https://spdx.org/licenses/GFDL-1.1-no-invariants-only.json",350,"GNU Free Documentation License v1.1 only - no invariants","GFDL-1.1-no-invariants-only","https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt",FALSE,NA +"https://spdx.org/licenses/GFDL-1.1-no-invariants-or-later.html",FALSE,"https://spdx.org/licenses/GFDL-1.1-no-invariants-or-later.json",335,"GNU Free Documentation License v1.1 or later - no invariants","GFDL-1.1-no-invariants-or-later","https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt",FALSE,NA +"https://spdx.org/licenses/GFDL-1.1-only.html",FALSE,"https://spdx.org/licenses/GFDL-1.1-only.json",59,"GNU Free Documentation License v1.1 only","GFDL-1.1-only","https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt",FALSE,TRUE +"https://spdx.org/licenses/GFDL-1.1-or-later.html",FALSE,"https://spdx.org/licenses/GFDL-1.1-or-later.json",556,"GNU Free Documentation License v1.1 or later","GFDL-1.1-or-later","https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt",FALSE,TRUE +"https://spdx.org/licenses/GFDL-1.2.html",TRUE,"https://spdx.org/licenses/GFDL-1.2.json",537,"GNU Free Documentation License v1.2","GFDL-1.2","https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt",FALSE,TRUE +"https://spdx.org/licenses/GFDL-1.2-invariants-only.html",FALSE,"https://spdx.org/licenses/GFDL-1.2-invariants-only.json",8,"GNU Free Documentation License v1.2 only - invariants","GFDL-1.2-invariants-only","https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt",FALSE,NA +"https://spdx.org/licenses/GFDL-1.2-invariants-or-later.html",FALSE,"https://spdx.org/licenses/GFDL-1.2-invariants-or-later.json",31,"GNU Free Documentation License v1.2 or later - invariants","GFDL-1.2-invariants-or-later","https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt",FALSE,NA +"https://spdx.org/licenses/GFDL-1.2-no-invariants-only.html",FALSE,"https://spdx.org/licenses/GFDL-1.2-no-invariants-only.json",490,"GNU Free Documentation License v1.2 only - no invariants","GFDL-1.2-no-invariants-only","https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt",FALSE,NA +"https://spdx.org/licenses/GFDL-1.2-no-invariants-or-later.html",FALSE,"https://spdx.org/licenses/GFDL-1.2-no-invariants-or-later.json",124,"GNU Free Documentation License v1.2 or later - no invariants","GFDL-1.2-no-invariants-or-later","https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt",FALSE,NA +"https://spdx.org/licenses/GFDL-1.2-only.html",FALSE,"https://spdx.org/licenses/GFDL-1.2-only.json",516,"GNU Free Documentation License v1.2 only","GFDL-1.2-only","https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt",FALSE,TRUE +"https://spdx.org/licenses/GFDL-1.2-or-later.html",FALSE,"https://spdx.org/licenses/GFDL-1.2-or-later.json",184,"GNU Free Documentation License v1.2 or later","GFDL-1.2-or-later","https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt",FALSE,TRUE +"https://spdx.org/licenses/GFDL-1.3.html",TRUE,"https://spdx.org/licenses/GFDL-1.3.json",590,"GNU Free Documentation License v1.3","GFDL-1.3","https://www.gnu.org/licenses/fdl-1.3.txt",FALSE,TRUE +"https://spdx.org/licenses/GFDL-1.3-invariants-only.html",FALSE,"https://spdx.org/licenses/GFDL-1.3-invariants-only.json",348,"GNU Free Documentation License v1.3 only - invariants","GFDL-1.3-invariants-only","https://www.gnu.org/licenses/fdl-1.3.txt",FALSE,NA +"https://spdx.org/licenses/GFDL-1.3-invariants-or-later.html",FALSE,"https://spdx.org/licenses/GFDL-1.3-invariants-or-later.json",338,"GNU Free Documentation License v1.3 or later - invariants","GFDL-1.3-invariants-or-later","https://www.gnu.org/licenses/fdl-1.3.txt",FALSE,NA +"https://spdx.org/licenses/GFDL-1.3-no-invariants-only.html",FALSE,"https://spdx.org/licenses/GFDL-1.3-no-invariants-only.json",473,"GNU Free Documentation License v1.3 only - no invariants","GFDL-1.3-no-invariants-only","https://www.gnu.org/licenses/fdl-1.3.txt",FALSE,NA +"https://spdx.org/licenses/GFDL-1.3-no-invariants-or-later.html",FALSE,"https://spdx.org/licenses/GFDL-1.3-no-invariants-or-later.json",509,"GNU Free Documentation License v1.3 or later - no invariants","GFDL-1.3-no-invariants-or-later","https://www.gnu.org/licenses/fdl-1.3.txt",FALSE,NA +"https://spdx.org/licenses/GFDL-1.3-only.html",FALSE,"https://spdx.org/licenses/GFDL-1.3-only.json",165,"GNU Free Documentation License v1.3 only","GFDL-1.3-only","https://www.gnu.org/licenses/fdl-1.3.txt",FALSE,TRUE +"https://spdx.org/licenses/GFDL-1.3-or-later.html",FALSE,"https://spdx.org/licenses/GFDL-1.3-or-later.json",435,"GNU Free Documentation License v1.3 or later","GFDL-1.3-or-later","https://www.gnu.org/licenses/fdl-1.3.txt",FALSE,TRUE +"https://spdx.org/licenses/Giftware.html",FALSE,"https://spdx.org/licenses/Giftware.json",13,"Giftware License","Giftware","http://liballeg.org/license.html#allegro-4-the-giftware-license",FALSE,NA +"https://spdx.org/licenses/GL2PS.html",FALSE,"https://spdx.org/licenses/GL2PS.json",250,"GL2PS License","GL2PS","http://www.geuz.org/gl2ps/COPYING.GL2PS",FALSE,NA +"https://spdx.org/licenses/Glide.html",FALSE,"https://spdx.org/licenses/Glide.json",211,"3dfx Glide License","Glide","http://www.users.on.net/~triforce/glidexp/COPYING.txt",FALSE,NA +"https://spdx.org/licenses/Glulxe.html",FALSE,"https://spdx.org/licenses/Glulxe.json",400,"Glulxe License","Glulxe","https://fedoraproject.org/wiki/Licensing/Glulxe",FALSE,NA +"https://spdx.org/licenses/GLWTPL.html",FALSE,"https://spdx.org/licenses/GLWTPL.json",259,"Good Luck With That Public License","GLWTPL","https://github.com/me-shaon/GLWTPL/commit/da5f6bc734095efbacb442c0b31e33a65b9d6e85",FALSE,NA +"https://spdx.org/licenses/gnuplot.html",FALSE,"https://spdx.org/licenses/gnuplot.json",175,"gnuplot License","gnuplot","https://fedoraproject.org/wiki/Licensing/Gnuplot",FALSE,TRUE +"https://spdx.org/licenses/GPL-1.0.html",TRUE,"https://spdx.org/licenses/GPL-1.0.json",252,"GNU General Public License v1.0 only","GPL-1.0","https://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html",FALSE,NA +"https://spdx.org/licenses/GPL-1.0+.html",TRUE,"https://spdx.org/licenses/GPL-1.0+.json",456,"GNU General Public License v1.0 or later","GPL-1.0+","https://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html",FALSE,NA +"https://spdx.org/licenses/GPL-1.0-only.html",FALSE,"https://spdx.org/licenses/GPL-1.0-only.json",449,"GNU General Public License v1.0 only","GPL-1.0-only","https://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html",FALSE,NA +"https://spdx.org/licenses/GPL-1.0-or-later.html",FALSE,"https://spdx.org/licenses/GPL-1.0-or-later.json",360,"GNU General Public License v1.0 or later","GPL-1.0-or-later","https://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html",FALSE,NA +"https://spdx.org/licenses/GPL-2.0.html",TRUE,"https://spdx.org/licenses/GPL-2.0.json",541,"GNU General Public License v2.0 only","GPL-2.0","https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",TRUE,TRUE +"https://spdx.org/licenses/GPL-2.0+.html",TRUE,"https://spdx.org/licenses/GPL-2.0+.json",120,"GNU General Public License v2.0 or later","GPL-2.0+","https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",TRUE,TRUE +"https://spdx.org/licenses/GPL-2.0-only.html",FALSE,"https://spdx.org/licenses/GPL-2.0-only.json",169,"GNU General Public License v2.0 only","GPL-2.0-only","https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",TRUE,TRUE +"https://spdx.org/licenses/GPL-2.0-or-later.html",FALSE,"https://spdx.org/licenses/GPL-2.0-or-later.json",459,"GNU General Public License v2.0 or later","GPL-2.0-or-later","https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",TRUE,TRUE +"https://spdx.org/licenses/GPL-2.0-with-autoconf-exception.html",TRUE,"https://spdx.org/licenses/GPL-2.0-with-autoconf-exception.json",246,"GNU General Public License v2.0 w/Autoconf exception","GPL-2.0-with-autoconf-exception","http://ac-archive.sourceforge.net/doc/copyright.html",FALSE,NA +"https://spdx.org/licenses/GPL-2.0-with-bison-exception.html",TRUE,"https://spdx.org/licenses/GPL-2.0-with-bison-exception.json",77,"GNU General Public License v2.0 w/Bison exception","GPL-2.0-with-bison-exception","http://git.savannah.gnu.org/cgit/bison.git/tree/data/yacc.c?id=193d7c7054ba7197b0789e14965b739162319b5e#n141",FALSE,NA +"https://spdx.org/licenses/GPL-2.0-with-classpath-exception.html",TRUE,"https://spdx.org/licenses/GPL-2.0-with-classpath-exception.json",512,"GNU General Public License v2.0 w/Classpath exception","GPL-2.0-with-classpath-exception","https://www.gnu.org/software/classpath/license.html",FALSE,NA +"https://spdx.org/licenses/GPL-2.0-with-font-exception.html",TRUE,"https://spdx.org/licenses/GPL-2.0-with-font-exception.json",159,"GNU General Public License v2.0 w/Font exception","GPL-2.0-with-font-exception","https://www.gnu.org/licenses/gpl-faq.html#FontException",FALSE,NA +"https://spdx.org/licenses/GPL-2.0-with-GCC-exception.html",TRUE,"https://spdx.org/licenses/GPL-2.0-with-GCC-exception.json",398,"GNU General Public License v2.0 w/GCC Runtime Library exception","GPL-2.0-with-GCC-exception","https://gcc.gnu.org/git/?p=gcc.git;a=blob;f=gcc/libgcc1.c;h=762f5143fc6eed57b6797c82710f3538aa52b40b;hb=cb143a3ce4fb417c68f5fa2691a1b1b1053dfba9#l10",FALSE,NA +"https://spdx.org/licenses/GPL-3.0.html",TRUE,"https://spdx.org/licenses/GPL-3.0.json",30,"GNU General Public License v3.0 only","GPL-3.0","https://www.gnu.org/licenses/gpl-3.0-standalone.html",TRUE,TRUE +"https://spdx.org/licenses/GPL-3.0+.html",TRUE,"https://spdx.org/licenses/GPL-3.0+.json",550,"GNU General Public License v3.0 or later","GPL-3.0+","https://www.gnu.org/licenses/gpl-3.0-standalone.html",TRUE,TRUE +"https://spdx.org/licenses/GPL-3.0-only.html",FALSE,"https://spdx.org/licenses/GPL-3.0-only.json",186,"GNU General Public License v3.0 only","GPL-3.0-only","https://www.gnu.org/licenses/gpl-3.0-standalone.html",TRUE,TRUE +"https://spdx.org/licenses/GPL-3.0-or-later.html",FALSE,"https://spdx.org/licenses/GPL-3.0-or-later.json",536,"GNU General Public License v3.0 or later","GPL-3.0-or-later","https://www.gnu.org/licenses/gpl-3.0-standalone.html",TRUE,TRUE +"https://spdx.org/licenses/GPL-3.0-with-autoconf-exception.html",TRUE,"https://spdx.org/licenses/GPL-3.0-with-autoconf-exception.json",412,"GNU General Public License v3.0 w/Autoconf exception","GPL-3.0-with-autoconf-exception","https://www.gnu.org/licenses/autoconf-exception-3.0.html",FALSE,NA +"https://spdx.org/licenses/GPL-3.0-with-GCC-exception.html",TRUE,"https://spdx.org/licenses/GPL-3.0-with-GCC-exception.json",297,"GNU General Public License v3.0 w/GCC Runtime Library exception","GPL-3.0-with-GCC-exception","https://www.gnu.org/licenses/gcc-exception-3.1.html",TRUE,NA +"https://spdx.org/licenses/Graphics-Gems.html",FALSE,"https://spdx.org/licenses/Graphics-Gems.json",227,"Graphics Gems License","Graphics-Gems","https://github.com/erich666/GraphicsGems/blob/master/LICENSE.md",FALSE,NA +"https://spdx.org/licenses/gSOAP-1.3b.html",FALSE,"https://spdx.org/licenses/gSOAP-1.3b.json",92,"gSOAP Public License v1.3b","gSOAP-1.3b","http://www.cs.fsu.edu/~engelen/license.html",FALSE,NA +"https://spdx.org/licenses/HaskellReport.html",FALSE,"https://spdx.org/licenses/HaskellReport.json",479,"Haskell Language Report License","HaskellReport","https://fedoraproject.org/wiki/Licensing/Haskell_Language_Report_License",FALSE,NA +"https://spdx.org/licenses/Hippocratic-2.1.html",FALSE,"https://spdx.org/licenses/Hippocratic-2.1.json",197,"Hippocratic License 2.1","Hippocratic-2.1","https://firstdonoharm.dev/version/2/1/license.html",FALSE,NA +"https://spdx.org/licenses/HP-1986.html",FALSE,"https://spdx.org/licenses/HP-1986.json",82,"Hewlett-Packard 1986 License","HP-1986","https://sourceware.org/git/?p=newlib-cygwin.git;a=blob;f=newlib/libc/machine/hppa/memchr.S;h=1cca3e5e8867aa4bffef1f75a5c1bba25c0c441e;hb=HEAD#l2",FALSE,NA +"https://spdx.org/licenses/HP-1989.html",FALSE,"https://spdx.org/licenses/HP-1989.json",407,"Hewlett-Packard 1989 License","HP-1989","https://github.com/bleargh45/Data-UUID/blob/master/LICENSE",FALSE,NA +"https://spdx.org/licenses/HPND.html",FALSE,"https://spdx.org/licenses/HPND.json",5,"Historical Permission Notice and Disclaimer","HPND","https://opensource.org/licenses/HPND",TRUE,TRUE +"https://spdx.org/licenses/HPND-DEC.html",FALSE,"https://spdx.org/licenses/HPND-DEC.json",375,"Historical Permission Notice and Disclaimer - DEC variant","HPND-DEC","https://gitlab.freedesktop.org/xorg/app/xkbcomp/-/blob/master/COPYING?ref_type=heads#L69",FALSE,NA +"https://spdx.org/licenses/HPND-doc.html",FALSE,"https://spdx.org/licenses/HPND-doc.json",109,"Historical Permission Notice and Disclaimer - documentation variant","HPND-doc","https://gitlab.freedesktop.org/xorg/lib/libxext/-/blob/master/COPYING?ref_type=heads#L185-197",FALSE,NA +"https://spdx.org/licenses/HPND-doc-sell.html",FALSE,"https://spdx.org/licenses/HPND-doc-sell.json",535,"Historical Permission Notice and Disclaimer - documentation sell variant","HPND-doc-sell","https://gitlab.freedesktop.org/xorg/lib/libxtst/-/blob/master/COPYING?ref_type=heads#L108-117",FALSE,NA +"https://spdx.org/licenses/HPND-export-US.html",FALSE,"https://spdx.org/licenses/HPND-export-US.json",203,"HPND with US Government export control warning","HPND-export-US","https://www.kermitproject.org/ck90.html#source",FALSE,NA +"https://spdx.org/licenses/HPND-export-US-modify.html",FALSE,"https://spdx.org/licenses/HPND-export-US-modify.json",367,"HPND with US Government export control warning and modification rqmt","HPND-export-US-modify","https://github.com/krb5/krb5/blob/krb5-1.21.2-final/NOTICE#L1157-L1182",FALSE,NA +"https://spdx.org/licenses/HPND-Markus-Kuhn.html",FALSE,"https://spdx.org/licenses/HPND-Markus-Kuhn.json",431,"Historical Permission Notice and Disclaimer - Markus Kuhn variant","HPND-Markus-Kuhn","https://www.cl.cam.ac.uk/~mgk25/ucs/wcwidth.c",FALSE,NA +"https://spdx.org/licenses/HPND-Pbmplus.html",FALSE,"https://spdx.org/licenses/HPND-Pbmplus.json",469,"Historical Permission Notice and Disclaimer - Pbmplus variant","HPND-Pbmplus","https://sourceforge.net/p/netpbm/code/HEAD/tree/super_stable/netpbm.c#l8",FALSE,NA +"https://spdx.org/licenses/HPND-sell-regexpr.html",FALSE,"https://spdx.org/licenses/HPND-sell-regexpr.json",542,"Historical Permission Notice and Disclaimer - sell regexpr variant","HPND-sell-regexpr","https://gitlab.com/bacula-org/bacula/-/blob/Branch-11.0/bacula/LICENSE-FOSS?ref_type=heads#L245",FALSE,NA +"https://spdx.org/licenses/HPND-sell-variant.html",FALSE,"https://spdx.org/licenses/HPND-sell-variant.json",22,"Historical Permission Notice and Disclaimer - sell variant","HPND-sell-variant","https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/net/sunrpc/auth_gss/gss_generic_token.c?h=v4.19",FALSE,NA +"https://spdx.org/licenses/HPND-sell-variant-MIT-disclaimer.html",FALSE,"https://spdx.org/licenses/HPND-sell-variant-MIT-disclaimer.json",230,"HPND sell variant with MIT disclaimer","HPND-sell-variant-MIT-disclaimer","https://github.com/sigmavirus24/x11-ssh-askpass/blob/master/README",FALSE,NA +"https://spdx.org/licenses/HPND-UC.html",FALSE,"https://spdx.org/licenses/HPND-UC.json",187,"Historical Permission Notice and Disclaimer - University of California variant","HPND-UC","https://core.tcl-lang.org/tk/file?name=compat/unistd.h",FALSE,NA +"https://spdx.org/licenses/HTMLTIDY.html",FALSE,"https://spdx.org/licenses/HTMLTIDY.json",353,"HTML Tidy License","HTMLTIDY","https://github.com/htacg/tidy-html5/blob/next/README/LICENSE.md",FALSE,NA +"https://spdx.org/licenses/IBM-pibs.html",FALSE,"https://spdx.org/licenses/IBM-pibs.json",372,"IBM PowerPC Initialization and Boot Software","IBM-pibs","http://git.denx.de/?p=u-boot.git;a=blob;f=arch/powerpc/cpu/ppc4xx/miiphy.c;h=297155fdafa064b955e53e9832de93bfb0cfb85b;hb=9fab4bf4cc077c21e43941866f3f2c196f28670d",FALSE,NA +"https://spdx.org/licenses/ICU.html",FALSE,"https://spdx.org/licenses/ICU.json",492,"ICU License","ICU","http://source.icu-project.org/repos/icu/icu/trunk/license.html",TRUE,NA +"https://spdx.org/licenses/IEC-Code-Components-EULA.html",FALSE,"https://spdx.org/licenses/IEC-Code-Components-EULA.json",44,"IEC Code Components End-user licence agreement","IEC-Code-Components-EULA","https://www.iec.ch/webstore/custserv/pdf/CC-EULA.pdf",FALSE,NA +"https://spdx.org/licenses/IJG.html",FALSE,"https://spdx.org/licenses/IJG.json",391,"Independent JPEG Group License","IJG","http://dev.w3.org/cvsweb/Amaya/libjpeg/Attic/README?rev=1.2",FALSE,TRUE +"https://spdx.org/licenses/IJG-short.html",FALSE,"https://spdx.org/licenses/IJG-short.json",546,"Independent JPEG Group License - short","IJG-short","https://sourceforge.net/p/xmedcon/code/ci/master/tree/libs/ljpg/",FALSE,NA +"https://spdx.org/licenses/ImageMagick.html",FALSE,"https://spdx.org/licenses/ImageMagick.json",288,"ImageMagick License","ImageMagick","http://www.imagemagick.org/script/license.php",FALSE,NA +"https://spdx.org/licenses/iMatix.html",FALSE,"https://spdx.org/licenses/iMatix.json",403,"iMatix Standard Function Library Agreement","iMatix","http://legacy.imatix.com/html/sfl/sfl4.htm#license",FALSE,TRUE +"https://spdx.org/licenses/Imlib2.html",FALSE,"https://spdx.org/licenses/Imlib2.json",438,"Imlib2 License","Imlib2","http://trac.enlightenment.org/e/browser/trunk/imlib2/COPYING",FALSE,TRUE +"https://spdx.org/licenses/Info-ZIP.html",FALSE,"https://spdx.org/licenses/Info-ZIP.json",113,"Info-ZIP License","Info-ZIP","http://www.info-zip.org/license.html",FALSE,NA +"https://spdx.org/licenses/Inner-Net-2.0.html",FALSE,"https://spdx.org/licenses/Inner-Net-2.0.json",150,"Inner Net License v2.0","Inner-Net-2.0","https://fedoraproject.org/wiki/Licensing/Inner_Net_License",FALSE,NA +"https://spdx.org/licenses/Intel.html",FALSE,"https://spdx.org/licenses/Intel.json",130,"Intel Open Source License","Intel","https://opensource.org/licenses/Intel",TRUE,TRUE +"https://spdx.org/licenses/Intel-ACPI.html",FALSE,"https://spdx.org/licenses/Intel-ACPI.json",352,"Intel ACPI Software License Agreement","Intel-ACPI","https://fedoraproject.org/wiki/Licensing/Intel_ACPI_Software_License_Agreement",FALSE,NA +"https://spdx.org/licenses/Interbase-1.0.html",FALSE,"https://spdx.org/licenses/Interbase-1.0.json",593,"Interbase Public License v1.0","Interbase-1.0","https://web.archive.org/web/20060319014854/http://info.borland.com/devsupport/interbase/opensource/IPL.html",FALSE,NA +"https://spdx.org/licenses/IPA.html",FALSE,"https://spdx.org/licenses/IPA.json",128,"IPA Font License","IPA","https://opensource.org/licenses/IPA",TRUE,TRUE +"https://spdx.org/licenses/IPL-1.0.html",FALSE,"https://spdx.org/licenses/IPL-1.0.json",457,"IBM Public License v1.0","IPL-1.0","https://opensource.org/licenses/IPL-1.0",TRUE,TRUE +"https://spdx.org/licenses/ISC.html",FALSE,"https://spdx.org/licenses/ISC.json",39,"ISC License","ISC","https://www.isc.org/licenses/",TRUE,TRUE +"https://spdx.org/licenses/Jam.html",FALSE,"https://spdx.org/licenses/Jam.json",383,"Jam License","Jam","https://www.boost.org/doc/libs/1_35_0/doc/html/jam.html",TRUE,NA +"https://spdx.org/licenses/JasPer-2.0.html",FALSE,"https://spdx.org/licenses/JasPer-2.0.json",135,"JasPer License","JasPer-2.0","http://www.ece.uvic.ca/~mdadams/jasper/LICENSE",FALSE,NA +"https://spdx.org/licenses/JPL-image.html",FALSE,"https://spdx.org/licenses/JPL-image.json",304,"JPL Image Use Policy","JPL-image","https://www.jpl.nasa.gov/jpl-image-use-policy",FALSE,NA +"https://spdx.org/licenses/JPNIC.html",FALSE,"https://spdx.org/licenses/JPNIC.json",116,"Japan Network Information Center License","JPNIC","https://gitlab.isc.org/isc-projects/bind9/blob/master/COPYRIGHT#L366",FALSE,NA +"https://spdx.org/licenses/JSON.html",FALSE,"https://spdx.org/licenses/JSON.json",68,"JSON License","JSON","http://www.json.org/license.html",FALSE,FALSE +"https://spdx.org/licenses/Kastrup.html",FALSE,"https://spdx.org/licenses/Kastrup.json",411,"Kastrup License","Kastrup","https://ctan.math.utah.edu/ctan/tex-archive/macros/generic/kastrup/binhex.dtx",FALSE,NA +"https://spdx.org/licenses/Kazlib.html",FALSE,"https://spdx.org/licenses/Kazlib.json",154,"Kazlib License","Kazlib","http://git.savannah.gnu.org/cgit/kazlib.git/tree/except.c?id=0062df360c2d17d57f6af19b0e444c51feb99036",FALSE,NA +"https://spdx.org/licenses/Knuth-CTAN.html",FALSE,"https://spdx.org/licenses/Knuth-CTAN.json",381,"Knuth CTAN License","Knuth-CTAN","https://ctan.org/license/knuth",FALSE,NA +"https://spdx.org/licenses/LAL-1.2.html",FALSE,"https://spdx.org/licenses/LAL-1.2.json",204,"Licence Art Libre 1.2","LAL-1.2","http://artlibre.org/licence/lal/licence-art-libre-12/",FALSE,NA +"https://spdx.org/licenses/LAL-1.3.html",FALSE,"https://spdx.org/licenses/LAL-1.3.json",390,"Licence Art Libre 1.3","LAL-1.3","https://artlibre.org/",FALSE,NA +"https://spdx.org/licenses/Latex2e.html",FALSE,"https://spdx.org/licenses/Latex2e.json",102,"Latex2e License","Latex2e","https://fedoraproject.org/wiki/Licensing/Latex2e",FALSE,NA +"https://spdx.org/licenses/Latex2e-translated-notice.html",FALSE,"https://spdx.org/licenses/Latex2e-translated-notice.json",33,"Latex2e with translated notice permission","Latex2e-translated-notice","https://git.savannah.gnu.org/cgit/indent.git/tree/doc/indent.texi?id=a74c6b4ee49397cf330b333da1042bffa60ed14f#n74",FALSE,NA +"https://spdx.org/licenses/Leptonica.html",FALSE,"https://spdx.org/licenses/Leptonica.json",21,"Leptonica License","Leptonica","https://fedoraproject.org/wiki/Licensing/Leptonica",FALSE,NA +"https://spdx.org/licenses/LGPL-2.0.html",TRUE,"https://spdx.org/licenses/LGPL-2.0.json",408,"GNU Library General Public License v2 only","LGPL-2.0","https://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html",TRUE,NA +"https://spdx.org/licenses/LGPL-2.0+.html",TRUE,"https://spdx.org/licenses/LGPL-2.0+.json",247,"GNU Library General Public License v2 or later","LGPL-2.0+","https://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html",TRUE,NA +"https://spdx.org/licenses/LGPL-2.0-only.html",FALSE,"https://spdx.org/licenses/LGPL-2.0-only.json",455,"GNU Library General Public License v2 only","LGPL-2.0-only","https://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html",TRUE,NA +"https://spdx.org/licenses/LGPL-2.0-or-later.html",FALSE,"https://spdx.org/licenses/LGPL-2.0-or-later.json",64,"GNU Library General Public License v2 or later","LGPL-2.0-or-later","https://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html",TRUE,NA +"https://spdx.org/licenses/LGPL-2.1.html",TRUE,"https://spdx.org/licenses/LGPL-2.1.json",591,"GNU Lesser General Public License v2.1 only","LGPL-2.1","https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html",TRUE,TRUE +"https://spdx.org/licenses/LGPL-2.1+.html",TRUE,"https://spdx.org/licenses/LGPL-2.1+.json",223,"GNU Lesser General Public License v2.1 or later","LGPL-2.1+","https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html",TRUE,TRUE +"https://spdx.org/licenses/LGPL-2.1-only.html",FALSE,"https://spdx.org/licenses/LGPL-2.1-only.json",475,"GNU Lesser General Public License v2.1 only","LGPL-2.1-only","https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html",TRUE,TRUE +"https://spdx.org/licenses/LGPL-2.1-or-later.html",FALSE,"https://spdx.org/licenses/LGPL-2.1-or-later.json",287,"GNU Lesser General Public License v2.1 or later","LGPL-2.1-or-later","https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html",TRUE,TRUE +"https://spdx.org/licenses/LGPL-3.0.html",TRUE,"https://spdx.org/licenses/LGPL-3.0.json",28,"GNU Lesser General Public License v3.0 only","LGPL-3.0","https://www.gnu.org/licenses/lgpl-3.0-standalone.html",TRUE,TRUE +"https://spdx.org/licenses/LGPL-3.0+.html",TRUE,"https://spdx.org/licenses/LGPL-3.0+.json",563,"GNU Lesser General Public License v3.0 or later","LGPL-3.0+","https://www.gnu.org/licenses/lgpl-3.0-standalone.html",TRUE,TRUE +"https://spdx.org/licenses/LGPL-3.0-only.html",FALSE,"https://spdx.org/licenses/LGPL-3.0-only.json",108,"GNU Lesser General Public License v3.0 only","LGPL-3.0-only","https://www.gnu.org/licenses/lgpl-3.0-standalone.html",TRUE,TRUE +"https://spdx.org/licenses/LGPL-3.0-or-later.html",FALSE,"https://spdx.org/licenses/LGPL-3.0-or-later.json",545,"GNU Lesser General Public License v3.0 or later","LGPL-3.0-or-later","https://www.gnu.org/licenses/lgpl-3.0-standalone.html",TRUE,TRUE +"https://spdx.org/licenses/LGPLLR.html",FALSE,"https://spdx.org/licenses/LGPLLR.json",561,"Lesser General Public License For Linguistic Resources","LGPLLR","http://www-igm.univ-mlv.fr/~unitex/lgpllr.html",FALSE,NA +"https://spdx.org/licenses/Libpng.html",FALSE,"https://spdx.org/licenses/Libpng.json",195,"libpng License","Libpng","http://www.libpng.org/pub/png/src/libpng-LICENSE.txt",FALSE,NA +"https://spdx.org/licenses/libpng-2.0.html",FALSE,"https://spdx.org/licenses/libpng-2.0.json",105,"PNG Reference Library version 2","libpng-2.0","http://www.libpng.org/pub/png/src/libpng-LICENSE.txt",FALSE,NA +"https://spdx.org/licenses/libselinux-1.0.html",FALSE,"https://spdx.org/licenses/libselinux-1.0.json",213,"libselinux public domain notice","libselinux-1.0","https://github.com/SELinuxProject/selinux/blob/master/libselinux/LICENSE",FALSE,NA +"https://spdx.org/licenses/libtiff.html",FALSE,"https://spdx.org/licenses/libtiff.json",142,"libtiff License","libtiff","https://fedoraproject.org/wiki/Licensing/libtiff",FALSE,NA +"https://spdx.org/licenses/libutil-David-Nugent.html",FALSE,"https://spdx.org/licenses/libutil-David-Nugent.json",519,"libutil David Nugent License","libutil-David-Nugent","http://web.mit.edu/freebsd/head/lib/libutil/login_ok.3",FALSE,NA +"https://spdx.org/licenses/LiLiQ-P-1.1.html",FALSE,"https://spdx.org/licenses/LiLiQ-P-1.1.json",66,"Licence Libre du Québec – Permissive version 1.1","LiLiQ-P-1.1","https://forge.gouv.qc.ca/licence/fr/liliq-v1-1/",TRUE,NA +"https://spdx.org/licenses/LiLiQ-R-1.1.html",FALSE,"https://spdx.org/licenses/LiLiQ-R-1.1.json",557,"Licence Libre du Québec – Réciprocité version 1.1","LiLiQ-R-1.1","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/",TRUE,NA +"https://spdx.org/licenses/LiLiQ-Rplus-1.1.html",FALSE,"https://spdx.org/licenses/LiLiQ-Rplus-1.1.json",46,"Licence Libre du Québec – Réciprocité forte version 1.1","LiLiQ-Rplus-1.1","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/",TRUE,NA +"https://spdx.org/licenses/Linux-man-pages-1-para.html",FALSE,"https://spdx.org/licenses/Linux-man-pages-1-para.json",312,"Linux man-pages - 1 paragraph","Linux-man-pages-1-para","https://git.kernel.org/pub/scm/docs/man-pages/man-pages.git/tree/man2/getcpu.2#n4",FALSE,NA +"https://spdx.org/licenses/Linux-man-pages-copyleft.html",FALSE,"https://spdx.org/licenses/Linux-man-pages-copyleft.json",148,"Linux man-pages Copyleft","Linux-man-pages-copyleft","https://www.kernel.org/doc/man-pages/licenses.html",FALSE,NA +"https://spdx.org/licenses/Linux-man-pages-copyleft-2-para.html",FALSE,"https://spdx.org/licenses/Linux-man-pages-copyleft-2-para.json",504,"Linux man-pages Copyleft - 2 paragraphs","Linux-man-pages-copyleft-2-para","https://git.kernel.org/pub/scm/docs/man-pages/man-pages.git/tree/man2/move_pages.2#n5",FALSE,NA +"https://spdx.org/licenses/Linux-man-pages-copyleft-var.html",FALSE,"https://spdx.org/licenses/Linux-man-pages-copyleft-var.json",510,"Linux man-pages Copyleft Variant","Linux-man-pages-copyleft-var","https://git.kernel.org/pub/scm/docs/man-pages/man-pages.git/tree/man2/set_mempolicy.2#n5",FALSE,NA +"https://spdx.org/licenses/Linux-OpenIB.html",FALSE,"https://spdx.org/licenses/Linux-OpenIB.json",552,"Linux Kernel Variant of OpenIB.org license","Linux-OpenIB","https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/drivers/infiniband/core/sa.h",FALSE,NA +"https://spdx.org/licenses/LOOP.html",FALSE,"https://spdx.org/licenses/LOOP.json",454,"Common Lisp LOOP License","LOOP","https://gitlab.com/embeddable-common-lisp/ecl/-/blob/develop/src/lsp/loop.lsp",FALSE,NA +"https://spdx.org/licenses/LPL-1.0.html",FALSE,"https://spdx.org/licenses/LPL-1.0.json",344,"Lucent Public License Version 1.0","LPL-1.0","https://opensource.org/licenses/LPL-1.0",TRUE,NA +"https://spdx.org/licenses/LPL-1.02.html",FALSE,"https://spdx.org/licenses/LPL-1.02.json",236,"Lucent Public License v1.02","LPL-1.02","http://plan9.bell-labs.com/plan9/license.html",TRUE,TRUE +"https://spdx.org/licenses/LPPL-1.0.html",FALSE,"https://spdx.org/licenses/LPPL-1.0.json",497,"LaTeX Project Public License v1.0","LPPL-1.0","http://www.latex-project.org/lppl/lppl-1-0.txt",FALSE,NA +"https://spdx.org/licenses/LPPL-1.1.html",FALSE,"https://spdx.org/licenses/LPPL-1.1.json",366,"LaTeX Project Public License v1.1","LPPL-1.1","http://www.latex-project.org/lppl/lppl-1-1.txt",FALSE,NA +"https://spdx.org/licenses/LPPL-1.2.html",FALSE,"https://spdx.org/licenses/LPPL-1.2.json",156,"LaTeX Project Public License v1.2","LPPL-1.2","http://www.latex-project.org/lppl/lppl-1-2.txt",FALSE,TRUE +"https://spdx.org/licenses/LPPL-1.3a.html",FALSE,"https://spdx.org/licenses/LPPL-1.3a.json",40,"LaTeX Project Public License v1.3a","LPPL-1.3a","http://www.latex-project.org/lppl/lppl-1-3a.txt",FALSE,TRUE +"https://spdx.org/licenses/LPPL-1.3c.html",FALSE,"https://spdx.org/licenses/LPPL-1.3c.json",4,"LaTeX Project Public License v1.3c","LPPL-1.3c","http://www.latex-project.org/lppl/lppl-1-3c.txt",TRUE,NA +"https://spdx.org/licenses/lsof.html",FALSE,"https://spdx.org/licenses/lsof.json",151,"lsof License","lsof","https://github.com/lsof-org/lsof/blob/master/COPYING",FALSE,NA +"https://spdx.org/licenses/Lucida-Bitmap-Fonts.html",FALSE,"https://spdx.org/licenses/Lucida-Bitmap-Fonts.json",416,"Lucida Bitmap Fonts License","Lucida-Bitmap-Fonts","https://gitlab.freedesktop.org/xorg/font/bh-100dpi/-/blob/master/COPYING?ref_type=heads",FALSE,NA +"https://spdx.org/licenses/LZMA-SDK-9.11-to-9.20.html",FALSE,"https://spdx.org/licenses/LZMA-SDK-9.11-to-9.20.json",290,"LZMA SDK License (versions 9.11 to 9.20)","LZMA-SDK-9.11-to-9.20","https://www.7-zip.org/sdk.html",FALSE,NA +"https://spdx.org/licenses/LZMA-SDK-9.22.html",FALSE,"https://spdx.org/licenses/LZMA-SDK-9.22.json",396,"LZMA SDK License (versions 9.22 and beyond)","LZMA-SDK-9.22","https://www.7-zip.org/sdk.html",FALSE,NA +"https://spdx.org/licenses/magaz.html",FALSE,"https://spdx.org/licenses/magaz.json",57,"magaz License","magaz","https://mirrors.nic.cz/tex-archive/macros/latex/contrib/magaz/magaz.tex",FALSE,NA +"https://spdx.org/licenses/MakeIndex.html",FALSE,"https://spdx.org/licenses/MakeIndex.json",163,"MakeIndex License","MakeIndex","https://fedoraproject.org/wiki/Licensing/MakeIndex",FALSE,NA +"https://spdx.org/licenses/Martin-Birgmeier.html",FALSE,"https://spdx.org/licenses/Martin-Birgmeier.json",364,"Martin Birgmeier License","Martin-Birgmeier","https://github.com/Perl/perl5/blob/blead/util.c#L6136",FALSE,NA +"https://spdx.org/licenses/McPhee-slideshow.html",FALSE,"https://spdx.org/licenses/McPhee-slideshow.json",354,"McPhee Slideshow License","McPhee-slideshow","https://mirror.las.iastate.edu/tex-archive/graphics/metapost/contrib/macros/slideshow/slideshow.mp",FALSE,NA +"https://spdx.org/licenses/metamail.html",FALSE,"https://spdx.org/licenses/metamail.json",172,"metamail License","metamail","https://github.com/Dual-Life/mime-base64/blob/master/Base64.xs#L12",FALSE,NA +"https://spdx.org/licenses/Minpack.html",FALSE,"https://spdx.org/licenses/Minpack.json",597,"Minpack License","Minpack","http://www.netlib.org/minpack/disclaimer",FALSE,NA +"https://spdx.org/licenses/MirOS.html",FALSE,"https://spdx.org/licenses/MirOS.json",91,"The MirOS Licence","MirOS","https://opensource.org/licenses/MirOS",TRUE,NA +"https://spdx.org/licenses/MIT.html",FALSE,"https://spdx.org/licenses/MIT.json",200,"MIT License","MIT","https://opensource.org/licenses/MIT",TRUE,TRUE +"https://spdx.org/licenses/MIT-0.html",FALSE,"https://spdx.org/licenses/MIT-0.json",410,"MIT No Attribution","MIT-0","https://github.com/aws/mit-0",TRUE,NA +"https://spdx.org/licenses/MIT-advertising.html",FALSE,"https://spdx.org/licenses/MIT-advertising.json",264,"Enlightenment License (e16)","MIT-advertising","https://fedoraproject.org/wiki/Licensing/MIT_With_Advertising",FALSE,NA +"https://spdx.org/licenses/MIT-CMU.html",FALSE,"https://spdx.org/licenses/MIT-CMU.json",319,"CMU License","MIT-CMU","https://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#CMU_Style",FALSE,NA +"https://spdx.org/licenses/MIT-enna.html",FALSE,"https://spdx.org/licenses/MIT-enna.json",251,"enna License","MIT-enna","https://fedoraproject.org/wiki/Licensing/MIT#enna",FALSE,NA +"https://spdx.org/licenses/MIT-feh.html",FALSE,"https://spdx.org/licenses/MIT-feh.json",269,"feh License","MIT-feh","https://fedoraproject.org/wiki/Licensing/MIT#feh",FALSE,NA +"https://spdx.org/licenses/MIT-Festival.html",FALSE,"https://spdx.org/licenses/MIT-Festival.json",321,"MIT Festival Variant","MIT-Festival","https://github.com/festvox/flite/blob/master/COPYING",FALSE,NA +"https://spdx.org/licenses/MIT-Modern-Variant.html",FALSE,"https://spdx.org/licenses/MIT-Modern-Variant.json",462,"MIT License Modern Variant","MIT-Modern-Variant","https://fedoraproject.org/wiki/Licensing:MIT#Modern_Variants",TRUE,NA +"https://spdx.org/licenses/MIT-open-group.html",FALSE,"https://spdx.org/licenses/MIT-open-group.json",239,"MIT Open Group variant","MIT-open-group","https://gitlab.freedesktop.org/xorg/app/iceauth/-/blob/master/COPYING",FALSE,NA +"https://spdx.org/licenses/MIT-testregex.html",FALSE,"https://spdx.org/licenses/MIT-testregex.json",100,"MIT testregex Variant","MIT-testregex","https://github.com/dotnet/runtime/blob/55e1ac7c07df62c4108d4acedf78f77574470ce5/src/libraries/System.Text.RegularExpressions/tests/FunctionalTests/AttRegexTests.cs#L12-L28",FALSE,NA +"https://spdx.org/licenses/MIT-Wu.html",FALSE,"https://spdx.org/licenses/MIT-Wu.json",341,"MIT Tom Wu Variant","MIT-Wu","https://github.com/chromium/octane/blob/master/crypto.js",FALSE,NA +"https://spdx.org/licenses/MITNFA.html",FALSE,"https://spdx.org/licenses/MITNFA.json",69,"MIT +no-false-attribs license","MITNFA","https://fedoraproject.org/wiki/Licensing/MITNFA",FALSE,NA +"https://spdx.org/licenses/MMIXware.html",FALSE,"https://spdx.org/licenses/MMIXware.json",433,"MMIXware License","MMIXware","https://gitlab.lrz.de/mmix/mmixware/-/blob/master/boilerplate.w",FALSE,NA +"https://spdx.org/licenses/Motosoto.html",FALSE,"https://spdx.org/licenses/Motosoto.json",209,"Motosoto License","Motosoto","https://opensource.org/licenses/Motosoto",TRUE,NA +"https://spdx.org/licenses/MPEG-SSG.html",FALSE,"https://spdx.org/licenses/MPEG-SSG.json",586,"MPEG Software Simulation","MPEG-SSG","https://sourceforge.net/p/netpbm/code/HEAD/tree/super_stable/converter/ppm/ppmtompeg/jrevdct.c#l1189",FALSE,NA +"https://spdx.org/licenses/mpi-permissive.html",FALSE,"https://spdx.org/licenses/mpi-permissive.json",72,"mpi Permissive License","mpi-permissive","https://sources.debian.org/src/openmpi/4.1.0-10/ompi/debuggers/msgq_interface.h/?hl=19#L19",FALSE,NA +"https://spdx.org/licenses/mpich2.html",FALSE,"https://spdx.org/licenses/mpich2.json",567,"mpich2 License","mpich2","https://fedoraproject.org/wiki/Licensing/MIT",FALSE,NA +"https://spdx.org/licenses/MPL-1.0.html",FALSE,"https://spdx.org/licenses/MPL-1.0.json",387,"Mozilla Public License 1.0","MPL-1.0","http://www.mozilla.org/MPL/MPL-1.0.html",TRUE,NA +"https://spdx.org/licenses/MPL-1.1.html",FALSE,"https://spdx.org/licenses/MPL-1.1.json",345,"Mozilla Public License 1.1","MPL-1.1","http://www.mozilla.org/MPL/MPL-1.1.html",TRUE,TRUE +"https://spdx.org/licenses/MPL-2.0.html",FALSE,"https://spdx.org/licenses/MPL-2.0.json",579,"Mozilla Public License 2.0","MPL-2.0","https://www.mozilla.org/MPL/2.0/",TRUE,TRUE +"https://spdx.org/licenses/MPL-2.0-no-copyleft-exception.html",FALSE,"https://spdx.org/licenses/MPL-2.0-no-copyleft-exception.json",221,"Mozilla Public License 2.0 (no copyleft exception)","MPL-2.0-no-copyleft-exception","https://www.mozilla.org/MPL/2.0/",TRUE,NA +"https://spdx.org/licenses/mplus.html",FALSE,"https://spdx.org/licenses/mplus.json",481,"mplus Font License","mplus","https://fedoraproject.org/wiki/Licensing:Mplus?rd=Licensing/mplus",FALSE,NA +"https://spdx.org/licenses/MS-LPL.html",FALSE,"https://spdx.org/licenses/MS-LPL.json",334,"Microsoft Limited Public License","MS-LPL","https://www.openhub.net/licenses/mslpl",FALSE,NA +"https://spdx.org/licenses/MS-PL.html",FALSE,"https://spdx.org/licenses/MS-PL.json",428,"Microsoft Public License","MS-PL","http://www.microsoft.com/opensource/licenses.mspx",TRUE,TRUE +"https://spdx.org/licenses/MS-RL.html",FALSE,"https://spdx.org/licenses/MS-RL.json",437,"Microsoft Reciprocal License","MS-RL","http://www.microsoft.com/opensource/licenses.mspx",TRUE,TRUE +"https://spdx.org/licenses/MTLL.html",FALSE,"https://spdx.org/licenses/MTLL.json",548,"Matrix Template Library License","MTLL","https://fedoraproject.org/wiki/Licensing/Matrix_Template_Library_License",FALSE,NA +"https://spdx.org/licenses/MulanPSL-1.0.html",FALSE,"https://spdx.org/licenses/MulanPSL-1.0.json",121,"Mulan Permissive Software License, Version 1","MulanPSL-1.0","https://license.coscl.org.cn/MulanPSL/",FALSE,NA +"https://spdx.org/licenses/MulanPSL-2.0.html",FALSE,"https://spdx.org/licenses/MulanPSL-2.0.json",141,"Mulan Permissive Software License, Version 2","MulanPSL-2.0","https://license.coscl.org.cn/MulanPSL2/",TRUE,NA +"https://spdx.org/licenses/Multics.html",FALSE,"https://spdx.org/licenses/Multics.json",503,"Multics License","Multics","https://opensource.org/licenses/Multics",TRUE,NA +"https://spdx.org/licenses/Mup.html",FALSE,"https://spdx.org/licenses/Mup.json",285,"Mup License","Mup","https://fedoraproject.org/wiki/Licensing/Mup",FALSE,NA +"https://spdx.org/licenses/NAIST-2003.html",FALSE,"https://spdx.org/licenses/NAIST-2003.json",405,"Nara Institute of Science and Technology License (2003)","NAIST-2003","https://enterprise.dejacode.com/licenses/public/naist-2003/#license-text",FALSE,NA +"https://spdx.org/licenses/NASA-1.3.html",FALSE,"https://spdx.org/licenses/NASA-1.3.json",518,"NASA Open Source Agreement 1.3","NASA-1.3","http://ti.arc.nasa.gov/opensource/nosa/",TRUE,FALSE +"https://spdx.org/licenses/Naumen.html",FALSE,"https://spdx.org/licenses/Naumen.json",226,"Naumen Public License","Naumen","https://opensource.org/licenses/Naumen",TRUE,NA +"https://spdx.org/licenses/NBPL-1.0.html",FALSE,"https://spdx.org/licenses/NBPL-1.0.json",132,"Net Boolean Public License v1","NBPL-1.0","http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=37b4b3f6cc4bf34e1d3dec61e69914b9819d8894",FALSE,NA +"https://spdx.org/licenses/NCGL-UK-2.0.html",FALSE,"https://spdx.org/licenses/NCGL-UK-2.0.json",243,"Non-Commercial Government Licence","NCGL-UK-2.0","http://www.nationalarchives.gov.uk/doc/non-commercial-government-licence/version/2/",FALSE,NA +"https://spdx.org/licenses/NCSA.html",FALSE,"https://spdx.org/licenses/NCSA.json",298,"University of Illinois/NCSA Open Source License","NCSA","http://otm.illinois.edu/uiuc_openSource",TRUE,TRUE +"https://spdx.org/licenses/Net-SNMP.html",FALSE,"https://spdx.org/licenses/Net-SNMP.json",339,"Net-SNMP License","Net-SNMP","http://net-snmp.sourceforge.net/about/license.html",FALSE,NA +"https://spdx.org/licenses/NetCDF.html",FALSE,"https://spdx.org/licenses/NetCDF.json",346,"NetCDF license","NetCDF","http://www.unidata.ucar.edu/software/netcdf/copyright.html",FALSE,NA +"https://spdx.org/licenses/Newsletr.html",FALSE,"https://spdx.org/licenses/Newsletr.json",320,"Newsletr License","Newsletr","https://fedoraproject.org/wiki/Licensing/Newsletr",FALSE,NA +"https://spdx.org/licenses/NGPL.html",FALSE,"https://spdx.org/licenses/NGPL.json",95,"Nethack General Public License","NGPL","https://opensource.org/licenses/NGPL",TRUE,NA +"https://spdx.org/licenses/NICTA-1.0.html",FALSE,"https://spdx.org/licenses/NICTA-1.0.json",16,"NICTA Public Software License, Version 1.0","NICTA-1.0","https://opensource.apple.com/source/mDNSResponder/mDNSResponder-320.10/mDNSPosix/nss_ReadMe.txt",FALSE,NA +"https://spdx.org/licenses/NIST-PD.html",FALSE,"https://spdx.org/licenses/NIST-PD.json",89,"NIST Public Domain Notice","NIST-PD","https://github.com/tcheneau/simpleRPL/blob/e645e69e38dd4e3ccfeceb2db8cba05b7c2e0cd3/LICENSE.txt",FALSE,NA +"https://spdx.org/licenses/NIST-PD-fallback.html",FALSE,"https://spdx.org/licenses/NIST-PD-fallback.json",324,"NIST Public Domain Notice with license fallback","NIST-PD-fallback","https://github.com/usnistgov/jsip/blob/59700e6926cbe96c5cdae897d9a7d2656b42abe3/LICENSE",FALSE,NA +"https://spdx.org/licenses/NIST-Software.html",FALSE,"https://spdx.org/licenses/NIST-Software.json",212,"NIST Software License","NIST-Software","https://github.com/open-quantum-safe/liboqs/blob/40b01fdbb270f8614fde30e65d30e9da18c02393/src/common/rand/rand_nist.c#L1-L15",FALSE,NA +"https://spdx.org/licenses/NLOD-1.0.html",FALSE,"https://spdx.org/licenses/NLOD-1.0.json",147,"Norwegian Licence for Open Government Data (NLOD) 1.0","NLOD-1.0","http://data.norge.no/nlod/en/1.0",FALSE,NA +"https://spdx.org/licenses/NLOD-2.0.html",FALSE,"https://spdx.org/licenses/NLOD-2.0.json",126,"Norwegian Licence for Open Government Data (NLOD) 2.0","NLOD-2.0","http://data.norge.no/nlod/en/2.0",FALSE,NA +"https://spdx.org/licenses/NLPL.html",FALSE,"https://spdx.org/licenses/NLPL.json",74,"No Limit Public License","NLPL","https://fedoraproject.org/wiki/Licensing/NLPL",FALSE,NA +"https://spdx.org/licenses/Nokia.html",FALSE,"https://spdx.org/licenses/Nokia.json",133,"Nokia Open Source License","Nokia","https://opensource.org/licenses/nokia",TRUE,TRUE +"https://spdx.org/licenses/NOSL.html",FALSE,"https://spdx.org/licenses/NOSL.json",107,"Netizen Open Source License","NOSL","http://bits.netizen.com.au/licenses/NOSL/nosl.txt",FALSE,TRUE +"https://spdx.org/licenses/Noweb.html",FALSE,"https://spdx.org/licenses/Noweb.json",235,"Noweb License","Noweb","https://fedoraproject.org/wiki/Licensing/Noweb",FALSE,NA +"https://spdx.org/licenses/NPL-1.0.html",FALSE,"https://spdx.org/licenses/NPL-1.0.json",202,"Netscape Public License v1.0","NPL-1.0","http://www.mozilla.org/MPL/NPL/1.0/",FALSE,TRUE +"https://spdx.org/licenses/NPL-1.1.html",FALSE,"https://spdx.org/licenses/NPL-1.1.json",146,"Netscape Public License v1.1","NPL-1.1","http://www.mozilla.org/MPL/NPL/1.1/",FALSE,TRUE +"https://spdx.org/licenses/NPOSL-3.0.html",FALSE,"https://spdx.org/licenses/NPOSL-3.0.json",596,"Non-Profit Open Software License 3.0","NPOSL-3.0","https://opensource.org/licenses/NOSL3.0",TRUE,NA +"https://spdx.org/licenses/NRL.html",FALSE,"https://spdx.org/licenses/NRL.json",533,"NRL License","NRL","http://web.mit.edu/network/isakmp/nrllicense.html",FALSE,NA +"https://spdx.org/licenses/NTP.html",FALSE,"https://spdx.org/licenses/NTP.json",0,"NTP License","NTP","https://opensource.org/licenses/NTP",TRUE,NA +"https://spdx.org/licenses/NTP-0.html",FALSE,"https://spdx.org/licenses/NTP-0.json",71,"NTP No Attribution","NTP-0","https://github.com/tytso/e2fsprogs/blob/master/lib/et/et_name.c",FALSE,NA +"https://spdx.org/licenses/Nunit.html",TRUE,"https://spdx.org/licenses/Nunit.json",423,"Nunit License","Nunit","https://fedoraproject.org/wiki/Licensing/Nunit",FALSE,TRUE +"https://spdx.org/licenses/O-UDA-1.0.html",FALSE,"https://spdx.org/licenses/O-UDA-1.0.json",538,"Open Use of Data Agreement v1.0","O-UDA-1.0","https://github.com/microsoft/Open-Use-of-Data-Agreement/blob/v1.0/O-UDA-1.0.md",FALSE,NA +"https://spdx.org/licenses/OCCT-PL.html",FALSE,"https://spdx.org/licenses/OCCT-PL.json",477,"Open CASCADE Technology Public License","OCCT-PL","http://www.opencascade.com/content/occt-public-license",FALSE,NA +"https://spdx.org/licenses/OCLC-2.0.html",FALSE,"https://spdx.org/licenses/OCLC-2.0.json",280,"OCLC Research Public License 2.0","OCLC-2.0","http://www.oclc.org/research/activities/software/license/v2final.htm",TRUE,NA +"https://spdx.org/licenses/ODbL-1.0.html",FALSE,"https://spdx.org/licenses/ODbL-1.0.json",526,"Open Data Commons Open Database License v1.0","ODbL-1.0","http://www.opendatacommons.org/licenses/odbl/1.0/",FALSE,TRUE +"https://spdx.org/licenses/ODC-By-1.0.html",FALSE,"https://spdx.org/licenses/ODC-By-1.0.json",171,"Open Data Commons Attribution License v1.0","ODC-By-1.0","https://opendatacommons.org/licenses/by/1.0/",FALSE,NA +"https://spdx.org/licenses/OFFIS.html",FALSE,"https://spdx.org/licenses/OFFIS.json",114,"OFFIS License","OFFIS","https://sourceforge.net/p/xmedcon/code/ci/master/tree/libs/dicom/README",FALSE,NA +"https://spdx.org/licenses/OFL-1.0.html",FALSE,"https://spdx.org/licenses/OFL-1.0.json",291,"SIL Open Font License 1.0","OFL-1.0","http://scripts.sil.org/cms/scripts/page.php?item_id=OFL10_web",FALSE,TRUE +"https://spdx.org/licenses/OFL-1.0-no-RFN.html",FALSE,"https://spdx.org/licenses/OFL-1.0-no-RFN.json",500,"SIL Open Font License 1.0 with no Reserved Font Name","OFL-1.0-no-RFN","http://scripts.sil.org/cms/scripts/page.php?item_id=OFL10_web",FALSE,NA +"https://spdx.org/licenses/OFL-1.0-RFN.html",FALSE,"https://spdx.org/licenses/OFL-1.0-RFN.json",245,"SIL Open Font License 1.0 with Reserved Font Name","OFL-1.0-RFN","http://scripts.sil.org/cms/scripts/page.php?item_id=OFL10_web",FALSE,NA +"https://spdx.org/licenses/OFL-1.1.html",FALSE,"https://spdx.org/licenses/OFL-1.1.json",424,"SIL Open Font License 1.1","OFL-1.1","http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web",TRUE,TRUE +"https://spdx.org/licenses/OFL-1.1-no-RFN.html",FALSE,"https://spdx.org/licenses/OFL-1.1-no-RFN.json",193,"SIL Open Font License 1.1 with no Reserved Font Name","OFL-1.1-no-RFN","http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web",TRUE,NA +"https://spdx.org/licenses/OFL-1.1-RFN.html",FALSE,"https://spdx.org/licenses/OFL-1.1-RFN.json",551,"SIL Open Font License 1.1 with Reserved Font Name","OFL-1.1-RFN","http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web",TRUE,NA +"https://spdx.org/licenses/OGC-1.0.html",FALSE,"https://spdx.org/licenses/OGC-1.0.json",508,"OGC Software License, Version 1.0","OGC-1.0","https://www.ogc.org/ogc/software/1.0",FALSE,NA +"https://spdx.org/licenses/OGDL-Taiwan-1.0.html",FALSE,"https://spdx.org/licenses/OGDL-Taiwan-1.0.json",540,"Taiwan Open Government Data License, version 1.0","OGDL-Taiwan-1.0","https://data.gov.tw/license",FALSE,NA +"https://spdx.org/licenses/OGL-Canada-2.0.html",FALSE,"https://spdx.org/licenses/OGL-Canada-2.0.json",144,"Open Government Licence - Canada","OGL-Canada-2.0","https://open.canada.ca/en/open-government-licence-canada",FALSE,NA +"https://spdx.org/licenses/OGL-UK-1.0.html",FALSE,"https://spdx.org/licenses/OGL-UK-1.0.json",342,"Open Government Licence v1.0","OGL-UK-1.0","http://www.nationalarchives.gov.uk/doc/open-government-licence/version/1/",FALSE,NA +"https://spdx.org/licenses/OGL-UK-2.0.html",FALSE,"https://spdx.org/licenses/OGL-UK-2.0.json",581,"Open Government Licence v2.0","OGL-UK-2.0","http://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/",FALSE,NA +"https://spdx.org/licenses/OGL-UK-3.0.html",FALSE,"https://spdx.org/licenses/OGL-UK-3.0.json",268,"Open Government Licence v3.0","OGL-UK-3.0","http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/",FALSE,NA +"https://spdx.org/licenses/OGTSL.html",FALSE,"https://spdx.org/licenses/OGTSL.json",369,"Open Group Test Suite License","OGTSL","http://www.opengroup.org/testing/downloads/The_Open_Group_TSL.txt",TRUE,NA +"https://spdx.org/licenses/OLDAP-1.1.html",FALSE,"https://spdx.org/licenses/OLDAP-1.1.json",296,"Open LDAP Public License v1.1","OLDAP-1.1","http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=806557a5ad59804ef3a44d5abfbe91d706b0791f",FALSE,NA +"https://spdx.org/licenses/OLDAP-1.2.html",FALSE,"https://spdx.org/licenses/OLDAP-1.2.json",60,"Open LDAP Public License v1.2","OLDAP-1.2","http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=42b0383c50c299977b5893ee695cf4e486fb0dc7",FALSE,NA +"https://spdx.org/licenses/OLDAP-1.3.html",FALSE,"https://spdx.org/licenses/OLDAP-1.3.json",325,"Open LDAP Public License v1.3","OLDAP-1.3","http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=e5f8117f0ce088d0bd7a8e18ddf37eaa40eb09b1",FALSE,NA +"https://spdx.org/licenses/OLDAP-1.4.html",FALSE,"https://spdx.org/licenses/OLDAP-1.4.json",289,"Open LDAP Public License v1.4","OLDAP-1.4","http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=c9f95c2f3f2ffb5e0ae55fe7388af75547660941",FALSE,NA +"https://spdx.org/licenses/OLDAP-2.0.html",FALSE,"https://spdx.org/licenses/OLDAP-2.0.json",491,"Open LDAP Public License v2.0 (or possibly 2.0A and 2.0B)","OLDAP-2.0","http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=cbf50f4e1185a21abd4c0a54d3f4341fe28f36ea",FALSE,NA +"https://spdx.org/licenses/OLDAP-2.0.1.html",FALSE,"https://spdx.org/licenses/OLDAP-2.0.1.json",232,"Open LDAP Public License v2.0.1","OLDAP-2.0.1","http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=b6d68acd14e51ca3aab4428bf26522aa74873f0e",FALSE,NA +"https://spdx.org/licenses/OLDAP-2.1.html",FALSE,"https://spdx.org/licenses/OLDAP-2.1.json",527,"Open LDAP Public License v2.1","OLDAP-2.1","http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=b0d176738e96a0d3b9f85cb51e140a86f21be715",FALSE,NA +"https://spdx.org/licenses/OLDAP-2.2.html",FALSE,"https://spdx.org/licenses/OLDAP-2.2.json",476,"Open LDAP Public License v2.2","OLDAP-2.2","http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=470b0c18ec67621c85881b2733057fecf4a1acc3",FALSE,NA +"https://spdx.org/licenses/OLDAP-2.2.1.html",FALSE,"https://spdx.org/licenses/OLDAP-2.2.1.json",327,"Open LDAP Public License v2.2.1","OLDAP-2.2.1","http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=4bc786f34b50aa301be6f5600f58a980070f481e",FALSE,NA +"https://spdx.org/licenses/OLDAP-2.2.2.html",FALSE,"https://spdx.org/licenses/OLDAP-2.2.2.json",229,"Open LDAP Public License 2.2.2","OLDAP-2.2.2","http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=df2cc1e21eb7c160695f5b7cffd6296c151ba188",FALSE,NA +"https://spdx.org/licenses/OLDAP-2.3.html",FALSE,"https://spdx.org/licenses/OLDAP-2.3.json",587,"Open LDAP Public License v2.3","OLDAP-2.3","http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=d32cf54a32d581ab475d23c810b0a7fbaf8d63c3",FALSE,TRUE +"https://spdx.org/licenses/OLDAP-2.4.html",FALSE,"https://spdx.org/licenses/OLDAP-2.4.json",35,"Open LDAP Public License v2.4","OLDAP-2.4","http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=cd1284c4a91a8a380d904eee68d1583f989ed386",FALSE,NA +"https://spdx.org/licenses/OLDAP-2.5.html",FALSE,"https://spdx.org/licenses/OLDAP-2.5.json",595,"Open LDAP Public License v2.5","OLDAP-2.5","http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=6852b9d90022e8593c98205413380536b1b5a7cf",FALSE,NA +"https://spdx.org/licenses/OLDAP-2.6.html",FALSE,"https://spdx.org/licenses/OLDAP-2.6.json",220,"Open LDAP Public License v2.6","OLDAP-2.6","http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=1cae062821881f41b73012ba816434897abf4205",FALSE,NA +"https://spdx.org/licenses/OLDAP-2.7.html",FALSE,"https://spdx.org/licenses/OLDAP-2.7.json",351,"Open LDAP Public License v2.7","OLDAP-2.7","http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=47c2415c1df81556eeb39be6cad458ef87c534a2",FALSE,TRUE +"https://spdx.org/licenses/OLDAP-2.8.html",FALSE,"https://spdx.org/licenses/OLDAP-2.8.json",502,"Open LDAP Public License v2.8","OLDAP-2.8","http://www.openldap.org/software/release/license.html",TRUE,NA +"https://spdx.org/licenses/OLFL-1.3.html",FALSE,"https://spdx.org/licenses/OLFL-1.3.json",101,"Open Logistics Foundation License Version 1.3","OLFL-1.3","https://openlogisticsfoundation.org/licenses/",TRUE,NA +"https://spdx.org/licenses/OML.html",FALSE,"https://spdx.org/licenses/OML.json",274,"Open Market License","OML","https://fedoraproject.org/wiki/Licensing/Open_Market_License",FALSE,NA +"https://spdx.org/licenses/OpenPBS-2.3.html",FALSE,"https://spdx.org/licenses/OpenPBS-2.3.json",484,"OpenPBS v2.3 Software License","OpenPBS-2.3","https://github.com/adaptivecomputing/torque/blob/master/PBS_License.txt",FALSE,NA +"https://spdx.org/licenses/OpenSSL.html",FALSE,"https://spdx.org/licenses/OpenSSL.json",78,"OpenSSL License","OpenSSL","http://www.openssl.org/source/license.html",FALSE,TRUE +"https://spdx.org/licenses/OPL-1.0.html",FALSE,"https://spdx.org/licenses/OPL-1.0.json",564,"Open Public License v1.0","OPL-1.0","http://old.koalateam.com/jackaroo/OPL_1_0.TXT",FALSE,FALSE +"https://spdx.org/licenses/OPL-UK-3.0.html",FALSE,"https://spdx.org/licenses/OPL-UK-3.0.json",160,"United Kingdom Open Parliament Licence v3.0","OPL-UK-3.0","https://www.parliament.uk/site-information/copyright-parliament/open-parliament-licence/",FALSE,NA +"https://spdx.org/licenses/OPUBL-1.0.html",FALSE,"https://spdx.org/licenses/OPUBL-1.0.json",153,"Open Publication License v1.0","OPUBL-1.0","http://opencontent.org/openpub/",FALSE,NA +"https://spdx.org/licenses/OSET-PL-2.1.html",FALSE,"https://spdx.org/licenses/OSET-PL-2.1.json",478,"OSET Public License version 2.1","OSET-PL-2.1","http://www.osetfoundation.org/public-license",TRUE,NA +"https://spdx.org/licenses/OSL-1.0.html",FALSE,"https://spdx.org/licenses/OSL-1.0.json",217,"Open Software License 1.0","OSL-1.0","https://opensource.org/licenses/OSL-1.0",TRUE,TRUE +"https://spdx.org/licenses/OSL-1.1.html",FALSE,"https://spdx.org/licenses/OSL-1.1.json",270,"Open Software License 1.1","OSL-1.1","https://fedoraproject.org/wiki/Licensing/OSL1.1",FALSE,TRUE +"https://spdx.org/licenses/OSL-2.0.html",FALSE,"https://spdx.org/licenses/OSL-2.0.json",258,"Open Software License 2.0","OSL-2.0","http://web.archive.org/web/20041020171434/http://www.rosenlaw.com/osl2.0.html",TRUE,TRUE +"https://spdx.org/licenses/OSL-2.1.html",FALSE,"https://spdx.org/licenses/OSL-2.1.json",45,"Open Software License 2.1","OSL-2.1","http://web.archive.org/web/20050212003940/http://www.rosenlaw.com/osl21.htm",TRUE,TRUE +"https://spdx.org/licenses/OSL-3.0.html",FALSE,"https://spdx.org/licenses/OSL-3.0.json",54,"Open Software License 3.0","OSL-3.0","https://web.archive.org/web/20120101081418/http://rosenlaw.com:80/OSL3.0.htm",TRUE,TRUE +"https://spdx.org/licenses/PADL.html",FALSE,"https://spdx.org/licenses/PADL.json",295,"PADL License","PADL","https://git.openldap.org/openldap/openldap/-/blob/master/libraries/libldap/os-local.c?ref_type=heads#L19-23",FALSE,NA +"https://spdx.org/licenses/Parity-6.0.0.html",FALSE,"https://spdx.org/licenses/Parity-6.0.0.json",572,"The Parity Public License 6.0.0","Parity-6.0.0","https://paritylicense.com/versions/6.0.0.html",FALSE,NA +"https://spdx.org/licenses/Parity-7.0.0.html",FALSE,"https://spdx.org/licenses/Parity-7.0.0.json",514,"The Parity Public License 7.0.0","Parity-7.0.0","https://paritylicense.com/versions/7.0.0.html",FALSE,NA +"https://spdx.org/licenses/PDDL-1.0.html",FALSE,"https://spdx.org/licenses/PDDL-1.0.json",373,"Open Data Commons Public Domain Dedication & License 1.0","PDDL-1.0","http://opendatacommons.org/licenses/pddl/1.0/",FALSE,NA +"https://spdx.org/licenses/PHP-3.0.html",FALSE,"https://spdx.org/licenses/PHP-3.0.json",219,"PHP License v3.0","PHP-3.0","http://www.php.net/license/3_0.txt",TRUE,NA +"https://spdx.org/licenses/PHP-3.01.html",FALSE,"https://spdx.org/licenses/PHP-3.01.json",37,"PHP License v3.01","PHP-3.01","http://www.php.net/license/3_01.txt",TRUE,TRUE +"https://spdx.org/licenses/Plexus.html",FALSE,"https://spdx.org/licenses/Plexus.json",63,"Plexus Classworlds License","Plexus","https://fedoraproject.org/wiki/Licensing/Plexus_Classworlds_License",FALSE,NA +"https://spdx.org/licenses/pnmstitch.html",FALSE,"https://spdx.org/licenses/pnmstitch.json",106,"pnmstitch License","pnmstitch","https://sourceforge.net/p/netpbm/code/HEAD/tree/super_stable/editor/pnmstitch.c#l2",FALSE,NA +"https://spdx.org/licenses/PolyForm-Noncommercial-1.0.0.html",FALSE,"https://spdx.org/licenses/PolyForm-Noncommercial-1.0.0.json",6,"PolyForm Noncommercial License 1.0.0","PolyForm-Noncommercial-1.0.0","https://polyformproject.org/licenses/noncommercial/1.0.0",FALSE,NA +"https://spdx.org/licenses/PolyForm-Small-Business-1.0.0.html",FALSE,"https://spdx.org/licenses/PolyForm-Small-Business-1.0.0.json",336,"PolyForm Small Business License 1.0.0","PolyForm-Small-Business-1.0.0","https://polyformproject.org/licenses/small-business/1.0.0",FALSE,NA +"https://spdx.org/licenses/PostgreSQL.html",FALSE,"https://spdx.org/licenses/PostgreSQL.json",376,"PostgreSQL License","PostgreSQL","http://www.postgresql.org/about/licence",TRUE,NA +"https://spdx.org/licenses/PSF-2.0.html",FALSE,"https://spdx.org/licenses/PSF-2.0.json",277,"Python Software Foundation License 2.0","PSF-2.0","https://opensource.org/licenses/Python-2.0",FALSE,NA +"https://spdx.org/licenses/psfrag.html",FALSE,"https://spdx.org/licenses/psfrag.json",196,"psfrag License","psfrag","https://fedoraproject.org/wiki/Licensing/psfrag",FALSE,NA +"https://spdx.org/licenses/psutils.html",FALSE,"https://spdx.org/licenses/psutils.json",483,"psutils License","psutils","https://fedoraproject.org/wiki/Licensing/psutils",FALSE,NA +"https://spdx.org/licenses/Python-2.0.html",FALSE,"https://spdx.org/licenses/Python-2.0.json",474,"Python License 2.0","Python-2.0","https://opensource.org/licenses/Python-2.0",TRUE,TRUE +"https://spdx.org/licenses/Python-2.0.1.html",FALSE,"https://spdx.org/licenses/Python-2.0.1.json",149,"Python License 2.0.1","Python-2.0.1","https://www.python.org/download/releases/2.0.1/license/",FALSE,NA +"https://spdx.org/licenses/python-ldap.html",FALSE,"https://spdx.org/licenses/python-ldap.json",343,"Python ldap License","python-ldap","https://github.com/zdohnal/hplip/blob/master/base/ldif.py",FALSE,NA +"https://spdx.org/licenses/Qhull.html",FALSE,"https://spdx.org/licenses/Qhull.json",286,"Qhull License","Qhull","https://fedoraproject.org/wiki/Licensing/Qhull",FALSE,NA +"https://spdx.org/licenses/QPL-1.0.html",FALSE,"https://spdx.org/licenses/QPL-1.0.json",505,"Q Public License 1.0","QPL-1.0","http://doc.qt.nokia.com/3.3/license.html",TRUE,TRUE +"https://spdx.org/licenses/QPL-1.0-INRIA-2004.html",FALSE,"https://spdx.org/licenses/QPL-1.0-INRIA-2004.json",333,"Q Public License 1.0 - INRIA 2004 variant","QPL-1.0-INRIA-2004","https://github.com/maranget/hevea/blob/master/LICENSE",FALSE,NA +"https://spdx.org/licenses/Rdisc.html",FALSE,"https://spdx.org/licenses/Rdisc.json",578,"Rdisc License","Rdisc","https://fedoraproject.org/wiki/Licensing/Rdisc_License",FALSE,NA +"https://spdx.org/licenses/RHeCos-1.1.html",FALSE,"https://spdx.org/licenses/RHeCos-1.1.json",580,"Red Hat eCos Public License v1.1","RHeCos-1.1","http://ecos.sourceware.org/old-license.html",FALSE,FALSE +"https://spdx.org/licenses/RPL-1.1.html",FALSE,"https://spdx.org/licenses/RPL-1.1.json",3,"Reciprocal Public License 1.1","RPL-1.1","https://opensource.org/licenses/RPL-1.1",TRUE,NA +"https://spdx.org/licenses/RPL-1.5.html",FALSE,"https://spdx.org/licenses/RPL-1.5.json",340,"Reciprocal Public License 1.5","RPL-1.5","https://opensource.org/licenses/RPL-1.5",TRUE,NA +"https://spdx.org/licenses/RPSL-1.0.html",FALSE,"https://spdx.org/licenses/RPSL-1.0.json",464,"RealNetworks Public Source License v1.0","RPSL-1.0","https://helixcommunity.org/content/rpsl",TRUE,TRUE +"https://spdx.org/licenses/RSA-MD.html",FALSE,"https://spdx.org/licenses/RSA-MD.json",569,"RSA Message-Digest License","RSA-MD","http://www.faqs.org/rfcs/rfc1321.html",FALSE,NA +"https://spdx.org/licenses/RSCPL.html",FALSE,"https://spdx.org/licenses/RSCPL.json",311,"Ricoh Source Code Public License","RSCPL","http://wayback.archive.org/web/20060715140826/http://www.risource.org/RPL/RPL-1.0A.shtml",TRUE,NA +"https://spdx.org/licenses/Ruby.html",FALSE,"https://spdx.org/licenses/Ruby.json",222,"Ruby License","Ruby","https://www.ruby-lang.org/en/about/license.txt",FALSE,TRUE +"https://spdx.org/licenses/SAX-PD.html",FALSE,"https://spdx.org/licenses/SAX-PD.json",547,"Sax Public Domain Notice","SAX-PD","http://www.saxproject.org/copying.html",FALSE,NA +"https://spdx.org/licenses/Saxpath.html",FALSE,"https://spdx.org/licenses/Saxpath.json",27,"Saxpath License","Saxpath","https://fedoraproject.org/wiki/Licensing/Saxpath_License",FALSE,NA +"https://spdx.org/licenses/SCEA.html",FALSE,"https://spdx.org/licenses/SCEA.json",318,"SCEA Shared Source License","SCEA","http://research.scea.com/scea_shared_source_license.html",FALSE,NA +"https://spdx.org/licenses/SchemeReport.html",FALSE,"https://spdx.org/licenses/SchemeReport.json",482,"Scheme Language Report License","SchemeReport","",FALSE,NA +"https://spdx.org/licenses/Sendmail.html",FALSE,"https://spdx.org/licenses/Sendmail.json",207,"Sendmail License","Sendmail","http://www.sendmail.com/pdfs/open_source/sendmail_license.pdf",FALSE,NA +"https://spdx.org/licenses/Sendmail-8.23.html",FALSE,"https://spdx.org/licenses/Sendmail-8.23.json",48,"Sendmail License 8.23","Sendmail-8.23","https://www.proofpoint.com/sites/default/files/sendmail-license.pdf",FALSE,NA +"https://spdx.org/licenses/SGI-B-1.0.html",FALSE,"https://spdx.org/licenses/SGI-B-1.0.json",543,"SGI Free Software License B v1.0","SGI-B-1.0","http://oss.sgi.com/projects/FreeB/SGIFreeSWLicB.1.0.html",FALSE,NA +"https://spdx.org/licenses/SGI-B-1.1.html",FALSE,"https://spdx.org/licenses/SGI-B-1.1.json",370,"SGI Free Software License B v1.1","SGI-B-1.1","http://oss.sgi.com/projects/FreeB/",FALSE,NA +"https://spdx.org/licenses/SGI-B-2.0.html",FALSE,"https://spdx.org/licenses/SGI-B-2.0.json",103,"SGI Free Software License B v2.0","SGI-B-2.0","http://oss.sgi.com/projects/FreeB/SGIFreeSWLicB.2.0.pdf",FALSE,TRUE +"https://spdx.org/licenses/SGI-OpenGL.html",FALSE,"https://spdx.org/licenses/SGI-OpenGL.json",115,"SGI OpenGL License","SGI-OpenGL","https://gitlab.freedesktop.org/mesa/glw/-/blob/master/README?ref_type=heads",FALSE,NA +"https://spdx.org/licenses/SGP4.html",FALSE,"https://spdx.org/licenses/SGP4.json",263,"SGP4 Permission Notice","SGP4","https://celestrak.org/publications/AIAA/2006-6753/faq.php",FALSE,NA +"https://spdx.org/licenses/SHL-0.5.html",FALSE,"https://spdx.org/licenses/SHL-0.5.json",206,"Solderpad Hardware License v0.5","SHL-0.5","https://solderpad.org/licenses/SHL-0.5/",FALSE,NA +"https://spdx.org/licenses/SHL-0.51.html",FALSE,"https://spdx.org/licenses/SHL-0.51.json",471,"Solderpad Hardware License, Version 0.51","SHL-0.51","https://solderpad.org/licenses/SHL-0.51/",FALSE,NA +"https://spdx.org/licenses/SimPL-2.0.html",FALSE,"https://spdx.org/licenses/SimPL-2.0.json",499,"Simple Public License 2.0","SimPL-2.0","https://opensource.org/licenses/SimPL-2.0",TRUE,NA +"https://spdx.org/licenses/SISSL.html",FALSE,"https://spdx.org/licenses/SISSL.json",161,"Sun Industry Standards Source License v1.1","SISSL","http://www.openoffice.org/licenses/sissl_license.html",TRUE,TRUE +"https://spdx.org/licenses/SISSL-1.2.html",FALSE,"https://spdx.org/licenses/SISSL-1.2.json",292,"Sun Industry Standards Source License v1.2","SISSL-1.2","http://gridscheduler.sourceforge.net/Gridengine_SISSL_license.html",FALSE,NA +"https://spdx.org/licenses/SL.html",FALSE,"https://spdx.org/licenses/SL.json",181,"SL License","SL","https://github.com/mtoyoda/sl/blob/master/LICENSE",FALSE,NA +"https://spdx.org/licenses/Sleepycat.html",FALSE,"https://spdx.org/licenses/Sleepycat.json",498,"Sleepycat License","Sleepycat","https://opensource.org/licenses/Sleepycat",TRUE,TRUE +"https://spdx.org/licenses/SMLNJ.html",FALSE,"https://spdx.org/licenses/SMLNJ.json",329,"Standard ML of New Jersey License","SMLNJ","https://www.smlnj.org/license.html",FALSE,TRUE +"https://spdx.org/licenses/SMPPL.html",FALSE,"https://spdx.org/licenses/SMPPL.json",528,"Secure Messaging Protocol Public License","SMPPL","https://github.com/dcblake/SMP/blob/master/Documentation/License.txt",FALSE,NA +"https://spdx.org/licenses/SNIA.html",FALSE,"https://spdx.org/licenses/SNIA.json",316,"SNIA Public License 1.1","SNIA","https://fedoraproject.org/wiki/Licensing/SNIA_Public_License",FALSE,NA +"https://spdx.org/licenses/snprintf.html",FALSE,"https://spdx.org/licenses/snprintf.json",571,"snprintf License","snprintf","https://github.com/openssh/openssh-portable/blob/master/openbsd-compat/bsd-snprintf.c#L2",FALSE,NA +"https://spdx.org/licenses/Soundex.html",FALSE,"https://spdx.org/licenses/Soundex.json",118,"Soundex License","Soundex","https://metacpan.org/release/RJBS/Text-Soundex-3.05/source/Soundex.pm#L3-11",FALSE,NA +"https://spdx.org/licenses/Spencer-86.html",FALSE,"https://spdx.org/licenses/Spencer-86.json",272,"Spencer License 86","Spencer-86","https://fedoraproject.org/wiki/Licensing/Henry_Spencer_Reg-Ex_Library_License",FALSE,NA +"https://spdx.org/licenses/Spencer-94.html",FALSE,"https://spdx.org/licenses/Spencer-94.json",210,"Spencer License 94","Spencer-94","https://fedoraproject.org/wiki/Licensing/Henry_Spencer_Reg-Ex_Library_License",FALSE,NA +"https://spdx.org/licenses/Spencer-99.html",FALSE,"https://spdx.org/licenses/Spencer-99.json",434,"Spencer License 99","Spencer-99","http://www.opensource.apple.com/source/tcl/tcl-5/tcl/generic/regfronts.c",FALSE,NA +"https://spdx.org/licenses/SPL-1.0.html",FALSE,"https://spdx.org/licenses/SPL-1.0.json",534,"Sun Public License v1.0","SPL-1.0","https://opensource.org/licenses/SPL-1.0",TRUE,TRUE +"https://spdx.org/licenses/ssh-keyscan.html",FALSE,"https://spdx.org/licenses/ssh-keyscan.json",61,"ssh-keyscan License","ssh-keyscan","https://github.com/openssh/openssh-portable/blob/master/LICENCE#L82",FALSE,NA +"https://spdx.org/licenses/SSH-OpenSSH.html",FALSE,"https://spdx.org/licenses/SSH-OpenSSH.json",439,"SSH OpenSSH license","SSH-OpenSSH","https://github.com/openssh/openssh-portable/blob/1b11ea7c58cd5c59838b5fa574cd456d6047b2d4/LICENCE#L10",FALSE,NA +"https://spdx.org/licenses/SSH-short.html",FALSE,"https://spdx.org/licenses/SSH-short.json",573,"SSH short notice","SSH-short","https://github.com/openssh/openssh-portable/blob/1b11ea7c58cd5c59838b5fa574cd456d6047b2d4/pathnames.h",FALSE,NA +"https://spdx.org/licenses/SSPL-1.0.html",FALSE,"https://spdx.org/licenses/SSPL-1.0.json",281,"Server Side Public License, v 1","SSPL-1.0","https://www.mongodb.com/licensing/server-side-public-license",FALSE,NA +"https://spdx.org/licenses/StandardML-NJ.html",TRUE,"https://spdx.org/licenses/StandardML-NJ.json",96,"Standard ML of New Jersey License","StandardML-NJ","https://www.smlnj.org/license.html",FALSE,TRUE +"https://spdx.org/licenses/SugarCRM-1.1.3.html",FALSE,"https://spdx.org/licenses/SugarCRM-1.1.3.json",1,"SugarCRM Public License v1.1.3","SugarCRM-1.1.3","http://www.sugarcrm.com/crm/SPL",FALSE,NA +"https://spdx.org/licenses/SunPro.html",FALSE,"https://spdx.org/licenses/SunPro.json",529,"SunPro License","SunPro","https://github.com/freebsd/freebsd-src/blob/main/lib/msun/src/e_acosh.c",FALSE,NA +"https://spdx.org/licenses/SWL.html",FALSE,"https://spdx.org/licenses/SWL.json",365,"Scheme Widget Library (SWL) Software License Agreement","SWL","https://fedoraproject.org/wiki/Licensing/SWL",FALSE,NA +"https://spdx.org/licenses/swrule.html",FALSE,"https://spdx.org/licenses/swrule.json",388,"swrule License","swrule","https://ctan.math.utah.edu/ctan/tex-archive/macros/generic/misc/swrule.sty",FALSE,NA +"https://spdx.org/licenses/Symlinks.html",FALSE,"https://spdx.org/licenses/Symlinks.json",302,"Symlinks License","Symlinks","https://www.mail-archive.com/debian-bugs-rc@lists.debian.org/msg11494.html",FALSE,NA +"https://spdx.org/licenses/TAPR-OHL-1.0.html",FALSE,"https://spdx.org/licenses/TAPR-OHL-1.0.json",451,"TAPR Open Hardware License v1.0","TAPR-OHL-1.0","https://www.tapr.org/OHL",FALSE,NA +"https://spdx.org/licenses/TCL.html",FALSE,"https://spdx.org/licenses/TCL.json",562,"TCL/TK License","TCL","http://www.tcl.tk/software/tcltk/license.html",FALSE,NA +"https://spdx.org/licenses/TCP-wrappers.html",FALSE,"https://spdx.org/licenses/TCP-wrappers.json",515,"TCP Wrappers License","TCP-wrappers","http://rc.quest.com/topics/openssh/license.php#tcpwrappers",FALSE,NA +"https://spdx.org/licenses/TermReadKey.html",FALSE,"https://spdx.org/licenses/TermReadKey.json",565,"TermReadKey License","TermReadKey","https://github.com/jonathanstowe/TermReadKey/blob/master/README#L9-L10",FALSE,NA +"https://spdx.org/licenses/TMate.html",FALSE,"https://spdx.org/licenses/TMate.json",494,"TMate Open Source License","TMate","http://svnkit.com/license.html",FALSE,NA +"https://spdx.org/licenses/TORQUE-1.1.html",FALSE,"https://spdx.org/licenses/TORQUE-1.1.json",440,"TORQUE v2.5+ Software License v1.1","TORQUE-1.1","https://fedoraproject.org/wiki/Licensing/TORQUEv1.1",FALSE,NA +"https://spdx.org/licenses/TOSL.html",FALSE,"https://spdx.org/licenses/TOSL.json",152,"Trusster Open Source License","TOSL","https://fedoraproject.org/wiki/Licensing/TOSL",FALSE,NA +"https://spdx.org/licenses/TPDL.html",FALSE,"https://spdx.org/licenses/TPDL.json",453,"Time::ParseDate License","TPDL","https://metacpan.org/pod/Time::ParseDate#LICENSE",FALSE,NA +"https://spdx.org/licenses/TPL-1.0.html",FALSE,"https://spdx.org/licenses/TPL-1.0.json",215,"THOR Public License 1.0","TPL-1.0","https://fedoraproject.org/wiki/Licensing:ThorPublicLicense",FALSE,NA +"https://spdx.org/licenses/TTWL.html",FALSE,"https://spdx.org/licenses/TTWL.json",168,"Text-Tabs+Wrap License","TTWL","https://fedoraproject.org/wiki/Licensing/TTWL",FALSE,NA +"https://spdx.org/licenses/TTYP0.html",FALSE,"https://spdx.org/licenses/TTYP0.json",125,"TTYP0 License","TTYP0","https://people.mpi-inf.mpg.de/~uwe/misc/uw-ttyp0/",FALSE,NA +"https://spdx.org/licenses/TU-Berlin-1.0.html",FALSE,"https://spdx.org/licenses/TU-Berlin-1.0.json",174,"Technische Universitaet Berlin License 1.0","TU-Berlin-1.0","https://github.com/swh/ladspa/blob/7bf6f3799fdba70fda297c2d8fd9f526803d9680/gsm/COPYRIGHT",FALSE,NA +"https://spdx.org/licenses/TU-Berlin-2.0.html",FALSE,"https://spdx.org/licenses/TU-Berlin-2.0.json",531,"Technische Universitaet Berlin License 2.0","TU-Berlin-2.0","https://github.com/CorsixTH/deps/blob/fd339a9f526d1d9c9f01ccf39e438a015da50035/licences/libgsm.txt",FALSE,NA +"https://spdx.org/licenses/UCAR.html",FALSE,"https://spdx.org/licenses/UCAR.json",506,"UCAR License","UCAR","https://github.com/Unidata/UDUNITS-2/blob/master/COPYRIGHT",FALSE,NA +"https://spdx.org/licenses/UCL-1.0.html",FALSE,"https://spdx.org/licenses/UCL-1.0.json",262,"Upstream Compatibility License v1.0","UCL-1.0","https://opensource.org/licenses/UCL-1.0",TRUE,NA +"https://spdx.org/licenses/ulem.html",FALSE,"https://spdx.org/licenses/ulem.json",216,"ulem License","ulem","https://mirrors.ctan.org/macros/latex/contrib/ulem/README",FALSE,NA +"https://spdx.org/licenses/Unicode-DFS-2015.html",FALSE,"https://spdx.org/licenses/Unicode-DFS-2015.json",378,"Unicode License Agreement - Data Files and Software (2015)","Unicode-DFS-2015","https://web.archive.org/web/20151224134844/http://unicode.org/copyright.html",FALSE,NA +"https://spdx.org/licenses/Unicode-DFS-2016.html",FALSE,"https://spdx.org/licenses/Unicode-DFS-2016.json",7,"Unicode License Agreement - Data Files and Software (2016)","Unicode-DFS-2016","https://www.unicode.org/license.txt",TRUE,NA +"https://spdx.org/licenses/Unicode-TOU.html",FALSE,"https://spdx.org/licenses/Unicode-TOU.json",25,"Unicode Terms of Use","Unicode-TOU","http://web.archive.org/web/20140704074106/http://www.unicode.org/copyright.html",FALSE,NA +"https://spdx.org/licenses/UnixCrypt.html",FALSE,"https://spdx.org/licenses/UnixCrypt.json",241,"UnixCrypt License","UnixCrypt","https://foss.heptapod.net/python-libs/passlib/-/blob/branch/stable/LICENSE#L70",FALSE,NA +"https://spdx.org/licenses/Unlicense.html",FALSE,"https://spdx.org/licenses/Unlicense.json",112,"The Unlicense","Unlicense","https://unlicense.org/",TRUE,TRUE +"https://spdx.org/licenses/UPL-1.0.html",FALSE,"https://spdx.org/licenses/UPL-1.0.json",178,"Universal Permissive License v1.0","UPL-1.0","https://opensource.org/licenses/UPL",TRUE,TRUE +"https://spdx.org/licenses/URT-RLE.html",FALSE,"https://spdx.org/licenses/URT-RLE.json",300,"Utah Raster Toolkit Run Length Encoded License","URT-RLE","https://sourceforge.net/p/netpbm/code/HEAD/tree/super_stable/converter/other/pnmtorle.c",FALSE,NA +"https://spdx.org/licenses/Vim.html",FALSE,"https://spdx.org/licenses/Vim.json",9,"Vim License","Vim","http://vimdoc.sourceforge.net/htmldoc/uganda.html",FALSE,TRUE +"https://spdx.org/licenses/VOSTROM.html",FALSE,"https://spdx.org/licenses/VOSTROM.json",167,"VOSTROM Public License for Open Source","VOSTROM","https://fedoraproject.org/wiki/Licensing/VOSTROM",FALSE,NA +"https://spdx.org/licenses/VSL-1.0.html",FALSE,"https://spdx.org/licenses/VSL-1.0.json",524,"Vovida Software License v1.0","VSL-1.0","https://opensource.org/licenses/VSL-1.0",TRUE,NA +"https://spdx.org/licenses/W3C.html",FALSE,"https://spdx.org/licenses/W3C.json",379,"W3C Software Notice and License (2002-12-31)","W3C","http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231.html",TRUE,TRUE +"https://spdx.org/licenses/W3C-19980720.html",FALSE,"https://spdx.org/licenses/W3C-19980720.json",389,"W3C Software Notice and License (1998-07-20)","W3C-19980720","http://www.w3.org/Consortium/Legal/copyright-software-19980720.html",FALSE,NA +"https://spdx.org/licenses/W3C-20150513.html",FALSE,"https://spdx.org/licenses/W3C-20150513.json",401,"W3C Software Notice and Document License (2015-05-13)","W3C-20150513","https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document",FALSE,NA +"https://spdx.org/licenses/w3m.html",FALSE,"https://spdx.org/licenses/w3m.json",507,"w3m License","w3m","https://github.com/tats/w3m/blob/master/COPYING",FALSE,NA +"https://spdx.org/licenses/Watcom-1.0.html",FALSE,"https://spdx.org/licenses/Watcom-1.0.json",422,"Sybase Open Watcom Public License 1.0","Watcom-1.0","https://opensource.org/licenses/Watcom-1.0",TRUE,FALSE +"https://spdx.org/licenses/Widget-Workshop.html",FALSE,"https://spdx.org/licenses/Widget-Workshop.json",447,"Widget Workshop License","Widget-Workshop","https://github.com/novnc/noVNC/blob/master/core/crypto/des.js#L24",FALSE,NA +"https://spdx.org/licenses/Wsuipa.html",FALSE,"https://spdx.org/licenses/Wsuipa.json",386,"Wsuipa License","Wsuipa","https://fedoraproject.org/wiki/Licensing/Wsuipa",FALSE,NA +"https://spdx.org/licenses/WTFPL.html",FALSE,"https://spdx.org/licenses/WTFPL.json",307,"Do What The F*ck You Want To Public License","WTFPL","http://www.wtfpl.net/about/",FALSE,TRUE +"https://spdx.org/licenses/wxWindows.html",TRUE,"https://spdx.org/licenses/wxWindows.json",164,"wxWindows Library License","wxWindows","https://opensource.org/licenses/WXwindows",TRUE,NA +"https://spdx.org/licenses/X11.html",FALSE,"https://spdx.org/licenses/X11.json",532,"X11 License","X11","http://www.xfree86.org/3.3.6/COPYRIGHT2.html#3",FALSE,TRUE +"https://spdx.org/licenses/X11-distribute-modifications-variant.html",FALSE,"https://spdx.org/licenses/X11-distribute-modifications-variant.json",201,"X11 License Distribution Modification Variant","X11-distribute-modifications-variant","https://github.com/mirror/ncurses/blob/master/COPYING",FALSE,NA +"https://spdx.org/licenses/Xdebug-1.03.html",FALSE,"https://spdx.org/licenses/Xdebug-1.03.json",260,"Xdebug License v 1.03","Xdebug-1.03","https://github.com/xdebug/xdebug/blob/master/LICENSE",FALSE,NA +"https://spdx.org/licenses/Xerox.html",FALSE,"https://spdx.org/licenses/Xerox.json",584,"Xerox License","Xerox","https://fedoraproject.org/wiki/Licensing/Xerox",FALSE,NA +"https://spdx.org/licenses/Xfig.html",FALSE,"https://spdx.org/licenses/Xfig.json",406,"Xfig License","Xfig","https://github.com/Distrotech/transfig/blob/master/transfig/transfig.c",FALSE,NA +"https://spdx.org/licenses/XFree86-1.1.html",FALSE,"https://spdx.org/licenses/XFree86-1.1.json",570,"XFree86 License 1.1","XFree86-1.1","http://www.xfree86.org/current/LICENSE4.html",FALSE,TRUE +"https://spdx.org/licenses/xinetd.html",FALSE,"https://spdx.org/licenses/xinetd.json",380,"xinetd License","xinetd","https://fedoraproject.org/wiki/Licensing/Xinetd_License",FALSE,TRUE +"https://spdx.org/licenses/xlock.html",FALSE,"https://spdx.org/licenses/xlock.json",20,"xlock License","xlock","https://fossies.org/linux/tiff/contrib/ras/ras2tif.c",FALSE,NA +"https://spdx.org/licenses/Xnet.html",FALSE,"https://spdx.org/licenses/Xnet.json",157,"X.Net License","Xnet","https://opensource.org/licenses/Xnet",TRUE,NA +"https://spdx.org/licenses/xpp.html",FALSE,"https://spdx.org/licenses/xpp.json",523,"XPP License","xpp","https://fedoraproject.org/wiki/Licensing/xpp",FALSE,NA +"https://spdx.org/licenses/XSkat.html",FALSE,"https://spdx.org/licenses/XSkat.json",52,"XSkat License","XSkat","https://fedoraproject.org/wiki/Licensing/XSkat_License",FALSE,NA +"https://spdx.org/licenses/YPL-1.0.html",FALSE,"https://spdx.org/licenses/YPL-1.0.json",560,"Yahoo! Public License v1.0","YPL-1.0","http://www.zimbra.com/license/yahoo_public_license_1.0.html",FALSE,NA +"https://spdx.org/licenses/YPL-1.1.html",FALSE,"https://spdx.org/licenses/YPL-1.1.json",139,"Yahoo! Public License v1.1","YPL-1.1","http://www.zimbra.com/license/yahoo_public_license_1.1.html",FALSE,TRUE +"https://spdx.org/licenses/Zed.html",FALSE,"https://spdx.org/licenses/Zed.json",254,"Zed License","Zed","https://fedoraproject.org/wiki/Licensing/Zed",FALSE,NA +"https://spdx.org/licenses/Zeeff.html",FALSE,"https://spdx.org/licenses/Zeeff.json",76,"Zeeff License","Zeeff","ftp://ftp.tin.org/pub/news/utils/newsx/newsx-1.6.tar.gz",FALSE,NA +"https://spdx.org/licenses/Zend-2.0.html",FALSE,"https://spdx.org/licenses/Zend-2.0.json",34,"Zend License v2.0","Zend-2.0","https://web.archive.org/web/20130517195954/http://www.zend.com/license/2_00.txt",FALSE,TRUE +"https://spdx.org/licenses/Zimbra-1.3.html",FALSE,"https://spdx.org/licenses/Zimbra-1.3.json",575,"Zimbra Public License v1.3","Zimbra-1.3","http://web.archive.org/web/20100302225219/http://www.zimbra.com/license/zimbra-public-license-1-3.html",FALSE,TRUE +"https://spdx.org/licenses/Zimbra-1.4.html",FALSE,"https://spdx.org/licenses/Zimbra-1.4.json",371,"Zimbra Public License v1.4","Zimbra-1.4","http://www.zimbra.com/legal/zimbra-public-license-1-4",FALSE,NA +"https://spdx.org/licenses/Zlib.html",FALSE,"https://spdx.org/licenses/Zlib.json",170,"zlib License","Zlib","http://www.zlib.net/zlib_license.html",TRUE,TRUE +"https://spdx.org/licenses/zlib-acknowledgement.html",FALSE,"https://spdx.org/licenses/zlib-acknowledgement.json",317,"zlib/libpng License with Acknowledgement","zlib-acknowledgement","https://fedoraproject.org/wiki/Licensing/ZlibWithAcknowledgement",FALSE,NA +"https://spdx.org/licenses/ZPL-1.1.html",FALSE,"https://spdx.org/licenses/ZPL-1.1.json",88,"Zope Public License 1.1","ZPL-1.1","http://old.zope.org/Resources/License/ZPL-1.1",FALSE,NA +"https://spdx.org/licenses/ZPL-2.0.html",FALSE,"https://spdx.org/licenses/ZPL-2.0.json",472,"Zope Public License 2.0","ZPL-2.0","http://old.zope.org/Resources/License/ZPL-2.0",TRUE,TRUE +"https://spdx.org/licenses/ZPL-2.1.html",FALSE,"https://spdx.org/licenses/ZPL-2.1.json",395,"Zope Public License 2.1","ZPL-2.1","http://old.zope.org/Resources/ZPL/",TRUE,TRUE diff --git a/spdx_licenses.json b/spdx_licenses.json new file mode 100644 index 0000000..80c240f --- /dev/null +++ b/spdx_licenses.json @@ -0,0 +1,7514 @@ +{ + "licenseListVersion": "1048dac", + "licenses": [ + { + "reference": "https://spdx.org/licenses/0BSD.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/0BSD.json", + "referenceNumber": 393, + "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": 392, + "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": 450, + "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": 192, + "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": 123, + "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-Glyph.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Adobe-Glyph.json", + "referenceNumber": 155, + "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": 49, + "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": 198, + "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": 58, + "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": 293, + "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": 145, + "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": 218, + "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": 158, + "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": 337, + "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": 394, + "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": 384, + "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": 17, + "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": 409, + "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": 137, + "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": 138, + "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": 377, + "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": 349, + "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": 191, + "name": "Apple MIT License", + "licenseId": "AML", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Apple_MIT_License" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/AMPAS.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/AMPAS.json", + "referenceNumber": 558, + "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": 134, + "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": 14, + "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": 43, + "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": 418, + "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": 177, + "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": 284, + "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": 299, + "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": 140, + "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": 29, + "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": 555, + "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": 549, + "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": 467, + "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": 358, + "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": 496, + "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": 331, + "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": 224, + "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": 539, + "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": 225, + "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": 486, + "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": 208, + "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": 427, + "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": 267, + "name": "Barr License", + "licenseId": "Barr", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Barr" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Beerware.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Beerware.json", + "referenceNumber": 90, + "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": 111, + "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": 173, + "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": 179, + "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": 15, + "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": 47, + "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": 361, + "name": "Blue Oak Model License 1.0.0", + "licenseId": "BlueOak-1.0.0", + "seeAlso": [ + "https://blueoakcouncil.org/license/1.0.0" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Boehm-GC.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Boehm-GC.json", + "referenceNumber": 332, + "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": 26, + "name": "Borceux license", + "licenseId": "Borceux", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Borceux" + ], + "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": 397, + "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": 359, + "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": 461, + "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-FreeBSD.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/BSD-2-Clause-FreeBSD.json", + "referenceNumber": 501, + "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": 122, + "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": 10, + "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": 23, + "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": 131, + "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-Attribution.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-Attribution.json", + "referenceNumber": 544, + "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": 460, + "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": 445, + "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": 119, + "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": 240, + "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": 363, + "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": 493, + "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": 244, + "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": 188, + "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": 185, + "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": 330, + "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": 511, + "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": 594, + "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": 322, + "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": 305, + "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": 553, + "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": 356, + "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": 32, + "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": 53, + "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": 98, + "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": 276, + "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-Code.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-Source-Code.json", + "referenceNumber": 278, + "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": 19, + "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/BSL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSL-1.0.json", + "referenceNumber": 466, + "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": 419, + "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": 421, + "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": 257, + "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" + ], + "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": 65, + "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": 592, + "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": 199, + "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": 303, + "name": "Caldera License", + "licenseId": "Caldera", + "seeAlso": [ + "http://www.lemis.com/grog/UNIX/ancient-source-all.pdf" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CATOSL-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CATOSL-1.1.json", + "referenceNumber": 242, + "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": 443, + "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": 521, + "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": 24, + "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": 67, + "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": 238, + "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": 463, + "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-DE.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-3.0-DE.json", + "referenceNumber": 357, + "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": 294, + "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": 310, + "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": 83, + "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": 79, + "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": 51, + "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": 12, + "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": 589, + "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": 355, + "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": 265, + "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": 249, + "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": 275, + "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": 574, + "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": 73, + "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": 86, + "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": 430, + "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": 117, + "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": 458, + "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": 588, + "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": 190, + "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": 313, + "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": 75, + "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": 41, + "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": 55, + "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": 228, + "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": 237, + "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": 308, + "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": 576, + "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": 448, + "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": 468, + "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": 420, + "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": 328, + "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": 488, + "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": 382, + "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": 452, + "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": 404, + "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": 271, + "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": 282, + "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": 347, + "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": 520, + "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": 522, + "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": 441, + "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": 42, + "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": 194, + "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": 85, + "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": 87, + "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": 446, + "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": 97, + "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": 517, + "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": 84, + "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": 480, + "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": 306, + "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": 425, + "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": 414, + "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": 129, + "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": 413, + "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": 415, + "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": 70, + "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": 442, + "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": 234, + "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": 465, + "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": 323, + "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": 231, + "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": 314, + "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": 189, + "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": 417, + "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": 261, + "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": 513, + "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": 470, + "name": "CMU Mach License", + "licenseId": "CMU-Mach", + "seeAlso": [ + "https://www.cs.cmu.edu/~410/licenses.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CNRI-Jython.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CNRI-Jython.json", + "referenceNumber": 81, + "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": 11, + "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": 568, + "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": 585, + "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": 180, + "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": 283, + "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": 62, + "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": 93, + "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": 99, + "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": 110, + "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": 559, + "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": 566, + "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": 183, + "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": 582, + "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": 214, + "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": 94, + "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": 495, + "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": 530, + "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": 432, + "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/diffmark.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/diffmark.json", + "referenceNumber": 326, + "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": 485, + "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": 402, + "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": 80, + "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": 256, + "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": 279, + "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/DSDP.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/DSDP.json", + "referenceNumber": 136, + "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": 385, + "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": 176, + "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": 266, + "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": 255, + "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": 487, + "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": 309, + "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": 127, + "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": 50, + "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": 362, + "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": 205, + "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": 525, + "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": 143, + "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": 436, + "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": 253, + "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": 374, + "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": 2, + "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": 104, + "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": 577, + "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": 56, + "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": 182, + "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": 248, + "name": "Fair License", + "licenseId": "Fair", + "seeAlso": [ + "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": 426, + "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": 301, + "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": 583, + "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": 444, + "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": 554, + "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": 315, + "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": 399, + "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/FSFUL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/FSFUL.json", + "referenceNumber": 36, + "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": 429, + "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": 18, + "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": 233, + "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": 273, + "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": 166, + "name": "fwlw License", + "licenseId": "fwlw", + "seeAlso": [ + "https://mirrors.nic.cz/tex-archive/macros/latex/contrib/fwlw/README" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GD.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GD.json", + "referenceNumber": 489, + "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": 162, + "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": 368, + "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": 38, + "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": 350, + "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": 335, + "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": 59, + "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": 556, + "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": 537, + "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": 8, + "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": 31, + "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": 490, + "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": 124, + "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": 516, + "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": 184, + "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": 590, + "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": 348, + "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": 338, + "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": 473, + "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": 509, + "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": 165, + "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": 435, + "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": 13, + "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": 250, + "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": 211, + "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": 400, + "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": 259, + "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": 175, + "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": 252, + "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": 456, + "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": 449, + "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": 360, + "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": 541, + "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": 120, + "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": 169, + "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://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": 459, + "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": 246, + "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": 77, + "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": 512, + "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": 159, + "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": 398, + "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": 30, + "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": 550, + "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": 186, + "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": 536, + "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": 412, + "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": 297, + "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": 227, + "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": 92, + "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/HaskellReport.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HaskellReport.json", + "referenceNumber": 479, + "name": "Haskell Language Report License", + "licenseId": "HaskellReport", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Haskell_Language_Report_License" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Hippocratic-2.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Hippocratic-2.1.json", + "referenceNumber": 197, + "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": 82, + "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": 407, + "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": 5, + "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": 375, + "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": 109, + "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": 535, + "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": 203, + "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": 367, + "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-Markus-Kuhn.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HPND-Markus-Kuhn.json", + "referenceNumber": 431, + "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-Pbmplus.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HPND-Pbmplus.json", + "referenceNumber": 469, + "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-regexpr.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HPND-sell-regexpr.json", + "referenceNumber": 542, + "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": 22, + "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": 230, + "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": 187, + "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": 353, + "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": 372, + "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": 492, + "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": 44, + "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": 391, + "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": 546, + "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": 288, + "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": 403, + "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": 438, + "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": 113, + "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": 150, + "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": 130, + "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": 352, + "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": 593, + "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": 128, + "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": 457, + "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": 39, + "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/Jam.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Jam.json", + "referenceNumber": 383, + "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": 135, + "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": 304, + "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": 116, + "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": 68, + "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": 411, + "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": 154, + "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": 381, + "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": 204, + "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": 390, + "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": 102, + "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": 33, + "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": 21, + "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": 408, + "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": 247, + "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": 455, + "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": 64, + "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": 591, + "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": 223, + "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": 475, + "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": 287, + "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": 28, + "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": 563, + "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": 108, + "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": 545, + "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": 561, + "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": 195, + "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": 105, + "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": 213, + "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": 142, + "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": 519, + "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": 66, + "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": 557, + "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": 46, + "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": 312, + "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": 148, + "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": 504, + "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": 510, + "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": 552, + "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": 454, + "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/LPL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LPL-1.0.json", + "referenceNumber": 344, + "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": 236, + "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": 497, + "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": 366, + "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": 156, + "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": 40, + "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": 4, + "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": 151, + "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": 416, + "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": 290, + "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": 396, + "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/magaz.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/magaz.json", + "referenceNumber": 57, + "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/MakeIndex.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MakeIndex.json", + "referenceNumber": 163, + "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": 364, + "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": 354, + "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": 172, + "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": 597, + "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": 91, + "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": 200, + "name": "MIT License", + "licenseId": "MIT", + "seeAlso": [ + "https://opensource.org/licenses/MIT" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/MIT-0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MIT-0.json", + "referenceNumber": 410, + "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": 264, + "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": 319, + "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": 251, + "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": 269, + "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": 321, + "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": 462, + "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": 239, + "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": 100, + "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": 341, + "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": 69, + "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": 433, + "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": 209, + "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": 586, + "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": 72, + "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": 567, + "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": 387, + "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": 345, + "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": 579, + "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": 221, + "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": 481, + "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": 334, + "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": 428, + "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": 437, + "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": 548, + "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": 121, + "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": 141, + "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": 503, + "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": 285, + "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": 405, + "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": 518, + "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": 226, + "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": 132, + "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": 243, + "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": 298, + "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": 339, + "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": 346, + "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": 320, + "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": 95, + "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": 16, + "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": 89, + "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": 324, + "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": 212, + "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": 147, + "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": 126, + "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": 74, + "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": 133, + "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": 107, + "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": 235, + "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": 202, + "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": 146, + "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": 596, + "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": 533, + "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": 0, + "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": 71, + "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": 423, + "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": 538, + "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": 477, + "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": 280, + "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": 526, + "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": 171, + "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": 114, + "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": 291, + "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": 500, + "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": 245, + "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": 424, + "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": 193, + "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": 551, + "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": 508, + "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": 540, + "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": 144, + "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": 342, + "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": 581, + "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": 268, + "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": 369, + "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": 296, + "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": 60, + "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": 325, + "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": 289, + "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": 491, + "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": 232, + "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": 527, + "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": 476, + "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": 327, + "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": 229, + "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": 587, + "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": 35, + "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": 595, + "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": 220, + "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": 351, + "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": 502, + "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": 101, + "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": 274, + "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": 484, + "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": 78, + "name": "OpenSSL License", + "licenseId": "OpenSSL", + "seeAlso": [ + "http://www.openssl.org/source/license.html" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/OPL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OPL-1.0.json", + "referenceNumber": 564, + "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": 160, + "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": 153, + "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": 478, + "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": 217, + "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": 270, + "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": 258, + "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": 45, + "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": 54, + "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": 295, + "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": 572, + "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": 514, + "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": 373, + "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": 219, + "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": 37, + "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/Plexus.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Plexus.json", + "referenceNumber": 63, + "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": 106, + "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": 6, + "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": 336, + "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": 376, + "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": 277, + "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": 196, + "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": 483, + "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": 474, + "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": 149, + "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": 343, + "name": "Python ldap License", + "licenseId": "python-ldap", + "seeAlso": [ + "https://github.com/zdohnal/hplip/blob/master/base/ldif.py", + "https://sourceforge.net/projects/hplip/files/hplip/3.23.5/hplip-3.23.5.tar.gz/download" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Qhull.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Qhull.json", + "referenceNumber": 286, + "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": 505, + "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": 333, + "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/Rdisc.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Rdisc.json", + "referenceNumber": 578, + "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": 580, + "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": 3, + "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": 340, + "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": 464, + "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": 569, + "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": 311, + "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": 222, + "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": 547, + "name": "Sax Public Domain Notice", + "licenseId": "SAX-PD", + "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": 27, + "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": 318, + "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": 482, + "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": 207, + "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": 48, + "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": 543, + "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": 370, + "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": 103, + "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": 115, + "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": 263, + "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": 206, + "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": 471, + "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": 499, + "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": 161, + "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": 292, + "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": 181, + "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": 498, + "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": 329, + "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": 528, + "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": 316, + "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": 571, + "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/Soundex.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Soundex.json", + "referenceNumber": 118, + "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": 272, + "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": 210, + "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": 434, + "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": 534, + "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": 61, + "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": 439, + "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": 573, + "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/SSPL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SSPL-1.0.json", + "referenceNumber": 281, + "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": 96, + "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": 1, + "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/SunPro.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SunPro.json", + "referenceNumber": 529, + "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": 365, + "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": 388, + "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": 302, + "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": 451, + "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": 562, + "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": 515, + "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": 565, + "name": "TermReadKey License", + "licenseId": "TermReadKey", + "seeAlso": [ + "https://github.com/jonathanstowe/TermReadKey/blob/master/README#L9-L10" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/TMate.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/TMate.json", + "referenceNumber": 494, + "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": 440, + "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": 152, + "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": 453, + "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": 215, + "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": 168, + "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": 125, + "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": 174, + "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": 531, + "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": 506, + "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": 262, + "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": 216, + "name": "ulem License", + "licenseId": "ulem", + "seeAlso": [ + "https://mirrors.ctan.org/macros/latex/contrib/ulem/README" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Unicode-DFS-2015.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Unicode-DFS-2015.json", + "referenceNumber": 378, + "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": 7, + "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": 25, + "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": 241, + "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": 112, + "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": 178, + "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": 300, + "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": 9, + "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": 167, + "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": 524, + "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": 379, + "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": 389, + "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": 401, + "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": 507, + "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": 422, + "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": 447, + "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": 386, + "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": 307, + "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": 164, + "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": 532, + "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": 201, + "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": 260, + "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": 584, + "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": 406, + "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": 570, + "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": 380, + "name": "xinetd License", + "licenseId": "xinetd", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Xinetd_License" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/xlock.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/xlock.json", + "referenceNumber": 20, + "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": 157, + "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": 523, + "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": 52, + "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": 560, + "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": 139, + "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": 254, + "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": 76, + "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": 34, + "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": 575, + "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": 371, + "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": 170, + "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": 317, + "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": 88, + "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": 472, + "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": 395, + "name": "Zope Public License 2.1", + "licenseId": "ZPL-2.1", + "seeAlso": [ + "http://old.zope.org/Resources/ZPL/" + ], + "isOsiApproved": true, + "isFsfLibre": true + } + ], + "releaseDate": "2023-11-06" +} \ No newline at end of file