From 773fb641ea3acfc79b3c369625fcbbf321c6cf4f Mon Sep 17 00:00:00 2001
From: sebastianMindee <130448732+sebastianMindee@users.noreply.github.com>
Date: Mon, 27 Jul 2026 18:54:52 +0200
Subject: [PATCH 1/5] :wrench: :muscle: beef up code analysis tools
---
Directory.Build.props | 14 +
src/Mindee.Cli/Commands/V1/PredictCommand.cs | 6 +-
src/Mindee.Cli/Commands/V2/BaseCommand.cs | 2 +-
.../Commands/V2/InferenceCommand.cs | 3 +-
.../Commands/V2/SearchModelsCommand.cs | 5 +-
.../Commands/V2/SearchRagDocumentsCommand.cs | 6 +-
src/Mindee/Geometry/Bbox.cs | 1 +
src/Mindee/Geometry/Point.cs | 5 +-
src/Mindee/Geometry/Polygon.cs | 6 +-
src/Mindee/Geometry/PolygonJsonConverter.cs | 3 +
src/Mindee/Image/ExtractedImage.cs | 4 +-
src/Mindee/Image/ImageUtils.cs | 2 +-
src/Mindee/Input/InputSource.cs | 4 +
src/Mindee/Input/LocalInputSource.cs | 23 +-
src/Mindee/Input/PageOptions.cs | 1 +
src/Mindee/Parsing/BaseLocalResponse.cs | 4 +-
src/Mindee/Parsing/SummaryHelper.cs | 12 +-
src/Mindee/Pdf/DocNetApi.cs | 2 +-
src/Mindee/Pdf/SplitQuery.cs | 1 +
src/Mindee/Pdf/SplitdPdf.cs | 1 +
src/Mindee/V1/Client.cs | 431 ++++++++----------
.../V1/Exceptions/MindeeHttpExceptionV1.cs | 17 +
src/Mindee/V1/Http/CustomEndpointAttribute.cs | 8 +-
src/Mindee/V1/Http/EndpointAttribute.cs | 9 +-
src/Mindee/V1/Http/GenericParameter.cs | 1 +
src/Mindee/V1/Parsing/Common/ApiRequest.cs | 1 +
.../Parsing/Common/DateTimeJsonConverter.cs | 4 +-
src/Mindee/V1/Parsing/Common/ErrorDetails.cs | 3 +-
src/Mindee/V1/Parsing/Common/Inference.cs | 2 +-
src/Mindee/V1/Parsing/Common/Ocr.cs | 8 +-
src/Mindee/V1/Parsing/Common/Pages.cs | 2 +-
.../V1/Parsing/Common/PagesJsonConverter.cs | 1 +
.../V1/Parsing/Generated/GeneratedFeature.cs | 15 +-
.../V1/Parsing/Generated/GeneratedObject.cs | 10 +-
src/Mindee/V1/Parsing/Standard/BaseField.cs | 2 +
.../V1/Parsing/Standard/BooleanField.cs | 1 +
src/Mindee/V1/Parsing/Standard/DateField.cs | 7 +-
.../Parsing/Standard/DecimalJsonConverter.cs | 2 +
src/Mindee/V1/Parsing/Standard/Locale.cs | 1 +
src/Mindee/V1/Parsing/Standard/StringField.cs | 1 +
src/Mindee/V1/Parsing/Standard/TimeField.cs | 1 +
.../GeneratedV1DocumentJsonConverter.cs | 4 +-
src/Mindee/V2/Client.cs | 38 +-
.../V2/Exceptions/MindeeHttpExceptionV2.cs | 18 +
src/Mindee/V2/FileOperations/Crop.cs | 2 +-
src/Mindee/V2/FileOperations/CropFiles.cs | 6 +-
src/Mindee/V2/FileOperations/SplitFiles.cs | 6 +-
src/Mindee/V2/Http/MindeeApiV2.cs | 8 +-
src/Mindee/V2/Http/Settings.cs | 4 +
.../V2/Parsing/DateTimeJsonConverter.cs | 4 +-
.../V2/Parsing/Inference/BaseInference.cs | 8 +-
.../Parsing/Inference/Field/DynamicField.cs | 3 +-
.../V2/Parsing/Inference/Field/ListField.cs | 29 +-
.../Classification/ClassificationResponse.cs | 4 +-
.../Params/ClassificationParameters.cs | 2 +-
src/Mindee/V2/Product/Crop/CropResponse.cs | 2 +-
.../V2/Product/Crop/Params/CropParameters.cs | 2 +-
.../Product/Extraction/ExtractionResponse.cs | 2 +-
.../Extraction/Params/ExtractionParameters.cs | 2 +-
src/Mindee/V2/Product/Ocr/OcrResponse.cs | 2 +-
.../V2/Product/Ocr/Params/OcrParameters.cs | 2 +-
...oductAttributes.cs => ProductAttribute.cs} | 6 +-
.../Product/Split/Params/SplitParameters.cs | 2 +-
src/Mindee/V2/Product/Split/SplitResponse.cs | 2 +-
.../Mindee.IntegrationTests/V1/ClientTest.cs | 28 +-
.../Mindee.IntegrationTests/V2/ClientTest.cs | 10 +-
.../V2/FileOperations/CropTest.cs | 4 +-
.../V2/FileOperations/SplitTest.cs | 4 +-
.../Extraction/PdfExtractorTest.cs | 4 +-
.../Geometry/PolygonJsonConverterTest.cs | 25 +-
.../Input/LocalInputSourceTest.cs | 18 +-
.../V1/Parsing/Common/CropperTest.cs | 4 +-
.../V1/Parsing/Common/FullTextOcrTest.cs | 11 +-
.../V1/Parsing/Common/OcrTest.cs | 2 +-
.../V1/Product/Cropper/CropperV1Test.cs | 2 +-
.../FinancialDocumentV1Test.cs | 4 +-
.../V1/Product/Fr/IdCard/IdCardV1Test.cs | 2 +-
.../V1/Product/Fr/IdCard/IdCardV2Test.cs | 2 +-
.../V1/Product/Generated/GeneratedV1Test.cs | 32 +-
.../V1/Product/Receipt/ReceiptV4Test.cs | 34 +-
.../Product/Us/BankCheck/BankCheckV1Test.cs | 2 +-
.../PayrollCheckRegisterV1Test.cs | 3 -
tests/Mindee.UnitTests/V2/ClientTest.cs | 2 +-
tests/Mindee.UnitTests/V2/Parsing/JobTest.cs | 4 +-
.../V2/Product/ClassificationTest.cs | 4 +-
tests/Mindee.UnitTests/V2/Product/CropTest.cs | 6 +-
.../V2/Product/ExtractionTest.cs | 16 +-
tests/Mindee.UnitTests/V2/Product/OcrTest.cs | 6 +-
.../Mindee.UnitTests/V2/Product/SplitTest.cs | 6 +-
.../V2/Search/ModelSearchTest.cs | 4 +-
.../V2/Search/RagDocumentsSearchTest.cs | 23 +-
91 files changed, 545 insertions(+), 507 deletions(-)
rename src/Mindee/V2/Product/{ProductAttributes.cs => ProductAttribute.cs} (76%)
diff --git a/Directory.Build.props b/Directory.Build.props
index 1cbfb2955..99ce28e91 100644
--- a/Directory.Build.props
+++ b/Directory.Build.props
@@ -17,6 +17,13 @@
true
+
+
+ $(NoWarn);S1133
+
+ $(NoWarn);S6966
+
+
$(Version)
$(Version)
@@ -91,4 +98,11 @@
false
$(NoWarn);CS8002
+
+
+
+
+
+
+
diff --git a/src/Mindee.Cli/Commands/V1/PredictCommand.cs b/src/Mindee.Cli/Commands/V1/PredictCommand.cs
index b1e7bddb9..3ccb02203 100644
--- a/src/Mindee.Cli/Commands/V1/PredictCommand.cs
+++ b/src/Mindee.Cli/Commands/V1/PredictCommand.cs
@@ -10,13 +10,13 @@
namespace Mindee.Cli.Commands.V1
{
- internal struct CommandOptions(string name, string description, bool allWords, bool fullText, bool sync, bool async)
+ internal struct CommandOptions(string name, string description, bool allWords, bool fullText, bool sync, bool isAsync)
{
public readonly string Name = name;
public readonly string Description = description;
public readonly bool AllWords = allWords;
public readonly bool FullText = fullText;
- public readonly bool Async = async;
+ public readonly bool IsAsync = isAsync;
public readonly bool Sync = sync;
}
@@ -72,7 +72,7 @@ public PredictCommand(CommandOptions options)
Options.Add(_fullTextOption);
}
- switch (options.Async)
+ switch (options.IsAsync)
{
case true when !options.Sync:
{
diff --git a/src/Mindee.Cli/Commands/V2/BaseCommand.cs b/src/Mindee.Cli/Commands/V2/BaseCommand.cs
index 0a9af49fd..b160792d7 100644
--- a/src/Mindee.Cli/Commands/V2/BaseCommand.cs
+++ b/src/Mindee.Cli/Commands/V2/BaseCommand.cs
@@ -9,7 +9,7 @@ abstract class BaseCommand : Command
{
protected readonly Option ApiKeyOption;
- public BaseCommand(string name, string description) : base(name, description)
+ protected BaseCommand(string name, string description) : base(name, description)
{
ApiKeyOption = new Option("--api-key", "-k") { Description = "Mindee V2 API key." };
Options.Add(ApiKeyOption);
diff --git a/src/Mindee.Cli/Commands/V2/InferenceCommand.cs b/src/Mindee.Cli/Commands/V2/InferenceCommand.cs
index 75ec906b6..26108f3db 100644
--- a/src/Mindee.Cli/Commands/V2/InferenceCommand.cs
+++ b/src/Mindee.Cli/Commands/V2/InferenceCommand.cs
@@ -14,7 +14,6 @@
using Mindee.V2.Product.Ocr.Params;
using Mindee.V2.Product.Split;
using Mindee.V2.Product.Split.Params;
-using SettingsV2 = Mindee.V2.Http.Settings;
using V2Client = Mindee.V2.Client;
namespace Mindee.Cli.Commands.V2
@@ -240,7 +239,7 @@ private async Task EnqueueAndGetResultAsync(InferenceOptions options, strin
new OcrParameters(options.ModelId, options.Alias)),
"split" => await mindeeClient.EnqueueAndGetResultAsync(inputSource,
new SplitParameters(options.ModelId, options.Alias)),
- _ => throw new ArgumentOutOfRangeException(nameof(options.Product))
+ _ => throw new ArgumentOutOfRangeException(productName)
};
PrintToConsole(Console.Out, options, response);
diff --git a/src/Mindee.Cli/Commands/V2/SearchModelsCommand.cs b/src/Mindee.Cli/Commands/V2/SearchModelsCommand.cs
index bd3a66ecb..83d75f698 100644
--- a/src/Mindee.Cli/Commands/V2/SearchModelsCommand.cs
+++ b/src/Mindee.Cli/Commands/V2/SearchModelsCommand.cs
@@ -4,7 +4,6 @@
using Microsoft.Extensions.Options;
using Mindee.V2.Parsing.Search;
using Mindee.V2.Search.Models;
-using SettingsV2 = Mindee.V2.Http.Settings;
using V2Client = Mindee.V2.Client;
namespace Mindee.Cli.Commands.V2
@@ -19,7 +18,7 @@ class SearchModelsCommand : BaseCommand
private readonly Option? _rawOption;
///
- ///
+ /// Creates a new instance of .
///
public SearchModelsCommand() : base("search-models", "Search available models.")
{
@@ -52,7 +51,7 @@ Filter by exact model type (case sensitive).
}
///
- ///
+ /// Configures an action.
///
/// Service provider for dependency resolution
public void ConfigureAction(IServiceProvider services)
diff --git a/src/Mindee.Cli/Commands/V2/SearchRagDocumentsCommand.cs b/src/Mindee.Cli/Commands/V2/SearchRagDocumentsCommand.cs
index 368d7fe57..165b0deb7 100644
--- a/src/Mindee.Cli/Commands/V2/SearchRagDocumentsCommand.cs
+++ b/src/Mindee.Cli/Commands/V2/SearchRagDocumentsCommand.cs
@@ -4,8 +4,6 @@
using Microsoft.Extensions.Options;
using Mindee.V2.Parsing.Search;
using Mindee.V2.Search.Model;
-using Mindee.V2.Search.Models;
-using SettingsV2 = Mindee.V2.Http.Settings;
using V2Client = Mindee.V2.Client;
namespace Mindee.Cli.Commands.V2
@@ -20,7 +18,7 @@ class SearchRagDocumentsCommand : BaseCommand
private readonly Option? _rawOption;
///
- ///
+ /// Creates a new instance of .
///
public SearchRagDocumentsCommand() : base("search-rag-docs", "Search available RAG documents for a given model.")
{
@@ -44,7 +42,7 @@ class SearchRagDocumentsCommand : BaseCommand
}
///
- ///
+ /// Configures an action.
///
/// Service provider for dependency resolution
public void ConfigureAction(IServiceProvider services)
diff --git a/src/Mindee/Geometry/Bbox.cs b/src/Mindee/Geometry/Bbox.cs
index 0d19e9fda..b1fd0a73d 100644
--- a/src/Mindee/Geometry/Bbox.cs
+++ b/src/Mindee/Geometry/Bbox.cs
@@ -7,6 +7,7 @@ namespace Mindee.Geometry
public class Bbox
{
///
+ /// BBox from 4 coordinates.
///
///
///
diff --git a/src/Mindee/Geometry/Point.cs b/src/Mindee/Geometry/Point.cs
index 7c489b13d..c30a99821 100644
--- a/src/Mindee/Geometry/Point.cs
+++ b/src/Mindee/Geometry/Point.cs
@@ -10,6 +10,7 @@ namespace Mindee.Geometry
public class Point : List
{
///
+ /// Point from x and y coordinates.
///
///
///
@@ -26,12 +27,12 @@ public Point(double x, double y)
///
/// X coordinate.
///
- public double X => this.First();
+ public double X => this[0];
///
/// Y coordinate.
///
- public double Y => this.Last();
+ public double Y => this[1];
///
/// The default string representation.
diff --git a/src/Mindee/Geometry/Polygon.cs b/src/Mindee/Geometry/Polygon.cs
index dd16e37ac..1b5614664 100644
--- a/src/Mindee/Geometry/Polygon.cs
+++ b/src/Mindee/Geometry/Polygon.cs
@@ -10,6 +10,7 @@ namespace Mindee.Geometry
public class Polygon : List
{
///
+ /// Polygon from a list of coordinates.
///
/// List of points of coordinates on X and Y.
public Polygon(List> coordinates)
@@ -21,11 +22,12 @@ public Polygon(List> coordinates)
throw new InvalidOperationException("A point must have 2 coordinates.");
}
- Add(new Point(point.First(), point.Last()));
+ Add(new Point(point[0], point[point.Count - 1]));
}
}
///
+ /// Polygon from coordinates as IEnumerable.
///
///
///
@@ -40,7 +42,7 @@ public Polygon(IEnumerable coordinates)
///
public Point GetCentroid()
{
- var verticesCount = this.Count();
+ var verticesCount = this.Count;
var xSum = this.Sum(c => c.X);
var ySum = this.Sum(c => c.Y);
diff --git a/src/Mindee/Geometry/PolygonJsonConverter.cs b/src/Mindee/Geometry/PolygonJsonConverter.cs
index c08b403ae..01f177ce0 100644
--- a/src/Mindee/Geometry/PolygonJsonConverter.cs
+++ b/src/Mindee/Geometry/PolygonJsonConverter.cs
@@ -1,5 +1,6 @@
using System;
using System.Collections.Generic;
+using System.Diagnostics.CodeAnalysis;
using System.Text.Json;
using System.Text.Json.Serialization;
@@ -13,6 +14,8 @@ public class PolygonJsonConverter : JsonConverter
///
///
///
+ [SuppressMessage("Minor Code Smell", "S1168: Return an empty collection instead of null.",
+ Justification = "Would be breaking for end-users to right now. TODO: return [] instead of null")]
public override Polygon Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options)
{
var points = JsonSerializer.Deserialize>>(ref reader, options);
diff --git a/src/Mindee/Image/ExtractedImage.cs b/src/Mindee/Image/ExtractedImage.cs
index c160522a7..16076039b 100644
--- a/src/Mindee/Image/ExtractedImage.cs
+++ b/src/Mindee/Image/ExtractedImage.cs
@@ -17,12 +17,12 @@ public class ExtractedImage
///
/// Page number the image was extracted from.
///
- public int PageId;
+ public int PageId { get; }
///
/// ID of the image.
///
- public int ElementId;
+ public int ElementId { get; }
///
/// Initializes a new instance of the class.
diff --git a/src/Mindee/Image/ImageUtils.cs b/src/Mindee/Image/ImageUtils.cs
index bc2d5965e..743ec679c 100644
--- a/src/Mindee/Image/ImageUtils.cs
+++ b/src/Mindee/Image/ImageUtils.cs
@@ -48,7 +48,7 @@ public static class ImageUtils
///
/// Raw array produce by DocLib's .GetImage() function.
/// A valid SKBitmap.
- public static SKBitmap ArrayToImage(byte[,,] pixelArray)
+ internal static SKBitmap ArrayToImage(byte[,,] pixelArray)
{
var width = pixelArray.GetLength(1);
var height = pixelArray.GetLength(0);
diff --git a/src/Mindee/Input/InputSource.cs b/src/Mindee/Input/InputSource.cs
index bf96ff9bb..6fc563787 100644
--- a/src/Mindee/Input/InputSource.cs
+++ b/src/Mindee/Input/InputSource.cs
@@ -1,7 +1,11 @@
+using System.Diagnostics.CodeAnalysis;
+
namespace Mindee.Input
{
///
/// Base class for input sources used in Mindee API requests.
///
+ [SuppressMessage("Minor Code Smell", "S2094:Classes should not be empty",
+ Justification = "Used as a base type for strict pattern matching in the public API.")]
public abstract class InputSource;
}
diff --git a/src/Mindee/Input/LocalInputSource.cs b/src/Mindee/Input/LocalInputSource.cs
index 0cdefa0d4..c0d1fdb3e 100644
--- a/src/Mindee/Input/LocalInputSource.cs
+++ b/src/Mindee/Input/LocalInputSource.cs
@@ -20,8 +20,6 @@ public sealed class LocalInputSource : InputSource
".heic", ".heif", ".jpg", ".jpga", ".jpeg", ".pdf", ".png", ".tiff", ".tif", ".webp"
];
- private DocNetApi _pdfOperation;
-
///
/// Construct from bytes.
///
@@ -105,6 +103,9 @@ public LocalInputSource(string base64Data, string filename)
///
public string Extension { get; set; }
+ ///
+ /// Sets the file name.
+ ///
///
///
private void SetFileName(string filename)
@@ -190,16 +191,17 @@ public void ApplyPageOptions(PageOptions pageOptions)
{
var serviceCollection = new ServiceCollection();
var serviceProvider = serviceCollection.BuildServiceProvider();
- _pdfOperation = serviceProvider.GetService();
- if (_pdfOperation == null)
+
+ var pdfOperation = serviceProvider.GetService();
+ if (pdfOperation == null)
{
- _pdfOperation = new DocNetApi();
- serviceCollection.AddSingleton(_pdfOperation);
+ pdfOperation = new DocNetApi();
+ serviceCollection.AddSingleton(pdfOperation);
}
if (pageOptions != null && IsPdf())
{
- FileBytes = _pdfOperation.Split(
+ FileBytes = pdfOperation.Split(
new SplitQuery(FileBytes, pageOptions)).File;
}
}
@@ -210,12 +212,7 @@ public void ApplyPageOptions(PageOptions pageOptions)
/// True if at least one character exists in one page.
public bool HasSourceText()
{
- if (!IsPdf())
- {
- return false;
- }
-
- return PdfUtils.HasSourceText(FileBytes);
+ return IsPdf() && PdfUtils.HasSourceText(FileBytes);
}
}
}
diff --git a/src/Mindee/Input/PageOptions.cs b/src/Mindee/Input/PageOptions.cs
index 33d958d76..69ea6b63e 100644
--- a/src/Mindee/Input/PageOptions.cs
+++ b/src/Mindee/Input/PageOptions.cs
@@ -6,6 +6,7 @@ namespace Mindee.Input
public sealed class PageOptions
{
///
+ /// Page options from indexes, operation and minimum pages.
///
///
///
diff --git a/src/Mindee/Parsing/BaseLocalResponse.cs b/src/Mindee/Parsing/BaseLocalResponse.cs
index 97881b176..0a2f8dd58 100644
--- a/src/Mindee/Parsing/BaseLocalResponse.cs
+++ b/src/Mindee/Parsing/BaseLocalResponse.cs
@@ -14,7 +14,7 @@ public abstract class BaseLocalResponse
/// Load from a string.
///
/// Will be decoded as UTF-8.
- public BaseLocalResponse(string input)
+ protected BaseLocalResponse(string input)
{
FileBytes = Encoding.UTF8.GetBytes(input.Replace("\r", "").Replace("\n", ""));
}
@@ -23,7 +23,7 @@ public BaseLocalResponse(string input)
/// Load from a file.
///
/// Will be decoded as UTF-8.
- public BaseLocalResponse(FileInfo input)
+ protected BaseLocalResponse(FileInfo input)
{
FileBytes = Encoding.UTF8.GetBytes(
File.ReadAllText(input.FullName).Replace("\r", "").Replace("\n", ""));
diff --git a/src/Mindee/Parsing/SummaryHelper.cs b/src/Mindee/Parsing/SummaryHelper.cs
index ace90bcd8..a0fc609a9 100644
--- a/src/Mindee/Parsing/SummaryHelper.cs
+++ b/src/Mindee/Parsing/SummaryHelper.cs
@@ -1,3 +1,4 @@
+using System;
using System.Collections.Generic;
using System.Globalization;
using System.Text;
@@ -10,7 +11,7 @@ internal static class SummaryHelper
{
public static string Clean(string summary)
{
- var cleanSpace = new Regex(" \n", RegexOptions.Multiline);
+ var cleanSpace = new Regex(" \n", RegexOptions.Multiline, TimeSpan.FromMilliseconds(1000));
return cleanSpace.Replace(summary, "\n");
}
@@ -24,16 +25,17 @@ public static string FormatAmount(decimal? amount)
return amount == null ? "" : amount.Value.ToString("0.00###", CultureInfo.InvariantCulture);
}
- public static string FormatString(string str)
- {
- return (str ?? "").Replace("\n", "\\n").Replace("\t", "\\t").Replace("\r", "\\r");
- }
public static string FormatBool(bool? value)
{
return value.ToString();
}
+ public static string FormatString(string str)
+ {
+ return (str ?? "").Replace("\n", "\\n").Replace("\t", "\\t").Replace("\r", "\\r");
+ }
+
public static string FormatString(string str, int maxLength)
{
var strSummary = FormatString(str);
diff --git a/src/Mindee/Pdf/DocNetApi.cs b/src/Mindee/Pdf/DocNetApi.cs
index 9baa6547c..029cbf950 100644
--- a/src/Mindee/Pdf/DocNetApi.cs
+++ b/src/Mindee/Pdf/DocNetApi.cs
@@ -101,7 +101,7 @@ private bool CanBeOpen(byte[] file)
}
}
- private ushort GetTotalPagesNumber(byte[] file)
+ private static ushort GetTotalPagesNumber(byte[] file)
{
try
{
diff --git a/src/Mindee/Pdf/SplitQuery.cs b/src/Mindee/Pdf/SplitQuery.cs
index 90f52831a..04306d7c6 100644
--- a/src/Mindee/Pdf/SplitQuery.cs
+++ b/src/Mindee/Pdf/SplitQuery.cs
@@ -8,6 +8,7 @@ namespace Mindee.Pdf
public sealed class SplitQuery
{
///
+ /// Split query from byte array.
///
///
///
diff --git a/src/Mindee/Pdf/SplitdPdf.cs b/src/Mindee/Pdf/SplitdPdf.cs
index f7ef718b2..071ec0f1c 100644
--- a/src/Mindee/Pdf/SplitdPdf.cs
+++ b/src/Mindee/Pdf/SplitdPdf.cs
@@ -6,6 +6,7 @@ namespace Mindee.Pdf
public sealed class SplitPdf
{
///
+ /// Split PDF from byte array.
///
///
///
diff --git a/src/Mindee/V1/Client.cs b/src/Mindee/V1/Client.cs
index ebfba87df..df681c290 100644
--- a/src/Mindee/V1/Client.cs
+++ b/src/Mindee/V1/Client.cs
@@ -13,6 +13,7 @@
using Mindee.V1.Parsing;
using Mindee.V1.Parsing.Common;
using Mindee.V1.Product.Generated;
+
// ReSharper disable once RedundantUsingDirective
namespace Mindee.V1
@@ -27,6 +28,7 @@ public sealed class Client
private readonly IPdfOperation _pdfOperation;
///
+ /// Default V1 constructor.
///
/// The required API key to use Mindee.
///
@@ -51,6 +53,7 @@ public Client(string apiKey, ILoggerFactory logger = null)
}
///
+ /// API key-less constructor for V1 Client.
///
///
///
@@ -79,6 +82,7 @@ public Client(Settings settings, ILoggerFactory logger = null)
}
///
+ /// Custom HTTP module for V1 Client.
///
///
///
@@ -91,11 +95,13 @@ public Client(IPdfOperation pdfOperation, IHttpApi httpApi, ILoggerFactory logge
{
_pdfOperation = pdfOperation;
_mindeeApi = httpApi;
- if (logger != null)
+ if (logger == null)
{
- MindeeLogger.Assign(logger);
- _logger = MindeeLogger.GetLogger();
+ return;
}
+
+ MindeeLogger.Assign(logger);
+ _logger = MindeeLogger.GetLogger();
}
///
@@ -124,12 +130,9 @@ LocalInputSource inputSource
, PageOptions pageOptions = null)
where TInferenceModel : GeneratedV1, new()
{
- _logger?.LogInformation("Synchronous parsing of {} ...", nameof(TInferenceModel));
+ _logger?.LogInformation("Synchronous parsing of {TInferenceModel} ...", nameof(TInferenceModel));
- if (predictOptions == null)
- {
- predictOptions = new PredictOptions();
- }
+ predictOptions ??= new PredictOptions();
if (pageOptions != null && inputSource.IsPdf())
{
@@ -175,12 +178,9 @@ UrlInputSource inputSource
, PredictOptions predictOptions = null)
where TInferenceModel : GeneratedV1, new()
{
- _logger?.LogInformation("Synchronous parsing of {} ...", typeof(TInferenceModel).Name);
+ _logger?.LogInformation("Synchronous parsing of {TInferenceModelName} ...", typeof(TInferenceModel).Name);
- if (predictOptions == null)
- {
- predictOptions = new PredictOptions();
- }
+ predictOptions ??= new PredictOptions();
return await _mindeeApi.PredictPostAsync(
new PredictParameter(
@@ -195,14 +195,11 @@ UrlInputSource inputSource
}
///
- /// Add a local input source to a Generated async queue.
+ /// Call Standard prediction API on a local input source and parse the results.
///
///
///
///
- ///
- ///
- ///
///
///
///
@@ -214,30 +211,26 @@ UrlInputSource inputSource
/// The response object will be instantiated based on this parameter.
///
///
- ///
+ ///
///
///
- public async Task> EnqueueAsync(
+ public async Task> ParseAsync(
LocalInputSource inputSource
- , CustomEndpoint endpoint
, PredictOptions predictOptions = null
, PageOptions pageOptions = null)
- where TInferenceModel : GeneratedV1, new()
+ where TInferenceModel : class, new()
{
- _logger?.LogInformation("Enqueuing of {} ...", typeof(TInferenceModel).Name);
+ _logger?.LogInformation("Synchronous parsing of {TInferenceModelName} ...", typeof(TInferenceModel).Name);
- if (predictOptions == null)
- {
- predictOptions = new PredictOptions();
- }
+ predictOptions ??= new PredictOptions();
if (pageOptions != null && inputSource.IsPdf())
{
- inputSource.FileBytes = _pdfOperation.Split(
- new SplitQuery(inputSource.FileBytes, pageOptions)).File;
+ var splitPdf = _pdfOperation.Split(new SplitQuery(inputSource.FileBytes, pageOptions));
+ inputSource.FileBytes = splitPdf.File;
}
- return await _mindeeApi.PredictAsyncPostAsync(
+ return await _mindeeApi.PredictPostAsync(
new PredictParameter(
inputSource,
null,
@@ -245,20 +238,16 @@ LocalInputSource inputSource
predictOptions.FullText,
predictOptions.Cropper,
predictOptions.WorkflowId,
- predictOptions.Rag
- )
- , endpoint);
+ predictOptions.Rag));
}
+
///
- /// Add a URL input source to an async queue.
+ /// Call Standard prediction API on a URL input source and parse the results.
///
///
///
///
- ///
- ///
- ///
///
///
///
@@ -267,23 +256,19 @@ LocalInputSource inputSource
/// The response object will be instantiated based on this parameter.
///
///
- ///
+ ///
///
///
- public async Task> EnqueueAsync(
+ public async Task> ParseAsync(
UrlInputSource inputSource
- , CustomEndpoint endpoint
, PredictOptions predictOptions = null)
- where TInferenceModel : GeneratedV1, new()
+ where TInferenceModel : class, new()
{
- _logger?.LogInformation("Enqueuing of {} ...", typeof(TInferenceModel).Name);
+ _logger?.LogInformation("Synchronous parsing of {TInferenceModelName} ...", typeof(TInferenceModel).Name);
- if (predictOptions == null)
- {
- predictOptions = new PredictOptions();
- }
+ predictOptions ??= new PredictOptions();
- return await _mindeeApi.PredictAsyncPostAsync(
+ return await _mindeeApi.PredictPostAsync(
new PredictParameter(
null,
inputSource,
@@ -291,43 +276,11 @@ UrlInputSource inputSource
predictOptions.FullText,
predictOptions.Cropper,
predictOptions.WorkflowId,
- predictOptions.Rag)
- , endpoint);
- }
-
- ///
- /// Parse a document from a Generated async queue.
- ///
- ///
- ///
- ///
- /// The job id.
- /// Cancellation token.
- ///
- /// Set the prediction model used to parse the document.
- /// The response object will be instantiated based on this parameter.
- ///
- ///
- ///
- ///
- public async Task> ParseQueuedAsync(
- CustomEndpoint endpoint
- , string jobId
- , CancellationToken ct = default)
- where TInferenceModel : GeneratedV1, new()
- {
- _logger?.LogInformation("Parse from queue of {} ...", typeof(TInferenceModel).Name);
-
- if (string.IsNullOrWhiteSpace(jobId))
- {
- throw new ArgumentNullException(jobId);
- }
-
- return await _mindeeApi.DocumentQueueGetAsync(jobId, endpoint, ct);
+ predictOptions.Rag));
}
///
- /// Add the document to an async queue, poll, and parse when complete.
+ /// Add a local input source to a Generated async queue.
///
///
///
@@ -341,10 +294,6 @@ CustomEndpoint endpoint
///
///
///
- ///
- ///
- ///
- /// Cancellation token.
///
/// Set the prediction model used to parse the document.
/// The response object will be instantiated based on this parameter.
@@ -353,81 +302,39 @@ CustomEndpoint endpoint
///
///
///
- public async Task> EnqueueAndParseAsync(
+ public async Task> EnqueueAsync(
LocalInputSource inputSource
, CustomEndpoint endpoint
, PredictOptions predictOptions = null
- , PageOptions pageOptions = null
- , AsyncPollingOptions pollingOptions = null
- , CancellationToken ct = default)
+ , PageOptions pageOptions = null)
where TInferenceModel : GeneratedV1, new()
{
- _logger?.LogInformation("Asynchronous parsing of {} ...", typeof(TInferenceModel).Name);
-
- if (pollingOptions == null)
- {
- pollingOptions = new AsyncPollingOptions();
- }
+ _logger?.LogInformation("Enqueuing of {TInferenceModelName} ...", typeof(TInferenceModel).Name);
- var enqueueResponse = await EnqueueAsync(
- inputSource,
- endpoint,
- predictOptions,
- pageOptions);
-
- return await PollForResultsAsync(enqueueResponse, endpoint, pollingOptions, ct);
- }
-
-
- ///
- /// Add the document to an async queue, poll, and parse when complete. URL input version.
- ///
- ///
- ///
- ///
- ///
- ///
- ///
- ///
- ///
- ///
- ///
- ///
- ///
- /// Cancellation token.
- ///
- /// Set the prediction model used to parse the document.
- /// The response object will be instantiated based on this parameter.
- ///
- ///
- ///
- ///
- ///
- public async Task> EnqueueAndParseAsync(
- UrlInputSource inputSource
- , CustomEndpoint endpoint
- , PredictOptions predictOptions = null
- , AsyncPollingOptions pollingOptions = null
- , CancellationToken ct = default)
- where TInferenceModel : GeneratedV1, new()
- {
- _logger?.LogInformation("Asynchronous parsing of {} ...", typeof(TInferenceModel).Name);
+ predictOptions ??= new PredictOptions();
- if (pollingOptions == null)
+ if (pageOptions != null && inputSource.IsPdf())
{
- pollingOptions = new AsyncPollingOptions();
+ inputSource.FileBytes = _pdfOperation.Split(
+ new SplitQuery(inputSource.FileBytes, pageOptions)).File;
}
- var enqueueResponse = await EnqueueAsync(
- inputSource,
- endpoint,
- predictOptions);
-
- return await PollForResultsAsync(enqueueResponse, endpoint, pollingOptions, ct);
+ return await _mindeeApi.PredictAsyncPostAsync(
+ new PredictParameter(
+ inputSource,
+ null,
+ predictOptions.AllWords,
+ predictOptions.FullText,
+ predictOptions.Cropper,
+ predictOptions.WorkflowId,
+ predictOptions.Rag
+ )
+ , endpoint);
}
+
///
- /// Call Standard prediction API on a local input source and parse the results.
+ /// Add a local input source to a Standard async queue.
///
///
///
@@ -443,29 +350,26 @@ UrlInputSource inputSource
/// The response object will be instantiated based on this parameter.
///
///
- ///
+ ///
///
///
- public async Task> ParseAsync(
+ public async Task> EnqueueAsync(
LocalInputSource inputSource
, PredictOptions predictOptions = null
, PageOptions pageOptions = null)
where TInferenceModel : class, new()
{
- _logger?.LogInformation("Synchronous parsing of {} ...", typeof(TInferenceModel).Name);
+ _logger?.LogInformation("Enqueuing of {TInferenceModelName} ...", typeof(TInferenceModel).Name);
- if (predictOptions == null)
- {
- predictOptions = new PredictOptions();
- }
+ predictOptions ??= new PredictOptions();
if (pageOptions != null && inputSource.IsPdf())
{
- var splitPdf = _pdfOperation.Split(new SplitQuery(inputSource.FileBytes, pageOptions));
- inputSource.FileBytes = splitPdf.File;
+ inputSource.FileBytes = _pdfOperation.Split(
+ new SplitQuery(inputSource.FileBytes, pageOptions)).File;
}
- return await _mindeeApi.PredictPostAsync(
+ return await _mindeeApi.PredictAsyncPostAsync(
new PredictParameter(
inputSource,
null,
@@ -477,7 +381,7 @@ LocalInputSource inputSource
}
///
- /// Call Standard prediction API on a URL input source and parse the results.
+ /// Add a URL input source to an async queue.
///
///
///
@@ -490,22 +394,19 @@ LocalInputSource inputSource
/// The response object will be instantiated based on this parameter.
///
///
- ///
+ ///
///
///
- public async Task> ParseAsync(
+ public async Task> EnqueueAsync(
UrlInputSource inputSource
, PredictOptions predictOptions = null)
where TInferenceModel : class, new()
{
- _logger?.LogInformation("Synchronous parsing of {} ...", typeof(TInferenceModel).Name);
+ _logger?.LogInformation("Enqueuing of {TInferenceModelName} ...", typeof(TInferenceModel).Name);
- if (predictOptions == null)
- {
- predictOptions = new PredictOptions();
- }
+ predictOptions ??= new PredictOptions();
- return await _mindeeApi.PredictPostAsync(
+ return await _mindeeApi.PredictAsyncPostAsync(
new PredictParameter(
null,
inputSource,
@@ -517,17 +418,17 @@ UrlInputSource inputSource
}
///
- /// Add a local input source to a Standard async queue.
+ /// Add a URL input source to an async queue.
///
///
///
///
+ ///
+ ///
+ ///
///
///
///
- ///
- ///
- ///
///
/// Set the prediction model used to parse the document.
/// The response object will be instantiated based on this parameter.
@@ -537,44 +438,35 @@ UrlInputSource inputSource
///
///
public async Task> EnqueueAsync(
- LocalInputSource inputSource
- , PredictOptions predictOptions = null
- , PageOptions pageOptions = null)
- where TInferenceModel : class, new()
+ UrlInputSource inputSource
+ , CustomEndpoint endpoint
+ , PredictOptions predictOptions = null)
+ where TInferenceModel : GeneratedV1, new()
{
- _logger?.LogInformation("Enqueuing of {} ...", typeof(TInferenceModel).Name);
+ _logger?.LogInformation("Enqueuing of {TInferenceModelName} ...", typeof(TInferenceModel).Name);
- if (predictOptions == null)
- {
- predictOptions = new PredictOptions();
- }
-
- if (pageOptions != null && inputSource.IsPdf())
- {
- inputSource.FileBytes = _pdfOperation.Split(
- new SplitQuery(inputSource.FileBytes, pageOptions)).File;
- }
+ predictOptions ??= new PredictOptions();
return await _mindeeApi.PredictAsyncPostAsync(
new PredictParameter(
- inputSource,
null,
+ inputSource,
predictOptions.AllWords,
predictOptions.FullText,
predictOptions.Cropper,
predictOptions.WorkflowId,
- predictOptions.Rag));
+ predictOptions.Rag)
+ , endpoint);
}
///
- /// Add a URL input source to an async queue.
+ /// Parse a document from a Generated async queue.
///
- ///
- ///
- ///
- ///
- ///
+ ///
+ ///
///
+ /// The job id.
+ /// Cancellation token.
///
/// Set the prediction model used to parse the document.
/// The response object will be instantiated based on this parameter.
@@ -582,30 +474,23 @@ LocalInputSource inputSource
///
///
///
- ///
- public async Task> EnqueueAsync(
- UrlInputSource inputSource
- , PredictOptions predictOptions = null)
- where TInferenceModel : class, new()
+ public async Task> ParseQueuedAsync(
+ CustomEndpoint endpoint
+ , string jobId
+ , CancellationToken ct = default)
+ where TInferenceModel : GeneratedV1, new()
{
- _logger?.LogInformation("Enqueuing of {} ...", typeof(TInferenceModel).Name);
+ _logger?.LogInformation("Parse from queue of {TInferenceModelName} ...", typeof(TInferenceModel).Name);
- if (predictOptions == null)
+ if (string.IsNullOrWhiteSpace(jobId))
{
- predictOptions = new PredictOptions();
+ throw new ArgumentNullException(jobId);
}
- return await _mindeeApi.PredictAsyncPostAsync(
- new PredictParameter(
- null,
- inputSource,
- predictOptions.AllWords,
- predictOptions.FullText,
- predictOptions.Cropper,
- predictOptions.WorkflowId,
- predictOptions.Rag));
+ return await _mindeeApi.DocumentQueueGetAsync(jobId, endpoint, ct);
}
+
///
/// Parse a document from an async queue.
///
@@ -623,7 +508,7 @@ public async Task> ParseQueuedAsync> ParseQueuedAsync(jobId, null, ct);
}
+ ///
+ /// Add the document to an async queue, poll, and parse when complete.
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ /// Cancellation token.
+ ///
+ /// Set the prediction model used to parse the document.
+ /// The response object will be instantiated based on this parameter.
+ ///
+ ///
+ ///
+ ///
+ ///
+ public async Task> EnqueueAndParseAsync(
+ LocalInputSource inputSource
+ , CustomEndpoint endpoint
+ , PredictOptions predictOptions = null
+ , PageOptions pageOptions = null
+ , AsyncPollingOptions pollingOptions = null
+ , CancellationToken ct = default)
+ where TInferenceModel : GeneratedV1, new()
+ {
+ _logger?.LogInformation("Asynchronous parsing of {TInferenceModelName} ...", typeof(TInferenceModel).Name);
+
+ pollingOptions ??= new AsyncPollingOptions();
+
+ var enqueueResponse = await EnqueueAsync(
+ inputSource,
+ endpoint,
+ predictOptions,
+ pageOptions);
+
+ return await PollForResultsAsync(enqueueResponse, endpoint, pollingOptions, ct);
+ }
+
+
+ ///
+ /// Add the document to an async queue, poll, and parse when complete. URL input version.
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ /// Cancellation token.
+ ///
+ /// Set the prediction model used to parse the document.
+ /// The response object will be instantiated based on this parameter.
+ ///
+ ///
+ ///
+ ///
+ ///
+ public async Task> EnqueueAndParseAsync(
+ UrlInputSource inputSource
+ , CustomEndpoint endpoint
+ , PredictOptions predictOptions = null
+ , AsyncPollingOptions pollingOptions = null
+ , CancellationToken ct = default)
+ where TInferenceModel : GeneratedV1, new()
+ {
+ _logger?.LogInformation("Asynchronous parsing of {TInferenceModelName} ...", typeof(TInferenceModel).Name);
+
+ pollingOptions ??= new AsyncPollingOptions();
+
+ var enqueueResponse = await EnqueueAsync(
+ inputSource,
+ endpoint,
+ predictOptions);
+
+ return await PollForResultsAsync(enqueueResponse, endpoint, pollingOptions, ct);
+ }
+
///
/// Add the document to an async queue, poll, and parse when complete.
///
@@ -665,12 +644,9 @@ LocalInputSource inputSource
, CancellationToken ct = default)
where TInferenceModel : class, new()
{
- _logger?.LogInformation("Asynchronous parsing of {} ...", typeof(TInferenceModel).Name);
+ _logger?.LogInformation("Asynchronous parsing of {TInferenceModelName} ...", typeof(TInferenceModel).Name);
- if (pollingOptions == null)
- {
- pollingOptions = new AsyncPollingOptions();
- }
+ pollingOptions ??= new AsyncPollingOptions();
var enqueueResponse = await EnqueueAsync(
inputSource,
@@ -709,12 +685,9 @@ UrlInputSource inputSource
, CancellationToken ct = default)
where TInferenceModel : class, new()
{
- _logger?.LogInformation("Asynchronous parsing of {} ...", typeof(TInferenceModel).Name);
+ _logger?.LogInformation("Asynchronous parsing of {TInferenceModelName} ...", typeof(TInferenceModel).Name);
- if (pollingOptions == null)
- {
- pollingOptions = new AsyncPollingOptions();
- }
+ pollingOptions ??= new AsyncPollingOptions();
var enqueueResponse = await EnqueueAsync(
inputSource,
@@ -745,7 +718,8 @@ public async Task> ExecuteWorkflowAsync(
WorkflowOptions workflowOptions = null,
PageOptions pageOptions = null)
{
- _logger?.LogInformation("Sending '{Filename}' to workflow '{WorkflowId}'...", inputSource.Filename, workflowId);
+ _logger?.LogInformation("Sending '{Filename}' to workflow '{WorkflowId}'...", inputSource.Filename,
+ workflowId);
if (pageOptions != null && inputSource.IsPdf())
{
@@ -786,12 +760,9 @@ public async Task> ExecuteWorkflowAsync(
UrlInputSource inputSource,
WorkflowOptions workflowOptions = null)
{
- _logger?.LogInformation("Asynchronous parsing of {} ...", inputSource.FileUrl);
+ _logger?.LogInformation("Asynchronous parsing of {TInferenceModelName} ...", inputSource.FileUrl);
- if (workflowOptions == null)
- {
- workflowOptions = new WorkflowOptions();
- }
+ workflowOptions ??= new WorkflowOptions();
return await _mindeeApi.PostWorkflowExecution(
workflowId,
@@ -853,9 +824,9 @@ private async Task> PollForResultsAsync> PollForResultsAsync
/// Error sub-object.
///
+ [SuppressMessage("Minor Code Smell", "S3376:Classes should not be empty",
+ Justification = "Would be breaking to remove right now. TODO: remove it.")]
public class MindeeHttpExceptionV1 : MindeeException
{
///
@@ -55,5 +58,19 @@ public MindeeHttpExceptionV1(string name, string message, ErrorDetails details,
Code = code;
}
+ ///
+ public MindeeHttpExceptionV1()
+ {
+ }
+
+ ///
+ public MindeeHttpExceptionV1(string message) : base(message)
+ {
+ }
+
+ ///
+ public MindeeHttpExceptionV1(string message, System.Exception innerException) : base(message, innerException)
+ {
+ }
}
}
diff --git a/src/Mindee/V1/Http/CustomEndpointAttribute.cs b/src/Mindee/V1/Http/CustomEndpointAttribute.cs
index 806bac27d..8e00e3ac9 100644
--- a/src/Mindee/V1/Http/CustomEndpointAttribute.cs
+++ b/src/Mindee/V1/Http/CustomEndpointAttribute.cs
@@ -9,12 +9,12 @@ namespace Mindee.V1.Http
public class CustomEndpointAttribute : EndpointAttribute
{
///
+ /// Custom endpoint attribute for models.
///
- /// The name of the product associated to the expected model.
- /// The name of the account wich hold the API. Usefull when using custom builder.
+ /// The name of the product associated with the expected model.
+ /// The name of the account wich hold the API. Useful when using custom builder.
///
- /// The version number of the API. Without the v (for example for the v1.2: 1.2). By default set
- /// to 1.0
+ /// The version number of the API. Without the v (for example, the v1.2: 1.2). Default to `1`.
///
public CustomEndpointAttribute(
string modelName
diff --git a/src/Mindee/V1/Http/EndpointAttribute.cs b/src/Mindee/V1/Http/EndpointAttribute.cs
index 68d7a8fe8..3d7ec2378 100644
--- a/src/Mindee/V1/Http/EndpointAttribute.cs
+++ b/src/Mindee/V1/Http/EndpointAttribute.cs
@@ -13,12 +13,13 @@ public class EndpointAttribute : Attribute
private readonly string _modelVersion;
///
+ /// Endpoint attribute to target model info.
///
- /// The name of the product associated to the expected model.
- /// The version number of the API. Without the v (for example for the v1.2: 1.2).
+ /// The name of the product associated with the expected model.
+ /// The version number of the API. Without the v (for example, for the v1.2: 1.2).
///
- /// The name of the organization wich hold the API. Usefull when using custom builder. By default
- /// to mindee.
+ /// The name of the organization that holds the API. Useful when using custom builder.
+ /// Defaults to `mindee`.
///
public EndpointAttribute(
string modelName
diff --git a/src/Mindee/V1/Http/GenericParameter.cs b/src/Mindee/V1/Http/GenericParameter.cs
index 395e4852a..c964ff531 100644
--- a/src/Mindee/V1/Http/GenericParameter.cs
+++ b/src/Mindee/V1/Http/GenericParameter.cs
@@ -9,6 +9,7 @@ namespace Mindee.V1.Http
public class GenericParameter
{
///
+ /// Generic prediction parameters.
///
///
///
diff --git a/src/Mindee/V1/Parsing/Common/ApiRequest.cs b/src/Mindee/V1/Parsing/Common/ApiRequest.cs
index da39713d4..a7a3f1a8a 100644
--- a/src/Mindee/V1/Parsing/Common/ApiRequest.cs
+++ b/src/Mindee/V1/Parsing/Common/ApiRequest.cs
@@ -15,6 +15,7 @@ public class ApiRequest
public Error Error { get; set; }
///
+ /// Resources used by the request.
///
[JsonPropertyName("resources")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("ReSharper", "CollectionNeverUpdated.Global")]
diff --git a/src/Mindee/V1/Parsing/Common/DateTimeJsonConverter.cs b/src/Mindee/V1/Parsing/Common/DateTimeJsonConverter.cs
index c4e89770e..908bbec57 100644
--- a/src/Mindee/V1/Parsing/Common/DateTimeJsonConverter.cs
+++ b/src/Mindee/V1/Parsing/Common/DateTimeJsonConverter.cs
@@ -25,7 +25,7 @@ public override DateTime Read(ref Utf8JsonReader reader, Type typeToConvert, Jso
}
// If the string ends with "Z", replace it with "+00:00" to represent UTC.
- if (dateString.EndsWith("Z"))
+ if (dateString.EndsWith("Z", StringComparison.Ordinal))
{
dateString = dateString.Substring(0, dateString.Length - 1) + "+00:00";
}
@@ -38,7 +38,7 @@ public override DateTime Read(ref Utf8JsonReader reader, Type typeToConvert, Jso
}
}
- return DateTime.Parse(dateString, null, DateTimeStyles.RoundtripKind).ToUniversalTime();
+ return DateTime.Parse(dateString, CultureInfo.InvariantCulture, DateTimeStyles.RoundtripKind).ToUniversalTime();
}
///
diff --git a/src/Mindee/V1/Parsing/Common/ErrorDetails.cs b/src/Mindee/V1/Parsing/Common/ErrorDetails.cs
index a4e9b61e9..134451a9b 100644
--- a/src/Mindee/V1/Parsing/Common/ErrorDetails.cs
+++ b/src/Mindee/V1/Parsing/Common/ErrorDetails.cs
@@ -3,12 +3,13 @@
namespace Mindee.V1.Parsing.Common
{
///
- /// Represent an error information from the API response.
+ /// Represent error information from the API response.
///
[JsonConverter(typeof(ErrorDetailsJsonConverter))]
public class ErrorDetails
{
///
+ /// Error details from string.
///
///
///
diff --git a/src/Mindee/V1/Parsing/Common/Inference.cs b/src/Mindee/V1/Parsing/Common/Inference.cs
index 0216e8cd6..55e6e5ead 100644
--- a/src/Mindee/V1/Parsing/Common/Inference.cs
+++ b/src/Mindee/V1/Parsing/Common/Inference.cs
@@ -45,7 +45,7 @@ public InferenceExtras Extras
if (Pages.Count > 0 && _extras?.FullTextOcr == null)
{
_extras ??= new InferenceExtras();
- if (Pages.First().Extras is { FullTextOcr: not null })
+ if (Pages[0].Extras is { FullTextOcr: not null })
{
_extras.FullTextOcr = string.Join("\n",
Pages.Select(page => page.Extras.FullTextOcr.Content));
diff --git a/src/Mindee/V1/Parsing/Common/Ocr.cs b/src/Mindee/V1/Parsing/Common/Ocr.cs
index 231402f3a..80ec28ddf 100644
--- a/src/Mindee/V1/Parsing/Common/Ocr.cs
+++ b/src/Mindee/V1/Parsing/Common/Ocr.cs
@@ -151,7 +151,13 @@ protected List> ToLines()
return lines;
}
- private bool AreWordsOnSameLine(Word currentWord, Word nextWord)
+ ///
+ /// Checks whether two words are on the same line.
+ ///
+ ///
+ ///
+ ///
+ private static bool AreWordsOnSameLine(Word currentWord, Word nextWord)
{
var currentInNext = currentWord.Polygon.IsPointInY(nextWord.Polygon.GetCentroid());
var nextInCurrent = nextWord.Polygon.IsPointInY(currentWord.Polygon.GetCentroid());
diff --git a/src/Mindee/V1/Parsing/Common/Pages.cs b/src/Mindee/V1/Parsing/Common/Pages.cs
index a4a68f165..e35f366da 100644
--- a/src/Mindee/V1/Parsing/Common/Pages.cs
+++ b/src/Mindee/V1/Parsing/Common/Pages.cs
@@ -24,7 +24,7 @@ public override string ToString()
///
public bool HasPredictions()
{
- return Count > 0 && this.First().Prediction != null;
+ return Count > 0 && !object.Equals(this[0].Prediction, default(TPagePrediction));
}
}
}
diff --git a/src/Mindee/V1/Parsing/Common/PagesJsonConverter.cs b/src/Mindee/V1/Parsing/Common/PagesJsonConverter.cs
index 4352e703f..bbddc207f 100644
--- a/src/Mindee/V1/Parsing/Common/PagesJsonConverter.cs
+++ b/src/Mindee/V1/Parsing/Common/PagesJsonConverter.cs
@@ -38,6 +38,7 @@ public override Pages Read(ref Utf8JsonReader reader, Type typeToConvert,
}
///
+ /// Write the pages to the JSON writer.
///
public override void Write(Utf8JsonWriter writer, Pages value, JsonSerializerOptions options)
{
diff --git a/src/Mindee/V1/Parsing/Generated/GeneratedFeature.cs b/src/Mindee/V1/Parsing/Generated/GeneratedFeature.cs
index 4d5c872f5..ea39bfc29 100644
--- a/src/Mindee/V1/Parsing/Generated/GeneratedFeature.cs
+++ b/src/Mindee/V1/Parsing/Generated/GeneratedFeature.cs
@@ -1,5 +1,4 @@
using System.Collections.Generic;
-using System.Linq;
using System.Text;
using Mindee.Exceptions;
using Mindee.V1.Parsing.Standard;
@@ -39,7 +38,7 @@ public StringField AsStringField()
throw new MindeeException("Cannot convert a list feature into a StringField.");
}
- return this.First().AsStringField();
+ return this[0].AsStringField();
}
///
@@ -54,7 +53,7 @@ public AmountField AsAmountField()
throw new MindeeException("Cannot convert a list feature into an AmountField.");
}
- return this.First().AsAmountField();
+ return this[0].AsAmountField();
}
///
@@ -69,7 +68,7 @@ public DecimalField AsDecimalField()
throw new MindeeException("Cannot convert a list feature into a DecimalField.");
}
- return this.First().AsDecimalField();
+ return this[0].AsDecimalField();
}
///
@@ -84,7 +83,7 @@ public DateField AsDateField()
throw new MindeeException("Cannot convert a list feature into a DateField.");
}
- return this.First().AsDateField();
+ return this[0].AsDateField();
}
///
@@ -99,7 +98,7 @@ public ClassificationField AsClassificationField()
throw new MindeeException("Cannot convert a list feature into a ClassificationField.");
}
- return this.First().AsClassificationField();
+ return this[0].AsClassificationField();
}
///
@@ -114,7 +113,7 @@ public BooleanField AsBooleanField()
throw new MindeeException("Cannot convert a list feature into a BooleanField.");
}
- return this.First().AsBooleanField();
+ return this[0].AsBooleanField();
}
///
@@ -140,7 +139,7 @@ public override string ToString()
}
else
{
- result.Append($"\n{this.First().ToString(2)}");
+ result.Append($"\n{this[0].ToString(2)}");
}
return result.ToString();
diff --git a/src/Mindee/V1/Parsing/Generated/GeneratedObject.cs b/src/Mindee/V1/Parsing/Generated/GeneratedObject.cs
index 04b06bb0d..2e50098dd 100644
--- a/src/Mindee/V1/Parsing/Generated/GeneratedObject.cs
+++ b/src/Mindee/V1/Parsing/Generated/GeneratedObject.cs
@@ -1,4 +1,5 @@
using System.Collections.Generic;
+using System.Diagnostics.CodeAnalysis;
using System.Text;
using System.Text.Json;
using Mindee.Geometry;
@@ -185,14 +186,11 @@ public Polygon Polygon()
///
/// Get the specified key as a object.
///
+ [SuppressMessage("Minor Code Smell", "S1168: Return an empty collection instead of null.",
+ Justification = "Would be breaking for end-users to right now. TODO: return [] instead of null")]
public Polygon TryGetPolygon(string key)
{
- if (ContainsKey(key))
- {
- return ConvertElementToPolygon(this[key]);
- }
-
- return null;
+ return ContainsKey(key) ? ConvertElementToPolygon(this[key]) : null;
}
///
diff --git a/src/Mindee/V1/Parsing/Standard/BaseField.cs b/src/Mindee/V1/Parsing/Standard/BaseField.cs
index e0186ff1a..21a51a4ce 100644
--- a/src/Mindee/V1/Parsing/Standard/BaseField.cs
+++ b/src/Mindee/V1/Parsing/Standard/BaseField.cs
@@ -9,6 +9,7 @@ namespace Mindee.V1.Parsing.Standard
public abstract class BaseField
{
///
+ /// Base for V1 fields.
///
///
///
@@ -27,6 +28,7 @@ protected BaseField(double? confidence, Polygon polygon, int? pageId)
}
///
+ /// Empty base field.
///
protected BaseField() { }
diff --git a/src/Mindee/V1/Parsing/Standard/BooleanField.cs b/src/Mindee/V1/Parsing/Standard/BooleanField.cs
index db004cc81..6fa9e3097 100644
--- a/src/Mindee/V1/Parsing/Standard/BooleanField.cs
+++ b/src/Mindee/V1/Parsing/Standard/BooleanField.cs
@@ -10,6 +10,7 @@ namespace Mindee.V1.Parsing.Standard
public class BooleanField : BaseField
{
///
+ /// Boolean field.
///
///
///
diff --git a/src/Mindee/V1/Parsing/Standard/DateField.cs b/src/Mindee/V1/Parsing/Standard/DateField.cs
index 252c02341..aaa755a9f 100644
--- a/src/Mindee/V1/Parsing/Standard/DateField.cs
+++ b/src/Mindee/V1/Parsing/Standard/DateField.cs
@@ -1,4 +1,5 @@
using System;
+using System.Globalization;
using Microsoft.Extensions.Logging;
using Mindee.Geometry;
@@ -45,11 +46,11 @@ public DateField(
try
{
- DateObject = DateTime.Parse(Value);
+ DateObject = DateTime.Parse(Value, CultureInfo.InvariantCulture);
}
- catch (FormatException)
+ catch (FormatException exc)
{
- logger?.LogWarning("Unable to parse the date: {}", Value);
+ logger?.LogWarning(exc, "Unable to parse the date: {Value}", Value);
}
}
diff --git a/src/Mindee/V1/Parsing/Standard/DecimalJsonConverter.cs b/src/Mindee/V1/Parsing/Standard/DecimalJsonConverter.cs
index 54632111a..d42fb5be1 100644
--- a/src/Mindee/V1/Parsing/Standard/DecimalJsonConverter.cs
+++ b/src/Mindee/V1/Parsing/Standard/DecimalJsonConverter.cs
@@ -6,10 +6,12 @@
namespace Mindee.V1.Parsing.Standard
{
///
+ /// Custom JSON converter for decimal values.
///
public class DecimalJsonConverter : JsonConverter
{
///
+ /// Read a decimal value from a JSON string.
///
public override decimal? Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options)
{
diff --git a/src/Mindee/V1/Parsing/Standard/Locale.cs b/src/Mindee/V1/Parsing/Standard/Locale.cs
index 355c7a547..46a0fe840 100644
--- a/src/Mindee/V1/Parsing/Standard/Locale.cs
+++ b/src/Mindee/V1/Parsing/Standard/Locale.cs
@@ -78,6 +78,7 @@ public Locale(
public string Value { get; set; }
///
+ /// String representation.
///
/// A pretty summary of the value.
public override string ToString()
diff --git a/src/Mindee/V1/Parsing/Standard/StringField.cs b/src/Mindee/V1/Parsing/Standard/StringField.cs
index 9efcd9386..e2b1e74ec 100644
--- a/src/Mindee/V1/Parsing/Standard/StringField.cs
+++ b/src/Mindee/V1/Parsing/Standard/StringField.cs
@@ -10,6 +10,7 @@ namespace Mindee.V1.Parsing.Standard
public class StringField : BaseField
{
///
+ /// String field.
///
///
///
diff --git a/src/Mindee/V1/Parsing/Standard/TimeField.cs b/src/Mindee/V1/Parsing/Standard/TimeField.cs
index 7f2f4a996..ac60e9cb5 100644
--- a/src/Mindee/V1/Parsing/Standard/TimeField.cs
+++ b/src/Mindee/V1/Parsing/Standard/TimeField.cs
@@ -8,6 +8,7 @@ namespace Mindee.V1.Parsing.Standard
public class TimeField : StringField
{
///
+ /// Time representation.
///
///
///
diff --git a/src/Mindee/V1/Product/Generated/GeneratedV1DocumentJsonConverter.cs b/src/Mindee/V1/Product/Generated/GeneratedV1DocumentJsonConverter.cs
index 060499b42..ba8d5b42b 100644
--- a/src/Mindee/V1/Product/Generated/GeneratedV1DocumentJsonConverter.cs
+++ b/src/Mindee/V1/Product/Generated/GeneratedV1DocumentJsonConverter.cs
@@ -27,10 +27,10 @@ public override GeneratedV1Document Read(ref Utf8JsonReader reader, Type typeToC
{
GeneratedFeature feature;
- if (jsonNode.Value is JsonArray)
+ if (jsonNode.Value is JsonArray jsonArray)
{
feature = new GeneratedFeature(true);
- foreach (var featureValue in (JsonArray)jsonNode.Value)
+ foreach (var featureValue in jsonArray)
{
feature.Add(featureValue.Deserialize());
}
diff --git a/src/Mindee/V2/Client.cs b/src/Mindee/V2/Client.cs
index c5a542780..70f076a28 100644
--- a/src/Mindee/V2/Client.cs
+++ b/src/Mindee/V2/Client.cs
@@ -30,6 +30,7 @@ public sealed class Client
private readonly HttpApiV2 _mindeeApi;
///
+ /// Default Client constructor for V2.
///
/// The required API key to use the Mindee V2 API.
/// Factory for the logger.
@@ -53,6 +54,7 @@ public Client(string apiKey, ILoggerFactory loggerFactory = null)
}
///
+ /// API Key-less constructor for V2.
///
///
///
@@ -80,6 +82,7 @@ public Client(SettingsV2 settings, ILoggerFactory logger = null)
}
///
+ /// Constructor with custom API module.
///
///
///
@@ -139,7 +142,7 @@ InputSource inputSource
///
public async Task GetJobFromUrlAsync(string pollingUrl, CancellationToken ct = default)
{
- _logger?.LogInformation("Getting Job at: {}", pollingUrl);
+ _logger?.LogInformation("Getting Job at: {PollingUrl}", pollingUrl);
if (string.IsNullOrWhiteSpace(pollingUrl))
{
@@ -160,7 +163,7 @@ public async Task GetJobFromUrlAsync(string pollingUrl, Cancellatio
public async Task GetResultFromUrlAsync(string resultUrl, CancellationToken ct = default)
where TResponse : BaseResponse, new()
{
- _logger?.LogInformation("Getting result at: {}", resultUrl);
+ _logger?.LogInformation("Getting result at: {ResultUrl}", resultUrl);
if (string.IsNullOrWhiteSpace(resultUrl))
{
@@ -181,7 +184,7 @@ public async Task GetResultFromUrlAsync(string resultUrl,
public async Task GetResultAsync(string jobId, CancellationToken ct = default)
where TResponse : BaseResponse, new()
{
- _logger?.LogInformation("Getting result with ID: {}", jobId);
+ _logger?.LogInformation("Getting result with ID: {JobId}", jobId);
if (string.IsNullOrWhiteSpace(jobId))
{
@@ -201,7 +204,7 @@ public async Task GetResultAsync(string jobId, Cancellatio
///
public async Task GetJobAsync(string jobId, CancellationToken ct = default)
{
- _logger?.LogInformation("Getting job ID: {}", jobId);
+ _logger?.LogInformation("Getting job ID: {JobId}", jobId);
if (string.IsNullOrWhiteSpace(jobId))
{
@@ -245,26 +248,27 @@ InputSource inputSource
}
///
- /// Returns a list of models matching the given criteria.
+ /// Returns a list of RAG documents matching the given criteria.
///
- ///
+ ///
/// Cancellation token.
- public async Task SearchModels(
- ModelSearchParameters searchParameters, CancellationToken ct = default)
+ public async Task SearchRagDocuments(
+ RagDocumentSearchParameters searchParameters, CancellationToken ct = default)
{
- var parameters = searchParameters ?? new ModelSearchParameters();
- return await _mindeeApi.SearchModels(parameters, ct);
+ return await _mindeeApi.SearchRagDocuments(searchParameters, ct);
}
+
///
- /// Returns a list of RAG documents matching the given criteria.
+ /// Returns a list of models matching the given criteria.
///
- ///
+ ///
/// Cancellation token.
- public async Task SearchRagDocuments(
- RagDocumentSearchParameters searchParameters, CancellationToken ct = default)
+ public async Task SearchModels(
+ ModelSearchParameters searchParameters, CancellationToken ct = default)
{
- return await _mindeeApi.SearchRagDocuments(searchParameters, ct);
+ var parameters = searchParameters ?? new ModelSearchParameters();
+ return await _mindeeApi.SearchModels(parameters, ct);
}
///
@@ -302,9 +306,9 @@ private async Task PollForResultsAsync(
{
var maxRetries = pollingOptions.MaxRetries + 1;
var pollingUrl = enqueueResponse.Job.PollingUrl;
- _logger?.LogInformation("Enqueued with job ID: {}", enqueueResponse.Job.Id);
+ _logger?.LogInformation("Enqueued with job ID: {JobId}", enqueueResponse.Job.Id);
_logger?.LogInformation(
- "Waiting {} seconds before attempting to retrieve the document...",
+ "Waiting {InitialDelaySec} seconds before attempting to retrieve the document...",
pollingOptions.InitialDelaySec);
await Task.Delay(pollingOptions.InitialDelayMilliSec, ct);
var retryCount = 1;
diff --git a/src/Mindee/V2/Exceptions/MindeeHttpExceptionV2.cs b/src/Mindee/V2/Exceptions/MindeeHttpExceptionV2.cs
index 03ca5dad8..0cfd5ab7a 100644
--- a/src/Mindee/V2/Exceptions/MindeeHttpExceptionV2.cs
+++ b/src/Mindee/V2/Exceptions/MindeeHttpExceptionV2.cs
@@ -1,5 +1,6 @@
using System;
using System.Collections.Generic;
+using System.Diagnostics.CodeAnalysis;
using Mindee.V2.Parsing;
namespace Mindee.V2.Exceptions
@@ -7,6 +8,8 @@ namespace Mindee.V2.Exceptions
///
/// Representation of a Mindee API V2 exception.
///
+ [SuppressMessage("Minor Code Smell", "S3376:Classes should not be empty",
+ Justification = "Would be breaking to remove right now. TODO: remove it.")]
public class MindeeHttpExceptionV2 : Exception, IErrorResponse
{
///
@@ -23,6 +26,21 @@ public MindeeHttpExceptionV2(ErrorResponse error)
Errors = error.Errors;
}
+ ///
+ public MindeeHttpExceptionV2()
+ {
+ }
+
+ ///
+ public MindeeHttpExceptionV2(string message) : base(message)
+ {
+ }
+
+ ///
+ public MindeeHttpExceptionV2(string message, Exception innerException) : base(message, innerException)
+ {
+ }
+
///
public string Detail { get; set; }
diff --git a/src/Mindee/V2/FileOperations/Crop.cs b/src/Mindee/V2/FileOperations/Crop.cs
index 596011152..2711188d8 100644
--- a/src/Mindee/V2/FileOperations/Crop.cs
+++ b/src/Mindee/V2/FileOperations/Crop.cs
@@ -19,7 +19,7 @@ public sealed class Crop
private readonly LocalInputSource _localInput;
///
- ///
+ /// Crop object from an input source.
///
///
public Crop(LocalInputSource inputSource)
diff --git a/src/Mindee/V2/FileOperations/CropFiles.cs b/src/Mindee/V2/FileOperations/CropFiles.cs
index f547761a4..991d4672f 100644
--- a/src/Mindee/V2/FileOperations/CropFiles.cs
+++ b/src/Mindee/V2/FileOperations/CropFiles.cs
@@ -10,7 +10,7 @@ namespace Mindee.V2.FileOperations
public class CropFiles : List
{
///
- ///
+ /// Crop files from a collection of extracted images.
///
///
public CropFiles(IEnumerable collection) : base(collection)
@@ -18,9 +18,9 @@ public CropFiles(IEnumerable collection) : base(collection)
}
///
- ///
+ /// Empty crop files.
///
- public CropFiles() : base()
+ public CropFiles()
{
}
diff --git a/src/Mindee/V2/FileOperations/SplitFiles.cs b/src/Mindee/V2/FileOperations/SplitFiles.cs
index 443f08478..f497c1fb2 100644
--- a/src/Mindee/V2/FileOperations/SplitFiles.cs
+++ b/src/Mindee/V2/FileOperations/SplitFiles.cs
@@ -10,7 +10,7 @@ namespace Mindee.V2.FileOperations
public sealed class SplitFiles : List
{
///
- ///
+ /// Split files from a collection of extracted PDFs.
///
///
public SplitFiles(IEnumerable collection) : base(collection)
@@ -18,9 +18,9 @@ public SplitFiles(IEnumerable collection) : base(collection)
}
///
- ///
+ /// Empty split files.
///
- public SplitFiles() : base()
+ public SplitFiles()
{
}
diff --git a/src/Mindee/V2/Http/MindeeApiV2.cs b/src/Mindee/V2/Http/MindeeApiV2.cs
index 097bf06e0..1798a6e59 100644
--- a/src/Mindee/V2/Http/MindeeApiV2.cs
+++ b/src/Mindee/V2/Http/MindeeApiV2.cs
@@ -57,9 +57,9 @@ public override async Task ReqPostEnqueueAsync(
CancellationToken ct = default
)
{
- var productAttributes = parameters.GetType().GetCustomAttribute();
+ var productAttributes = parameters.GetType().GetCustomAttribute();
if (productAttributes == null)
- throw new Exception($"ProductAttributes must be set for class: {parameters.GetType().Name}");
+ throw new MindeeException($"ProductAttributes must be set for class: {parameters.GetType().Name}");
var request = new RestRequest(
$"v2/products/{productAttributes.Slug}/enqueue", Method.Post);
@@ -145,9 +145,9 @@ public override async Task ReqGetJobFromUrlAsync(string pollingUrl,
public override async Task ReqGetResultAsync(string inferenceId, CancellationToken ct = default)
{
- var productAttributes = typeof(TResponse).GetCustomAttribute();
+ var productAttributes = typeof(TResponse).GetCustomAttribute();
if (productAttributes == null)
- throw new Exception($"ProductAttributes must be set for class: {typeof(TResponse).Name}");
+ throw new MindeeException($"ProductAttributes must be set for class: {typeof(TResponse).Name}");
var request = new RestRequest(
$"v2/products/{productAttributes.Slug}/results/{inferenceId}");
Logger?.LogInformation("HTTP GET to {RequestResource}...", request.Resource);
diff --git a/src/Mindee/V2/Http/Settings.cs b/src/Mindee/V2/Http/Settings.cs
index 0e583a077..b56683ea1 100644
--- a/src/Mindee/V2/Http/Settings.cs
+++ b/src/Mindee/V2/Http/Settings.cs
@@ -1,7 +1,11 @@
+using System.Diagnostics.CodeAnalysis;
+
namespace Mindee.V2.Http
{
///
/// Mindee V2 settings.
///
+ [SuppressMessage("Minor Code Smell", "S2094:Classes should not be empty",
+ Justification = "Used as a base type for strict pattern matching in the public API.")]
public class Settings : V1.Http.Settings;
}
diff --git a/src/Mindee/V2/Parsing/DateTimeJsonConverter.cs b/src/Mindee/V2/Parsing/DateTimeJsonConverter.cs
index 85b6089f7..b2e99b3f9 100644
--- a/src/Mindee/V2/Parsing/DateTimeJsonConverter.cs
+++ b/src/Mindee/V2/Parsing/DateTimeJsonConverter.cs
@@ -25,7 +25,7 @@ public override DateTime Read(ref Utf8JsonReader reader, Type typeToConvert, Jso
}
// If the string ends with "Z", replace it with "+00:00" to represent UTC.
- if (dateString.EndsWith("Z"))
+ if (dateString.EndsWith("Z", StringComparison.Ordinal))
{
dateString = dateString.Substring(0, dateString.Length - 1) + "+00:00";
}
@@ -38,7 +38,7 @@ public override DateTime Read(ref Utf8JsonReader reader, Type typeToConvert, Jso
}
}
- return DateTime.Parse(dateString, null, DateTimeStyles.RoundtripKind).ToUniversalTime();
+ return DateTime.Parse(dateString, CultureInfo.InvariantCulture, DateTimeStyles.RoundtripKind).ToUniversalTime();
}
///
diff --git a/src/Mindee/V2/Parsing/Inference/BaseInference.cs b/src/Mindee/V2/Parsing/Inference/BaseInference.cs
index a27dc9701..470b22c81 100644
--- a/src/Mindee/V2/Parsing/Inference/BaseInference.cs
+++ b/src/Mindee/V2/Parsing/Inference/BaseInference.cs
@@ -1,4 +1,3 @@
-using System;
using System.Text;
using System.Text.Json.Serialization;
using Mindee.Parsing;
@@ -36,12 +35,7 @@ public abstract class BaseInference
public InferenceJob Job { get; set; }
///
- /// Type of the product's response.
- ///
- public virtual Type ResponseType { get; set; }
-
- ///
- ///
+ /// String representation of the inference.
///
///
public override string ToString()
diff --git a/src/Mindee/V2/Parsing/Inference/Field/DynamicField.cs b/src/Mindee/V2/Parsing/Inference/Field/DynamicField.cs
index 3d56872c3..d1472eeff 100644
--- a/src/Mindee/V2/Parsing/Inference/Field/DynamicField.cs
+++ b/src/Mindee/V2/Parsing/Inference/Field/DynamicField.cs
@@ -29,6 +29,7 @@ public enum FieldType
[JsonConverter(typeof(DynamicFieldJsonConverter))]
public class DynamicField
{
+#pragma warning disable S1104 // TODO: Remove this if applicable.
///
/// Value as list field.
///
@@ -48,7 +49,7 @@ public class DynamicField
/// The type of field.
///
public FieldType Type;
-
+#pragma warning restore S1104
///
/// Return the field class dynamically.
///
diff --git a/src/Mindee/V2/Parsing/Inference/Field/ListField.cs b/src/Mindee/V2/Parsing/Inference/Field/ListField.cs
index d349b56c8..c69d58839 100644
--- a/src/Mindee/V2/Parsing/Inference/Field/ListField.cs
+++ b/src/Mindee/V2/Parsing/Inference/Field/ListField.cs
@@ -10,10 +10,6 @@ namespace Mindee.V2.Parsing.Inference.Field
///
public class ListField : BaseField
{
- private List _objectItems;
-
- private List _simpleItems;
-
///
/// List field.
///
@@ -35,21 +31,18 @@ public List SimpleItems
{
get
{
- if (_simpleItems != null)
+ if (field != null)
{
- return _simpleItems;
+ return field;
}
- _simpleItems = new List();
- foreach (var item in Items)
+ field = [];
+ foreach (var item in Items.Where(item => item.SimpleField != null))
{
- if (item.SimpleField != null)
- {
- _simpleItems.Add(item.SimpleField);
- }
+ field.Add(item.SimpleField);
}
- return _simpleItems;
+ return field;
}
}
@@ -60,18 +53,18 @@ public List ObjectItems
{
get
{
- if (_objectItems != null)
+ if (field != null)
{
- return _objectItems;
+ return field;
}
- _objectItems = [];
+ field = [];
foreach (var item in Items.Where(item => item.ObjectField != null))
{
- _objectItems.Add(item.ObjectField);
+ field.Add(item.ObjectField);
}
- return _objectItems;
+ return field;
}
}
diff --git a/src/Mindee/V2/Product/Classification/ClassificationResponse.cs b/src/Mindee/V2/Product/Classification/ClassificationResponse.cs
index b3567af71..92dddbff3 100644
--- a/src/Mindee/V2/Product/Classification/ClassificationResponse.cs
+++ b/src/Mindee/V2/Product/Classification/ClassificationResponse.cs
@@ -6,11 +6,11 @@ namespace Mindee.V2.Product.Classification
///
/// Response for a classification utility inference.
///
- [ProductAttributes("classification")]
+ [Product("classification")]
public class ClassificationResponse : BaseResponse
{
///
- ///
+ /// Inference for a classification utility.
///
[JsonPropertyName("inference")]
public ClassificationInference Inference { get; set; }
diff --git a/src/Mindee/V2/Product/Classification/Params/ClassificationParameters.cs b/src/Mindee/V2/Product/Classification/Params/ClassificationParameters.cs
index daeb9f649..4603f48de 100644
--- a/src/Mindee/V2/Product/Classification/Params/ClassificationParameters.cs
+++ b/src/Mindee/V2/Product/Classification/Params/ClassificationParameters.cs
@@ -6,7 +6,7 @@ namespace Mindee.V2.Product.Classification.Params
///
/// Parameters for a classification utility inference.
///
- [ProductAttributes("classification")]
+ [Product("classification")]
public class ClassificationParameters : BaseProductParameters
{
///
diff --git a/src/Mindee/V2/Product/Crop/CropResponse.cs b/src/Mindee/V2/Product/Crop/CropResponse.cs
index 1e876fe1a..e2733c164 100644
--- a/src/Mindee/V2/Product/Crop/CropResponse.cs
+++ b/src/Mindee/V2/Product/Crop/CropResponse.cs
@@ -6,7 +6,7 @@ namespace Mindee.V2.Product.Crop
///
/// Represent a crop response from Mindee V2 API.
///
- [ProductAttributes("crop")]
+ [Product("crop")]
public class CropResponse : BaseResponse
{
///
diff --git a/src/Mindee/V2/Product/Crop/Params/CropParameters.cs b/src/Mindee/V2/Product/Crop/Params/CropParameters.cs
index 2cd88d32e..1576491e0 100644
--- a/src/Mindee/V2/Product/Crop/Params/CropParameters.cs
+++ b/src/Mindee/V2/Product/Crop/Params/CropParameters.cs
@@ -6,7 +6,7 @@ namespace Mindee.V2.Product.Crop.Params
///
/// Parameters accepted by the crop utility v2 endpoint.
///
- [ProductAttributes("crop")]
+ [Product("crop")]
public class CropParameters : BaseProductParameters
{
///
diff --git a/src/Mindee/V2/Product/Extraction/ExtractionResponse.cs b/src/Mindee/V2/Product/Extraction/ExtractionResponse.cs
index a7134a9ca..9012bdea6 100644
--- a/src/Mindee/V2/Product/Extraction/ExtractionResponse.cs
+++ b/src/Mindee/V2/Product/Extraction/ExtractionResponse.cs
@@ -6,7 +6,7 @@ namespace Mindee.V2.Product.Extraction
///
/// Response for an extraction inference.
///
- [ProductAttributes("extraction")]
+ [Product("extraction")]
public class ExtractionResponse : BaseResponse
{
///
diff --git a/src/Mindee/V2/Product/Extraction/Params/ExtractionParameters.cs b/src/Mindee/V2/Product/Extraction/Params/ExtractionParameters.cs
index 9c785438b..188396c1e 100644
--- a/src/Mindee/V2/Product/Extraction/Params/ExtractionParameters.cs
+++ b/src/Mindee/V2/Product/Extraction/Params/ExtractionParameters.cs
@@ -9,7 +9,7 @@ namespace Mindee.V2.Product.Extraction.Params
///
/// Parameters for an extraction inference.
///
- [ProductAttributes("extraction")]
+ [Product("extraction")]
public class ExtractionParameters : BaseProductParameters
{
///
diff --git a/src/Mindee/V2/Product/Ocr/OcrResponse.cs b/src/Mindee/V2/Product/Ocr/OcrResponse.cs
index 81f80160f..efe87b77a 100644
--- a/src/Mindee/V2/Product/Ocr/OcrResponse.cs
+++ b/src/Mindee/V2/Product/Ocr/OcrResponse.cs
@@ -6,7 +6,7 @@ namespace Mindee.V2.Product.Ocr
///
/// Response for an OCR utility inference.
///
- [ProductAttributes("ocr")]
+ [Product("ocr")]
public class OcrResponse : BaseResponse
{
///
diff --git a/src/Mindee/V2/Product/Ocr/Params/OcrParameters.cs b/src/Mindee/V2/Product/Ocr/Params/OcrParameters.cs
index 371669a34..3557c9257 100644
--- a/src/Mindee/V2/Product/Ocr/Params/OcrParameters.cs
+++ b/src/Mindee/V2/Product/Ocr/Params/OcrParameters.cs
@@ -6,7 +6,7 @@ namespace Mindee.V2.Product.Ocr.Params
///
/// Parameters accepted by the OCR utility v2 endpoint.
///
- [ProductAttributes("ocr")]
+ [Product("ocr")]
public class OcrParameters : BaseProductParameters
{
diff --git a/src/Mindee/V2/Product/ProductAttributes.cs b/src/Mindee/V2/Product/ProductAttribute.cs
similarity index 76%
rename from src/Mindee/V2/Product/ProductAttributes.cs
rename to src/Mindee/V2/Product/ProductAttribute.cs
index 5a1fdb1af..78e1edf2e 100644
--- a/src/Mindee/V2/Product/ProductAttributes.cs
+++ b/src/Mindee/V2/Product/ProductAttribute.cs
@@ -6,17 +6,17 @@ namespace Mindee.V2.Product
/// Attribute to specify various product metadata.
///
[AttributeUsage(AttributeTargets.Class, Inherited = false)]
- public sealed class ProductAttributes : Attribute
+ public sealed class ProductAttribute : Attribute
{
///
/// URL slug of the product.
///
- public string Slug;
+ public string Slug { get; }
///
/// Attribute to specify various product metadata.
///
- public ProductAttributes(string slug)
+ public ProductAttribute(string slug)
{
Slug = slug;
}
diff --git a/src/Mindee/V2/Product/Split/Params/SplitParameters.cs b/src/Mindee/V2/Product/Split/Params/SplitParameters.cs
index 83ac55ca0..e9d1c7f46 100644
--- a/src/Mindee/V2/Product/Split/Params/SplitParameters.cs
+++ b/src/Mindee/V2/Product/Split/Params/SplitParameters.cs
@@ -6,7 +6,7 @@ namespace Mindee.V2.Product.Split.Params
///
/// Parameters accepted by the split utility v2 endpoint.
///
- [ProductAttributes("split")]
+ [Product("split")]
public class SplitParameters : BaseProductParameters
{
///
diff --git a/src/Mindee/V2/Product/Split/SplitResponse.cs b/src/Mindee/V2/Product/Split/SplitResponse.cs
index 270c48293..47cc8e862 100644
--- a/src/Mindee/V2/Product/Split/SplitResponse.cs
+++ b/src/Mindee/V2/Product/Split/SplitResponse.cs
@@ -6,7 +6,7 @@ namespace Mindee.V2.Product.Split
///
/// Represent a split response from Mindee V2 API.
///
- [ProductAttributes("split")]
+ [Product("split")]
public class SplitResponse : BaseResponse
{
///
diff --git a/tests/Mindee.IntegrationTests/V1/ClientTest.cs b/tests/Mindee.IntegrationTests/V1/ClientTest.cs
index 7ca6d6302..d165ece0c 100644
--- a/tests/Mindee.IntegrationTests/V1/ClientTest.cs
+++ b/tests/Mindee.IntegrationTests/V1/ClientTest.cs
@@ -1,4 +1,4 @@
-using Mindee.Exceptions;
+using System.Diagnostics.CodeAnalysis;
using Mindee.Input;
using Mindee.V1;
using Mindee.V1.ClientOptions;
@@ -36,7 +36,7 @@ public async Task Parse_File_Standard_MultiplePages_MustSucceed()
Assert.Null(response.Document.Ocr);
Assert.NotNull(response.Document.Inference);
Assert.NotNull(response.Document.Inference.Prediction);
- Assert.Null(response.Document.Inference.Pages.First().Extras);
+ Assert.Null(response.Document.Inference.Pages[0].Extras);
Assert.Equal(2, response.Document.Inference.Pages.Count);
}
@@ -52,7 +52,7 @@ public async Task Parse_File_Standard_SinglePage_MustSucceed()
Assert.NotNull(response.Document.Inference);
Assert.NotNull(response.Document.Inference.Prediction);
Assert.Single(response.Document.Inference.Pages);
- Assert.Null(response.Document.Inference.Pages.First().Extras);
+ Assert.Null(response.Document.Inference.Pages[0].Extras);
}
[Fact(Timeout = 180000)]
@@ -69,7 +69,7 @@ public async Task Parse_Url_Standard_SinglePage_MustSucceed()
Assert.NotNull(response.Document.Inference);
Assert.NotNull(response.Document.Inference.Prediction);
Assert.Single(response.Document.Inference.Pages);
- Assert.Null(response.Document.Inference.Pages.First().Extras);
+ Assert.Null(response.Document.Inference.Pages[0].Extras);
}
[Fact(Timeout = 180000)]
@@ -92,8 +92,8 @@ public async Task Parse_File_Cropper_MustSucceed()
Assert.NotNull(response.Document.Inference);
Assert.NotNull(response.Document.Inference.Prediction);
Assert.Single(response.Document.Inference.Pages);
- Assert.NotNull(response.Document.Inference.Pages.First().Extras.Cropper);
- Assert.Single(response.Document.Inference.Pages.First().Extras.Cropper.Cropping);
+ Assert.NotNull(response.Document.Inference.Pages[0].Extras.Cropper);
+ Assert.Single(response.Document.Inference.Pages[0].Extras.Cropper.Cropping);
}
[Fact(Timeout = 180000)]
@@ -107,11 +107,11 @@ public async Task Parse_File_Standard_AllWords_MustSucceed()
Assert.Equal(201, response.ApiRequest.StatusCode);
Assert.NotNull(response.Document.Ocr.ToString());
Assert.Single(response.Document.Ocr.MvisionV1.Pages);
- Assert.NotEmpty(response.Document.Ocr.MvisionV1.Pages.First().AllWords);
+ Assert.NotEmpty(response.Document.Ocr.MvisionV1.Pages[0].AllWords);
Assert.NotNull(response.Document.Inference);
Assert.NotNull(response.Document.Inference.Prediction);
Assert.Single(response.Document.Inference.Pages);
- Assert.Null(response.Document.Inference.Pages.First().Extras);
+ Assert.Null(response.Document.Inference.Pages[0].Extras);
}
[Fact(Timeout = 180000)]
@@ -123,9 +123,9 @@ public async Task Parse_File_Standard_FullText_MustSucceed()
Assert.NotNull(response);
Assert.Equal("success", response.ApiRequest.Status);
Assert.Equal(200, response.ApiRequest.StatusCode);
- Assert.NotNull(response.Document.Inference.Pages.First().Extras.FullTextOcr);
+ Assert.NotNull(response.Document.Inference.Pages[0].Extras.FullTextOcr);
Assert.NotNull(response.Document.Inference.Extras.FullTextOcr);
- Assert.Equal(response.Document.Inference.Pages.First().Extras.FullTextOcr.Content,
+ Assert.Equal(response.Document.Inference.Pages[0].Extras.FullTextOcr.Content,
response.Document.Inference.Extras.FullTextOcr);
Assert.True(response.Document.Inference.Extras.FullTextOcr.Replace(" ", "").Length > 100);
}
@@ -142,12 +142,12 @@ public async Task Parse_File_Standard_AllWords_And_Cropper_MustSucceed()
Assert.Equal(201, response.ApiRequest.StatusCode);
Assert.NotNull(response.Document.Ocr);
Assert.Single(response.Document.Ocr.MvisionV1.Pages);
- Assert.NotEmpty(response.Document.Ocr.MvisionV1.Pages.First().AllWords);
+ Assert.NotEmpty(response.Document.Ocr.MvisionV1.Pages[0].AllWords);
Assert.NotNull(response.Document.Inference);
Assert.NotNull(response.Document.Inference.Prediction);
Assert.Single(response.Document.Inference.Pages);
- Assert.NotNull(response.Document.Inference.Pages.First().Extras.Cropper);
- Assert.Single(response.Document.Inference.Pages.First().Extras.Cropper.Cropping);
+ Assert.NotNull(response.Document.Inference.Pages[0].Extras.Cropper);
+ Assert.Single(response.Document.Inference.Pages[0].Extras.Cropper.Cropping);
}
[Fact(Timeout = 180000)]
@@ -312,6 +312,8 @@ await Assert.ThrowsAsync(() =>
_client.ParseQueuedAsync(endpoint, jobId));
}
+ [SuppressMessage("Minor Code Smell", "SCS0005: Weak random number generator.",
+ Justification = "Making this use proper RNG is really not worth the candle here...")]
private static string RandomString(int length)
{
var random = new Random();
diff --git a/tests/Mindee.IntegrationTests/V2/ClientTest.cs b/tests/Mindee.IntegrationTests/V2/ClientTest.cs
index ad2f8f4aa..e1dd3324f 100644
--- a/tests/Mindee.IntegrationTests/V2/ClientTest.cs
+++ b/tests/Mindee.IntegrationTests/V2/ClientTest.cs
@@ -1,3 +1,4 @@
+using System.Diagnostics.CodeAnalysis;
using Mindee.Input;
using Mindee.V2;
using Mindee.V2.ClientOptions;
@@ -44,6 +45,8 @@ private static void AssertActiveOptions(
[InlineData(true, false, true)]
[InlineData(false, true, true)]
[InlineData(true, true, true)]
+ [SuppressMessage("Minor Code Smell", "S125: Remove this commented out code.",
+ Justification = "Keeping this since it might change in the future.")]
public async Task Parse_File_Empty_MultiplePages_ParameterVariations_MustSucceed(
bool rawText, bool polygon, bool confidence)
{
@@ -174,7 +177,7 @@ public async Task FailedWebhook_Retrieve_Job_MustSucceed()
Assert.Equal(_findocModelId, job.ModelId);
Assert.NotNull(job.Webhooks);
- var webhook = job.Webhooks.First();
+ var webhook = job.Webhooks[0];
Assert.NotNull(webhook);
Assert.Equal(webhookId, webhook.Id);
Assert.Equal("Processing", webhook.Status);
@@ -184,7 +187,7 @@ public async Task FailedWebhook_Retrieve_Job_MustSucceed()
await Task.Delay(1000);
var loopJobResponse = await _client.GetJobFromUrlAsync(jobUrl);
- var loopWebhook = loopJobResponse.Job.Webhooks.First();
+ var loopWebhook = loopJobResponse.Job.Webhooks[0];
Assert.NotNull(loopWebhook);
Assert.Equal(webhookId, loopWebhook.Id);
@@ -226,6 +229,9 @@ public async Task NotFound_Job_MustThrowError()
}
[Fact(Timeout = 180000)]
+ [SuppressMessage("Minor Code Smell", "S4144: Update this method so that its implementation " +
+ "is not identical to 'NotFound_Job_MustThrowError'.",
+ Justification = "More of a sanity test.")]
public async Task NotFound_Inference_MustThrowError()
{
var ex = await Assert.ThrowsAsync(() =>
diff --git a/tests/Mindee.IntegrationTests/V2/FileOperations/CropTest.cs b/tests/Mindee.IntegrationTests/V2/FileOperations/CropTest.cs
index 83f72d848..c3f0c723a 100644
--- a/tests/Mindee.IntegrationTests/V2/FileOperations/CropTest.cs
+++ b/tests/Mindee.IntegrationTests/V2/FileOperations/CropTest.cs
@@ -10,7 +10,7 @@ namespace Mindee.IntegrationTests.V2.FileOperations
{
[Trait("Category", "V2")]
[Trait("Category", "FileOperations")]
- public class CropTest : IDisposable
+ public sealed class CropTest : IDisposable
{
private readonly string? _cropModelId;
private readonly string? _findocModelId;
@@ -40,7 +40,7 @@ public void Dispose()
if (File.Exists(file2)) File.Delete(file2);
}
- private void CheckFindocReturn(ExtractionResponse findocResponse)
+ private static void CheckFindocReturn(ExtractionResponse findocResponse)
{
Assert.True(findocResponse.Inference.Model.Id.Length > 0);
diff --git a/tests/Mindee.IntegrationTests/V2/FileOperations/SplitTest.cs b/tests/Mindee.IntegrationTests/V2/FileOperations/SplitTest.cs
index 1801d90d1..615b2623b 100644
--- a/tests/Mindee.IntegrationTests/V2/FileOperations/SplitTest.cs
+++ b/tests/Mindee.IntegrationTests/V2/FileOperations/SplitTest.cs
@@ -10,7 +10,7 @@ namespace Mindee.IntegrationTests.V2.FileOperations
{
[Trait("Category", "V2")]
[Trait("Category", "FileOperations")]
- public class SplitTest : IDisposable
+ public sealed class SplitTest : IDisposable
{
private readonly string? _splitModelId;
private readonly string? _findocModelId;
@@ -40,7 +40,7 @@ public void Dispose()
if (File.Exists(file2)) File.Delete(file2);
}
- private void CheckFindocReturn(ExtractionResponse findocResponse)
+ private static void CheckFindocReturn(ExtractionResponse findocResponse)
{
Assert.True(findocResponse.Inference.Model.Id.Length > 0);
diff --git a/tests/Mindee.UnitTests/Extraction/PdfExtractorTest.cs b/tests/Mindee.UnitTests/Extraction/PdfExtractorTest.cs
index a62072732..0891ac973 100644
--- a/tests/Mindee.UnitTests/Extraction/PdfExtractorTest.cs
+++ b/tests/Mindee.UnitTests/Extraction/PdfExtractorTest.cs
@@ -11,7 +11,7 @@ public class PdfExtractorTest
[Fact]
public void GivenAnImage_ShouldExtractAPDF()
{
- var jpg = Constants.V1ProductDir + "invoices/default_sample.jpg";
+ const string jpg = Constants.V1ProductDir + "invoices/default_sample.jpg";
var localInput = new LocalInputSource(jpg);
Assert.False(localInput.IsPdf());
var extractor = new PdfExtractor(localInput);
@@ -57,7 +57,7 @@ public async Task GivenAPDF_ShouldExtractInvoicesStrict()
Assert.Equal(4, extractedPDFStrict[1].GetPageCount());
}
- private async Task> GetPrediction()
+ private static async Task> GetPrediction()
{
const string fileName = Constants.V1ProductDir + "invoice_splitter/response_v1/complete.json";
var mindeeAPi = UnitTestBase.GetMindeeApi(fileName);
diff --git a/tests/Mindee.UnitTests/Geometry/PolygonJsonConverterTest.cs b/tests/Mindee.UnitTests/Geometry/PolygonJsonConverterTest.cs
index bcdf9d0c9..af9d141f3 100644
--- a/tests/Mindee.UnitTests/Geometry/PolygonJsonConverterTest.cs
+++ b/tests/Mindee.UnitTests/Geometry/PolygonJsonConverterTest.cs
@@ -5,32 +5,25 @@
namespace Mindee.UnitTests.Geometry
{
[Trait("Category", "Geometry - JSON converter")]
- public class PolygonJsonConverterTest
+ public sealed class PolygonJsonConverterTest
{
[Fact]
public async Task Deserialize()
{
- using (var file = new FileInfo("Resources/geometry/polygon.json").OpenRead())
- {
- var fake = await JsonSerializer.DeserializeAsync(file);
+ using var file = new FileInfo("Resources/geometry/polygon.json").OpenRead();
+ var fake = await JsonSerializer.DeserializeAsync(file);
- Assert.NotNull(fake?.Polygon);
- Assert.Equal(4, fake.Polygon.Count());
- Assert.Equal(0.238, fake.Polygon.First().X);
- Assert.Equal(0.161, fake.Polygon.Last().Y);
- }
+ Assert.NotNull(fake?.Polygon);
+ Assert.Equal(4, fake.Polygon.Count);
+ Assert.Equal(0.238, fake.Polygon[0].X);
+ Assert.Equal(0.161, fake.Polygon[fake.Polygon.Count - 1].Y);
}
- public class Fake
+ public class Fake(Polygon polygon)
{
- public Fake(Polygon polygon)
- {
- Polygon = polygon;
- }
-
[JsonPropertyName("polygon")]
[JsonConverter(typeof(PolygonJsonConverter))]
- public Polygon Polygon { get; }
+ public Polygon Polygon { get; } = polygon;
}
}
}
diff --git a/tests/Mindee.UnitTests/Input/LocalInputSourceTest.cs b/tests/Mindee.UnitTests/Input/LocalInputSourceTest.cs
index 699b8be37..1ee62e9b9 100644
--- a/tests/Mindee.UnitTests/Input/LocalInputSourceTest.cs
+++ b/tests/Mindee.UnitTests/Input/LocalInputSourceTest.cs
@@ -291,10 +291,9 @@ public void Pdf_Compress_With_Text_Does_Not_Compress()
public void ApplyPageOperation_KeepFirstPage_Should_Work()
{
var inputSource = new LocalInputSource(Constants.RootDir + "file_types/pdf/multipage.pdf");
- var pageOptions = new PageOptions(
- operation: PageOptionsOperation.KeepOnly
- , pageIndexes: new short[] { 0 });
- inputSource.ApplyPageOptions(pageOptions);
+ var pageOptions = new PageOptions(pageIndexes: [0], operation: PageOptionsOperation.KeepOnly);
+ var exception = Record.Exception(() => inputSource.ApplyPageOptions(pageOptions));
+ Assert.Null(exception);
}
[Fact]
@@ -306,10 +305,11 @@ public void ApplyPageOperation_Keep5FirstPages_Should_Work()
var pageOptions = new PageOptions(
operation: PageOptionsOperation.Remove,
onMinPages: 10,
- pageIndexes: new short[] { 0, 1, 2, 3, 4 }
+ pageIndexes: [0, 1, 2, 3, 4]
);
- initialWithText.ApplyPageOptions(pageOptions);
+ var exception = Record.Exception(() => initialWithText.ApplyPageOptions(pageOptions));
+ Assert.Null(exception);
}
[Fact]
@@ -322,9 +322,11 @@ public void ApplyPageOperation_Keep3VariousPages_Should_Work()
var pageOptions = new PageOptions(
operation: PageOptionsOperation.KeepOnly,
onMinPages: 2,
- pageIndexes: new short[] { 0, -2, -1 }
+ pageIndexes: [0, -2, -1]
);
- initialWithText.ApplyPageOptions(pageOptions);
+
+ var exception = Record.Exception(() => initialWithText.ApplyPageOptions(pageOptions));
+ Assert.Null(exception);
}
}
}
diff --git a/tests/Mindee.UnitTests/V1/Parsing/Common/CropperTest.cs b/tests/Mindee.UnitTests/V1/Parsing/Common/CropperTest.cs
index 3aea4dff6..96c40919e 100644
--- a/tests/Mindee.UnitTests/V1/Parsing/Common/CropperTest.cs
+++ b/tests/Mindee.UnitTests/V1/Parsing/Common/CropperTest.cs
@@ -15,10 +15,10 @@ public async Task Should_GetCropperResult()
Assert.NotNull(response);
Assert.NotEmpty(response.Document.Inference.Pages);
- var page = response.Document.Inference.Pages.First();
+ var page = response.Document.Inference.Pages[0];
Assert.NotNull(page.Extras);
var cropping = page.Extras.Cropper.Cropping;
- Assert.Equal("Polygon with 24 points.", cropping.First().ToString());
+ Assert.Equal("Polygon with 24 points.", cropping[0].ToString());
}
}
}
diff --git a/tests/Mindee.UnitTests/V1/Parsing/Common/FullTextOcrTest.cs b/tests/Mindee.UnitTests/V1/Parsing/Common/FullTextOcrTest.cs
index 20c7d358f..3f1066dcd 100644
--- a/tests/Mindee.UnitTests/V1/Parsing/Common/FullTextOcrTest.cs
+++ b/tests/Mindee.UnitTests/V1/Parsing/Common/FullTextOcrTest.cs
@@ -9,7 +9,7 @@ public class FullTextOcrTest
{
private static readonly JsonSerializerOptions JsonOptions = new() { PropertyNameCaseInsensitive = true };
- private Inference LoadInference()
+ private static Inference LoadInference()
{
var json = File.ReadAllText(Constants.V1RootDir + "extras/full_text_ocr/complete.json");
var prediction = JsonSerializer.Deserialize>(json, JsonOptions);
@@ -21,16 +21,11 @@ private Inference LoadInfe
return prediction.Document.Inference;
}
- private List> LoadPages()
+ private static List> LoadPages()
{
var json = File.ReadAllText(Constants.V1RootDir + "extras/full_text_ocr/complete.json");
var prediction = JsonSerializer.Deserialize>(json, JsonOptions);
- if (prediction == null)
- {
- throw new Exception();
- }
-
- return prediction.Document.Inference.Pages;
+ return prediction == null ? throw new Exception() : prediction.Document.Inference.Pages;
}
[Fact]
diff --git a/tests/Mindee.UnitTests/V1/Parsing/Common/OcrTest.cs b/tests/Mindee.UnitTests/V1/Parsing/Common/OcrTest.cs
index 997ab62f2..62b726944 100644
--- a/tests/Mindee.UnitTests/V1/Parsing/Common/OcrTest.cs
+++ b/tests/Mindee.UnitTests/V1/Parsing/Common/OcrTest.cs
@@ -7,7 +7,7 @@ namespace Mindee.UnitTests.V1.Parsing.Common
[Trait("Category", "OCR")]
public class OcrTest
{
- private async Task LoadOcr()
+ private static async Task LoadOcr()
{
var response = await JsonSerializer.DeserializeAsync>(
new FileInfo(Constants.V1RootDir + "extras/ocr/complete.json").OpenRead());
diff --git a/tests/Mindee.UnitTests/V1/Product/Cropper/CropperV1Test.cs b/tests/Mindee.UnitTests/V1/Product/Cropper/CropperV1Test.cs
index dab462a75..3b5bcfd5f 100644
--- a/tests/Mindee.UnitTests/V1/Product/Cropper/CropperV1Test.cs
+++ b/tests/Mindee.UnitTests/V1/Product/Cropper/CropperV1Test.cs
@@ -10,7 +10,7 @@ public class CropperV1Test
public async Task Predict_CheckEmpty()
{
var response = await GetPrediction("empty");
- var pagePrediction = response.Document.Inference.Pages.First().Prediction;
+ var pagePrediction = response.Document.Inference.Pages[0].Prediction;
Assert.Empty(pagePrediction.Cropping);
}
diff --git a/tests/Mindee.UnitTests/V1/Product/FinancialDocument/FinancialDocumentV1Test.cs b/tests/Mindee.UnitTests/V1/Product/FinancialDocument/FinancialDocumentV1Test.cs
index bbb405700..08a582bb1 100644
--- a/tests/Mindee.UnitTests/V1/Product/FinancialDocument/FinancialDocumentV1Test.cs
+++ b/tests/Mindee.UnitTests/V1/Product/FinancialDocument/FinancialDocumentV1Test.cs
@@ -57,7 +57,7 @@ public async Task Predict_Invoice_FirstPage_CheckSummary()
File.ReadAllText(Constants.V1ProductDir + "financial_document/response_v1/summary_page0_invoice.rst");
Assert.Equal(
expected,
- response.Document.Inference.Pages.First().ToString());
+ response.Document.Inference.Pages[0].ToString());
}
[Fact]
@@ -79,7 +79,7 @@ public async Task Predict_Receipt_FirstPage_CheckSummary()
File.ReadAllText(Constants.V1ProductDir + "financial_document/response_v1/summary_page0_receipt.rst");
Assert.Equal(
expected,
- response.Document.Inference.Pages.First().ToString());
+ response.Document.Inference.Pages[0].ToString());
}
private static async Task> GetPrediction(string name)
diff --git a/tests/Mindee.UnitTests/V1/Product/Fr/IdCard/IdCardV1Test.cs b/tests/Mindee.UnitTests/V1/Product/Fr/IdCard/IdCardV1Test.cs
index fd56e6bad..919d6672e 100644
--- a/tests/Mindee.UnitTests/V1/Product/Fr/IdCard/IdCardV1Test.cs
+++ b/tests/Mindee.UnitTests/V1/Product/Fr/IdCard/IdCardV1Test.cs
@@ -22,7 +22,7 @@ public async Task Predict_CheckEmpty()
Assert.Null(docPrediction.Gender.Value);
Assert.Null(docPrediction.Mrz1.Value);
Assert.Null(docPrediction.Mrz2.Value);
- var pagePrediction = response.Document.Inference.Pages.First().Prediction;
+ var pagePrediction = response.Document.Inference.Pages[0].Prediction;
Assert.IsType(pagePrediction.DocumentSide);
}
diff --git a/tests/Mindee.UnitTests/V1/Product/Fr/IdCard/IdCardV2Test.cs b/tests/Mindee.UnitTests/V1/Product/Fr/IdCard/IdCardV2Test.cs
index 9f5440763..a1892c0a8 100644
--- a/tests/Mindee.UnitTests/V1/Product/Fr/IdCard/IdCardV2Test.cs
+++ b/tests/Mindee.UnitTests/V1/Product/Fr/IdCard/IdCardV2Test.cs
@@ -27,7 +27,7 @@ public async Task Predict_CheckEmpty()
Assert.Null(docPrediction.Mrz3.Value);
Assert.Null(docPrediction.IssueDate.Value);
Assert.Null(docPrediction.Authority.Value);
- var pagePrediction = response.Document.Inference.Pages.First().Prediction;
+ var pagePrediction = response.Document.Inference.Pages[0].Prediction;
Assert.IsType(pagePrediction.DocumentType);
Assert.IsType(pagePrediction.DocumentSide);
}
diff --git a/tests/Mindee.UnitTests/V1/Product/Generated/GeneratedV1Test.cs b/tests/Mindee.UnitTests/V1/Product/Generated/GeneratedV1Test.cs
index e2834cf39..51b8ab3a2 100644
--- a/tests/Mindee.UnitTests/V1/Product/Generated/GeneratedV1Test.cs
+++ b/tests/Mindee.UnitTests/V1/Product/Generated/GeneratedV1Test.cs
@@ -31,7 +31,7 @@ public async Task AsyncPredict_WhenEmpty_MustHaveValidProperties()
}
else
{
- Assert.Null(field.Value.First()["value"].GetString());
+ Assert.Null(field.Value[0]["value"].GetString());
}
}
}
@@ -46,22 +46,22 @@ public async Task AsyncPredict_WhenComplete_MustHaveValidProperties()
// Direct access to the dictionary
Assert.False(features["address"].IsList);
- Assert.Equal("AVDA DE MADRID S-N MADRID MADRID", features["address"].First()["value"].GetString());
+ Assert.Equal("AVDA DE MADRID S-N MADRID MADRID", features["address"][0]["value"].GetString());
Assert.False(features["birth_date"].IsList);
- Assert.Equal("1980-01-01", features["birth_date"].First()["value"].GetString());
+ Assert.Equal("1980-01-01", features["birth_date"][0]["value"].GetString());
Assert.False(features["birth_place"].IsList);
- Assert.Equal("MADRID", features["birth_place"].First()["value"].GetString());
+ Assert.Equal("MADRID", features["birth_place"][0]["value"].GetString());
Assert.False(features["country_of_issue"].IsList);
- Assert.Equal("ESP", features["country_of_issue"].First()["value"].GetString());
+ Assert.Equal("ESP", features["country_of_issue"][0]["value"].GetString());
Assert.False(features["document_number"].IsList);
- Assert.Equal("99999999R", features["document_number"].First()["value"].GetString());
+ Assert.Equal("99999999R", features["document_number"][0]["value"].GetString());
Assert.True(features["given_names"].IsList);
- Assert.Equal("CARMEN", features["given_names"].First()["value"].GetString());
+ Assert.Equal("CARMEN", features["given_names"][0]["value"].GetString());
Assert.True(features["surnames"].IsList);
Assert.Equal("ESPAÑOLA", features["surnames"][0]["value"].GetString());
@@ -100,15 +100,15 @@ public async Task SyncPredict_WhenComplete_MustHaveValidProperties()
// Direct access to the dictionary
var customerName = features["customer_name"];
Assert.False(customerName.IsList);
- Assert.Equal("JIRO DOI", customerName.First()["value"].ToString());
- Assert.Equal("JIRO DOI", customerName.First().TryGetString("value"));
- Assert.Equal("Jiro Doi", customerName.First()["raw_value"].ToString());
- Assert.Equal("Jiro Doi", customerName.First()["raw_value"].GetString());
- Assert.Equal(0.87, customerName.First()["confidence"].GetDouble());
- Assert.Equal(1, customerName.First()["page_id"].GetInt16());
+ Assert.Equal("JIRO DOI", customerName[0]["value"].ToString());
+ Assert.Equal("JIRO DOI", customerName[0].TryGetString("value"));
+ Assert.Equal("Jiro Doi", customerName[0]["raw_value"].ToString());
+ Assert.Equal("Jiro Doi", customerName[0]["raw_value"].GetString());
+ Assert.Equal(0.87, customerName[0]["confidence"].GetDouble());
+ Assert.Equal(1, customerName[0]["page_id"].GetInt16());
Assert.Equal(
"((0.037,0.284), (0.099,0.284), (0.099,0.297), (0.037,0.297))",
- customerName.First().TryGetPolygon("polygon").ToString());
+ customerName[0].TryGetPolygon("polygon").ToString());
// Access as a StringField with raw_value
var customerNameField = customerName.AsStringField();
@@ -146,7 +146,7 @@ public async Task SyncPredict_WhenComplete_MustHaveValidProperties()
Assert.NotNull(lineItem["description"].GetString());
}
- var firstLineItem = lineItems.First();
+ var firstLineItem = lineItems[0];
Assert.Equal(0.84, firstLineItem["confidence"].GetDouble());
Assert.Equal("S)BOIE 5X500 FEUILLES A4", firstLineItem["description"].GetString());
Assert.Equal(0, firstLineItem["page_id"].GetInt16());
@@ -160,7 +160,7 @@ public async Task ReceiptsItemsClassifierPredict_WhenComplete_MustHaveValidIntFi
{
var response = await GetReceiptsItemsClassifierPrediction();
var features = response.Document.Inference.Prediction.Fields;
- Assert.Equal(1.0, features["line_items"].First()["quantity"].GetDouble());
+ Assert.Equal(1.0, features["line_items"][0]["quantity"].GetDouble());
}
[Fact]
diff --git a/tests/Mindee.UnitTests/V1/Product/Receipt/ReceiptV4Test.cs b/tests/Mindee.UnitTests/V1/Product/Receipt/ReceiptV4Test.cs
index fecad64c4..722c4198e 100644
--- a/tests/Mindee.UnitTests/V1/Product/Receipt/ReceiptV4Test.cs
+++ b/tests/Mindee.UnitTests/V1/Product/Receipt/ReceiptV4Test.cs
@@ -23,7 +23,7 @@ public async Task Predict_CheckSummary_WithMultiplePages()
var expected = File.ReadAllText(Constants.V1ProductDir + "expense_receipts/response_v4/summary_page0.rst");
Assert.Equal(
expected,
- response.Document.Inference.Pages.First().ToString());
+ response.Document.Inference.Pages[0].ToString());
}
[Fact]
@@ -31,8 +31,8 @@ public async Task Predict_MustSuccessForCategory()
{
var response = await GetPrediction();
- Assert.Equal(0.94, response.Document.Inference.Pages.First().Prediction.Category.Confidence);
- Assert.Equal("food", response.Document.Inference.Pages.First().Prediction.Category.Value);
+ Assert.Equal(0.94, response.Document.Inference.Pages[0].Prediction.Category.Confidence);
+ Assert.Equal("food", response.Document.Inference.Pages[0].Prediction.Category.Value);
}
[Fact]
@@ -40,9 +40,9 @@ public async Task Predict_MustSuccessForDate()
{
var response = await GetPrediction();
- Assert.Equal(0.99, response.Document.Inference.Pages.First().Prediction.Date.Confidence);
- Assert.Equal(0, response.Document.Inference.Pages.First().Id);
- Assert.Equal("2014-07-07", response.Document.Inference.Pages.First().Prediction.Date.Value);
+ Assert.Equal(0.99, response.Document.Inference.Pages[0].Prediction.Date.Confidence);
+ Assert.Equal(0, response.Document.Inference.Pages[0].Id);
+ Assert.Equal("2014-07-07", response.Document.Inference.Pages[0].Prediction.Date.Value);
}
[Fact]
@@ -50,21 +50,21 @@ public async Task Predict_MustSuccessForTime()
{
var response = await GetPrediction();
- Assert.Equal(0.99, response.Document.Inference.Pages.First().Prediction.Time.Confidence);
- Assert.Equal(0, response.Document.Inference.Pages.First().Id);
- Assert.Equal("20:20", response.Document.Inference.Pages.First().Prediction.Time.Value);
+ Assert.Equal(0.99, response.Document.Inference.Pages[0].Prediction.Time.Confidence);
+ Assert.Equal(0, response.Document.Inference.Pages[0].Id);
+ Assert.Equal("20:20", response.Document.Inference.Pages[0].Prediction.Time.Value);
Assert.Equal(new List>
{
new() { 0.635, 0.142 }, new() { 0.778, 0.142 }, new() { 0.778, 0.168 }, new() { 0.635, 0.168 }
}
- , response.Document.Inference.Pages.First().Prediction.Time.Polygon);
+ , response.Document.Inference.Pages[0].Prediction.Time.Polygon);
}
[Fact]
public async Task Predict_WithReceiptData_MustSuccessForOrientation()
{
var response = await GetPrediction();
- Assert.Equal(0, response.Document.Inference.Pages.First().Orientation.Value);
+ Assert.Equal(0, response.Document.Inference.Pages[0].Orientation.Value);
}
[Fact]
@@ -74,25 +74,25 @@ public async Task Predict_WithCropping_MustSuccess()
var mindeeAPi = UnitTestBase.GetMindeeApi(fileName);
var response = await mindeeAPi.PredictPostAsync(UnitTestBase.GetFakePredictParameter());
- Assert.NotNull(response.Document.Inference.Pages.First().Extras.Cropper);
- Assert.Single(response.Document.Inference.Pages.First().Extras.Cropper.Cropping);
+ Assert.NotNull(response.Document.Inference.Pages[0].Extras.Cropper);
+ Assert.Single(response.Document.Inference.Pages[0].Extras.Cropper.Cropping);
Assert.Equal(new List>
{
new() { 0.057, 0.008 }, new() { 0.846, 0.008 }, new() { 0.846, 1.0 }, new() { 0.057, 1.0 }
}
- , response.Document.Inference.Pages.First().Extras.Cropper.Cropping.First().BoundingBox);
+ , response.Document.Inference.Pages[0].Extras.Cropper.Cropping[0].BoundingBox);
Assert.Equal(new List>
{
new() { 0.161, 0.016 }, new() { 0.744, 0.009 }, new() { 0.845, 0.996 }, new() { 0.058, 0.999 }
}
- , response.Document.Inference.Pages.First().Extras.Cropper.Cropping.First().Quadrangle);
+ , response.Document.Inference.Pages[0].Extras.Cropper.Cropping[0].Quadrangle);
Assert.Equal(new List>
{
new() { 0.052, 0.011 }, new() { 0.839, 0.007 }, new() { 0.844, 0.994 }, new() { 0.057, 0.998 }
}
- , response.Document.Inference.Pages.First().Extras.Cropper.Cropping.First().Rectangle);
+ , response.Document.Inference.Pages[0].Extras.Cropper.Cropping[0].Rectangle);
Assert.Equal(new List>
{
@@ -121,7 +121,7 @@ public async Task Predict_WithCropping_MustSuccess()
new() { 0.086, 0.732 },
new() { 0.113, 0.514 }
}
- , response.Document.Inference.Pages.First().Extras.Cropper.Cropping.First().Polygon);
+ , response.Document.Inference.Pages[0].Extras.Cropper.Cropping[0].Polygon);
}
private static async Task> GetPrediction()
diff --git a/tests/Mindee.UnitTests/V1/Product/Us/BankCheck/BankCheckV1Test.cs b/tests/Mindee.UnitTests/V1/Product/Us/BankCheck/BankCheckV1Test.cs
index e337fc9a6..84747db0d 100644
--- a/tests/Mindee.UnitTests/V1/Product/Us/BankCheck/BankCheckV1Test.cs
+++ b/tests/Mindee.UnitTests/V1/Product/Us/BankCheck/BankCheckV1Test.cs
@@ -17,7 +17,7 @@ public async Task Predict_CheckEmpty()
Assert.Null(docPrediction.RoutingNumber.Value);
Assert.Null(docPrediction.AccountNumber.Value);
Assert.Null(docPrediction.CheckNumber.Value);
- var pagePrediction = response.Document.Inference.Pages.First().Prediction;
+ var pagePrediction = response.Document.Inference.Pages[0].Prediction;
Assert.Null(pagePrediction.CheckPosition.Polygon);
Assert.Null(pagePrediction.CheckPosition.BoundingBox);
Assert.Empty(pagePrediction.SignaturesPositions);
diff --git a/tests/Mindee.UnitTests/V1/Product/Us/PayrollCheckRegister/PayrollCheckRegisterV1Test.cs b/tests/Mindee.UnitTests/V1/Product/Us/PayrollCheckRegister/PayrollCheckRegisterV1Test.cs
index 52d2414bc..d21cea377 100644
--- a/tests/Mindee.UnitTests/V1/Product/Us/PayrollCheckRegister/PayrollCheckRegisterV1Test.cs
+++ b/tests/Mindee.UnitTests/V1/Product/Us/PayrollCheckRegister/PayrollCheckRegisterV1Test.cs
@@ -25,9 +25,6 @@ public async Task Predict_CheckDocument()
var docPrediction = response.Document.Inference.Prediction;
Assert.Equal(13, docPrediction.Payments.Count);
Assert.Equal("Economists For Hire, LLC", docPrediction.CompanyName.Value);
-
- // broken output, need to add recursive table support
- // Console.Out.Write(response.Document.ToString());
}
[Fact]
diff --git a/tests/Mindee.UnitTests/V2/ClientTest.cs b/tests/Mindee.UnitTests/V2/ClientTest.cs
index b909d1dd0..5a17a7979 100644
--- a/tests/Mindee.UnitTests/V2/ClientTest.cs
+++ b/tests/Mindee.UnitTests/V2/ClientTest.cs
@@ -14,7 +14,7 @@ namespace Mindee.UnitTests.V2
[Trait("Category", "Mindee client")]
public class ClientTest
{
- private Client MakeCustomMindeeClientV2(Mock predictable)
+ private static Client MakeCustomMindeeClientV2(Mock predictable)
{
predictable.Setup(x => x.ReqPostEnqueueAsync(
It.IsAny(), It.IsAny(), It.IsAny())
diff --git a/tests/Mindee.UnitTests/V2/Parsing/JobTest.cs b/tests/Mindee.UnitTests/V2/Parsing/JobTest.cs
index cfa26b6af..c3b2728d1 100644
--- a/tests/Mindee.UnitTests/V2/Parsing/JobTest.cs
+++ b/tests/Mindee.UnitTests/V2/Parsing/JobTest.cs
@@ -37,7 +37,7 @@ public void OkProcessed_WebhooksOk_MustHaveValidProperties()
Assert.Null(response.Job.Error);
Assert.Equal("Processed", response.Job.Status);
Assert.NotEmpty(response.Job.Webhooks);
- var webhook = response.Job.Webhooks.First();
+ var webhook = response.Job.Webhooks[0];
Assert.NotNull(webhook.Id);
Assert.Equal(2026, webhook.CreatedAt.Year);
Assert.Equal("Processed", webhook.Status);
@@ -58,7 +58,7 @@ public void Error_422_MustHaveValidProperties()
Assert.Equal(422, error.Status);
Assert.StartsWith("422-", error.Code);
Assert.Single(error.Errors);
- Assert.Contains("must be a valid", error.Errors.First().Detail);
+ Assert.Contains("must be a valid", error.Errors[0].Detail);
Assert.Equal("Failed", response.Job.Status);
}
diff --git a/tests/Mindee.UnitTests/V2/Product/ClassificationTest.cs b/tests/Mindee.UnitTests/V2/Product/ClassificationTest.cs
index c31bcbffc..8522a9a5e 100644
--- a/tests/Mindee.UnitTests/V2/Product/ClassificationTest.cs
+++ b/tests/Mindee.UnitTests/V2/Product/ClassificationTest.cs
@@ -17,7 +17,7 @@ public void Parameters_MustInit()
var productParams = new ClassificationParameters("invalid-model-id");
Assert.Equal("invalid-model-id", productParams.ModelId);
- var productAttributes = productParams.GetType().GetCustomAttribute();
+ var productAttributes = productParams.GetType().GetCustomAttribute();
Assert.Equal("classification", productAttributes?.Slug);
}
@@ -75,7 +75,7 @@ private static ClassificationResponse GetInference(string path)
return localResponse.DeserializeResponse();
}
- private void AssertInferenceResponse(ClassificationResponse response)
+ private static void AssertInferenceResponse(ClassificationResponse response)
{
Assert.NotNull(response.Inference);
Assert.NotNull(response.Inference.Id);
diff --git a/tests/Mindee.UnitTests/V2/Product/CropTest.cs b/tests/Mindee.UnitTests/V2/Product/CropTest.cs
index 5b13d30f9..e0bfa4521 100644
--- a/tests/Mindee.UnitTests/V2/Product/CropTest.cs
+++ b/tests/Mindee.UnitTests/V2/Product/CropTest.cs
@@ -17,7 +17,7 @@ public void Parameters_MustInit()
var productParams = new CropParameters("invalid-model-id");
Assert.Equal("invalid-model-id", productParams.ModelId);
- var productAttributes = productParams.GetType().GetCustomAttribute();
+ var productAttributes = productParams.GetType().GetCustomAttribute();
Assert.Equal("crop", productAttributes?.Slug);
}
@@ -41,7 +41,7 @@ public void Crop_WhenSingle_MustHaveValidProperties()
Assert.NotNull(crops);
Assert.Single(crops);
- var firstCrop = crops.First();
+ var firstCrop = crops[0];
Assert.Equal("invoice", firstCrop.ObjectType);
Assert.Equal(0, firstCrop.Location.Page);
@@ -175,7 +175,7 @@ private static CropResponse GetInference(string path)
return localResponse.DeserializeResponse();
}
- private void AssertInferenceResponse(CropResponse response)
+ private static void AssertInferenceResponse(CropResponse response)
{
Assert.NotNull(response.Inference);
Assert.NotNull(response.Inference.Id);
diff --git a/tests/Mindee.UnitTests/V2/Product/ExtractionTest.cs b/tests/Mindee.UnitTests/V2/Product/ExtractionTest.cs
index 5f4dc85f9..5bd811c03 100644
--- a/tests/Mindee.UnitTests/V2/Product/ExtractionTest.cs
+++ b/tests/Mindee.UnitTests/V2/Product/ExtractionTest.cs
@@ -18,7 +18,7 @@ public void Parameters_MustInit()
var productParams = new ExtractionParameters("invalid-model-id");
Assert.Equal("invalid-model-id", productParams.ModelId);
- var productAttributes = productParams.GetType().GetCustomAttribute();
+ var productAttributes = productParams.GetType().GetCustomAttribute();
Assert.Equal("extraction", productAttributes?.Slug);
}
@@ -78,8 +78,8 @@ public void FinancialDocument_WhenComplete_MustHaveValidProperties()
Assert.Equal(21, fields.Count);
Assert.Single(fields["taxes"].ListField.Items);
Assert.NotNull(fields["taxes"].ToString());
- Assert.Equal(3, fields["taxes"].ListField.Items.First().ObjectField.Fields.Count);
- Assert.Equal(31.5, fields["taxes"].ListField.Items.First().ObjectField.Fields["base"].SimpleField.Value);
+ Assert.Equal(3, fields["taxes"].ListField.Items[0].ObjectField.Fields.Count);
+ Assert.Equal(31.5, fields["taxes"].ListField.Items[0].ObjectField.Fields["base"].SimpleField.Value);
Assert.Equal(195.0, fields["total_net"].SimpleField.Value);
Assert.Null(fields["tips_gratuity"].SimpleField.Value);
@@ -127,9 +127,9 @@ public void DeepNestedFields_mustExposeCorrectTypes()
var nestedList = lvl2["sub_object_object_sub_object_list"].ListField!;
var items = nestedList.Items;
Assert.NotEmpty(items);
- Assert.NotNull(items.First().ObjectField);
+ Assert.NotNull(items[0].ObjectField);
- var firstItem = items.First().ObjectField!;
+ var firstItem = items[0].ObjectField!;
var deepSimple = firstItem.Fields["sub_object_object_sub_object_list_simple"].SimpleField!;
Assert.Equal("value_9", deepSimple.Value);
}
@@ -292,8 +292,8 @@ public void StandardFieldTypes_mustHaveLocations()
Assert.NotNull(simpleField.Locations);
List locations = simpleField.Locations;
Assert.Single(locations);
- Assert.Equal(0, locations.First().Page);
- var polygon = locations.First().Polygon;
+ Assert.Equal(0, locations[0].Page);
+ var polygon = locations[0].Polygon;
Assert.Equal(new Point(0, 0), polygon[0]);
Assert.Equal(new Point(0, 0), polygon[1]);
Assert.Equal(new Point(1, 1), polygon[2]);
@@ -399,7 +399,7 @@ private static ExtractionResponse GetInference(string path)
return localResponse.DeserializeResponse();
}
- private void AssertInferenceResponse(ExtractionResponse response)
+ private static void AssertInferenceResponse(ExtractionResponse response)
{
Assert.NotNull(response.Inference);
Assert.NotNull(response.Inference.Id);
diff --git a/tests/Mindee.UnitTests/V2/Product/OcrTest.cs b/tests/Mindee.UnitTests/V2/Product/OcrTest.cs
index 36bbef403..b15fcab82 100644
--- a/tests/Mindee.UnitTests/V2/Product/OcrTest.cs
+++ b/tests/Mindee.UnitTests/V2/Product/OcrTest.cs
@@ -16,7 +16,7 @@ public void Parameters_MustInit()
var productParams = new OcrParameters("invalid-model-id");
Assert.Equal("invalid-model-id", productParams.ModelId);
- var productAttributes = productParams.GetType().GetCustomAttribute();
+ var productAttributes = productParams.GetType().GetCustomAttribute();
Assert.Equal("ocr", productAttributes?.Slug);
}
@@ -39,7 +39,7 @@ public void Ocr_WhenSingle_MustHaveValidProperties()
Assert.NotNull(pages);
Assert.Single(pages);
- var firstPage = pages.First();
+ var firstPage = pages[0];
Assert.NotNull(firstPage.Words);
var firstWord = firstPage.Words[0];
@@ -84,7 +84,7 @@ private static OcrResponse GetInference(string path)
return localResponse.DeserializeResponse();
}
- private void AssertInferenceResponse(OcrResponse response)
+ private static void AssertInferenceResponse(OcrResponse response)
{
Assert.NotNull(response.Inference);
Assert.NotNull(response.Inference.Id);
diff --git a/tests/Mindee.UnitTests/V2/Product/SplitTest.cs b/tests/Mindee.UnitTests/V2/Product/SplitTest.cs
index 608ff5959..dc1389f97 100644
--- a/tests/Mindee.UnitTests/V2/Product/SplitTest.cs
+++ b/tests/Mindee.UnitTests/V2/Product/SplitTest.cs
@@ -16,7 +16,7 @@ public void Parameters_MustInit()
var productParams = new SplitParameters("invalid-model-id");
Assert.Equal("invalid-model-id", productParams.ModelId);
- var productAttributes = productParams.GetType().GetCustomAttribute();
+ var productAttributes = productParams.GetType().GetCustomAttribute();
Assert.Equal("split", productAttributes?.Slug);
}
@@ -35,7 +35,7 @@ public void Split_WhenSingle_MustHaveValidProperties()
Assert.NotNull(splits);
Assert.Single(splits);
- var firstSplit = splits.First();
+ var firstSplit = splits[0];
Assert.Equal("receipt", firstSplit.DocumentType);
Assert.NotNull(firstSplit.PageRange);
@@ -125,7 +125,7 @@ private static SplitResponse GetInference(string path)
return localResponse.DeserializeResponse();
}
- private void AssertInferenceResponse(SplitResponse response)
+ private static void AssertInferenceResponse(SplitResponse response)
{
Assert.NotNull(response.Inference);
Assert.NotNull(response.Inference.Id);
diff --git a/tests/Mindee.UnitTests/V2/Search/ModelSearchTest.cs b/tests/Mindee.UnitTests/V2/Search/ModelSearchTest.cs
index f56c738e1..58c4f9b5b 100644
--- a/tests/Mindee.UnitTests/V2/Search/ModelSearchTest.cs
+++ b/tests/Mindee.UnitTests/V2/Search/ModelSearchTest.cs
@@ -22,7 +22,7 @@ public void ModelSearchResponse_LoadsLocally()
Assert.Equal(50, response.Pagination.PerPage);
Assert.Equal(1, response.Pagination.TotalPages);
- var firstItem = response.Models.First();
+ var firstItem = response.Models[0];
Assert.Equal("Extraction With Webhooks", firstItem.Name);
Assert.Equal("afde5151-aa11-aa11-9289-fa04e50ca3b9", firstItem.Id);
Assert.Equal("extraction", firstItem.ModelType);
@@ -32,7 +32,7 @@ public void ModelSearchResponse_LoadsLocally()
Assert.Equal("FAILURE", firstItem.Webhooks[0].Name);
Assert.Equal("https://failure.mindee.com", firstItem.Webhooks[0].Url);
- var lastItem = response.Models.Last();
+ var lastItem = response.Models[response.Models.Count - 1];
Assert.Equal("Extraction Without Webhooks Key", lastItem.Name);
Assert.Equal("e14e0923-ee55-ee55-a335-8d2110917d7b", lastItem.Id);
}
diff --git a/tests/Mindee.UnitTests/V2/Search/RagDocumentsSearchTest.cs b/tests/Mindee.UnitTests/V2/Search/RagDocumentsSearchTest.cs
index 8f42021bd..7d1d173ee 100644
--- a/tests/Mindee.UnitTests/V2/Search/RagDocumentsSearchTest.cs
+++ b/tests/Mindee.UnitTests/V2/Search/RagDocumentsSearchTest.cs
@@ -1,3 +1,4 @@
+using System.Globalization;
using Mindee.V2.Parsing;
using Mindee.V2.Parsing.Search;
@@ -22,50 +23,50 @@ public void RagDocumentSearchResponse_LoadsLocally()
Assert.Equal(50, response.Pagination.PerPage);
Assert.Equal(1, response.Pagination.TotalPages);
- var firstItem = response.RagDocuments.First();
+ var firstItem = response.RagDocuments[0];
Assert.Equal("cc831599-c545-48b7-aa27-6d7ccd5b8d32", firstItem.Id);
Assert.Equal("12345678-1234-1234-1234-123456789abc", firstItem.ModelId);
Assert.Equal("invoice_01.pdf", firstItem.Filename);
Assert.Equal(
DateTime.Parse(
"2026-06-30T13:13:46.168586Z",
- null,
- System.Globalization.DateTimeStyles.RoundtripKind),
+ CultureInfo.InvariantCulture,
+ DateTimeStyles.RoundtripKind),
firstItem.CreatedAt);
Assert.Equal(0, firstItem.TotalMatches);
Assert.Null(firstItem.LastMatchAt);
Assert.Equal("Processing", firstItem.Status);
- var secondItem = response.RagDocuments.ElementAt(1);
+ var secondItem = response.RagDocuments[1];
Assert.Equal("27467e4c-5602-4315-90d9-3d2da69b05ab", secondItem.Id);
Assert.Equal("12345678-1234-1234-1234-123456789abc", secondItem.ModelId);
Assert.Equal("invoice_02.pdf", secondItem.Filename);
Assert.Equal(
DateTime.Parse(
"2026-06-30T13:13:46.168586Z",
- null,
- System.Globalization.DateTimeStyles.RoundtripKind),
+ CultureInfo.InvariantCulture,
+ DateTimeStyles.RoundtripKind),
secondItem.CreatedAt);
Assert.Equal(0, secondItem.TotalMatches);
Assert.Null(secondItem.LastMatchAt);
Assert.Equal("Draft", secondItem.Status);
- var thirdItem = response.RagDocuments.ElementAt(2);
+ var thirdItem = response.RagDocuments[2];
Assert.Equal("a6bcae7d-0439-476b-8a63-5a39ec05dc21", thirdItem.Id);
Assert.Equal("12345678-1234-1234-1234-jobid1234567", thirdItem.ModelId);
Assert.Equal("invoice_03.pdf", thirdItem.Filename);
Assert.Equal(
DateTime.Parse(
"2026-06-17T14:35:46.228006Z",
- null,
- System.Globalization.DateTimeStyles.RoundtripKind),
+ CultureInfo.InvariantCulture,
+ DateTimeStyles.RoundtripKind),
thirdItem.CreatedAt);
Assert.Equal(5, thirdItem.TotalMatches);
Assert.Equal(
DateTime.Parse(
"2026-06-18T14:35:46.248006Z",
- null,
- System.Globalization.DateTimeStyles.RoundtripKind),
+ CultureInfo.InvariantCulture,
+ DateTimeStyles.RoundtripKind),
thirdItem.LastMatchAt);
Assert.Equal("Active", thirdItem.Status);
}
From 8acfcc6d8be968b5b6272fe426eb1c41b4f800fe Mon Sep 17 00:00:00 2001
From: sebastianMindee <130448732+sebastianMindee@users.noreply.github.com>
Date: Mon, 27 Jul 2026 18:57:21 +0200
Subject: [PATCH 2/5] :wrench: add package vulnerabilities check
---
Directory.Build.props | 3 +++
1 file changed, 3 insertions(+)
diff --git a/Directory.Build.props b/Directory.Build.props
index 99ce28e91..158a04007 100644
--- a/Directory.Build.props
+++ b/Directory.Build.props
@@ -15,6 +15,9 @@
CHANGELOG.md
true
true
+ true
+ all
+ low
From 80b89d7a8b64f8c2bca941351fc2ef16eeebe772 Mon Sep 17 00:00:00 2001
From: sebastianMindee <130448732+sebastianMindee@users.noreply.github.com>
Date: Mon, 27 Jul 2026 19:25:50 +0200
Subject: [PATCH 3/5] :wrench: add husky and license check
---
.github/workflows/_static-analysis.yml | 6 +
.husky/check-licenses.sh | 76 +
.husky/licenses.allowed | 11 +
.husky/licenses.allowed-packages | 6 +
.husky/pre-commit | 22 +
.husky/pre-push | 4 +
.husky/run-unit-tests.sh | 27 +
.husky/task-runner.json | 30 +
licenses.json | 9119 ++++++++++++++++++++++++
9 files changed, 9301 insertions(+)
create mode 100755 .husky/check-licenses.sh
create mode 100644 .husky/licenses.allowed
create mode 100644 .husky/licenses.allowed-packages
create mode 100755 .husky/pre-commit
create mode 100755 .husky/pre-push
create mode 100755 .husky/run-unit-tests.sh
create mode 100644 .husky/task-runner.json
create mode 100644 licenses.json
diff --git a/.github/workflows/_static-analysis.yml b/.github/workflows/_static-analysis.yml
index acdd4cce3..ce1387262 100644
--- a/.github/workflows/_static-analysis.yml
+++ b/.github/workflows/_static-analysis.yml
@@ -21,3 +21,9 @@ jobs:
- name: Run dotnet format
run: dotnet format --verify-no-changes
+
+ - name: Restore local tools (dotnet-delice)
+ run: dotnet tool restore
+
+ - name: Check dependency licenses against whitelist
+ run: bash .husky/check-licenses.sh
diff --git a/.husky/check-licenses.sh b/.husky/check-licenses.sh
new file mode 100755
index 000000000..47f62c6f5
--- /dev/null
+++ b/.husky/check-licenses.sh
@@ -0,0 +1,76 @@
+#!/usr/bin/env bash
+#
+# License whitelist check for NuGet dependencies.
+#
+# Runs `dotnet delice` and fails if any package uses a license expression that
+# isn't listed in .husky/licenses.allowed, unless the package name appears in
+# .husky/licenses.allowed-packages.
+#
+# Requires: dotnet, jq, bash. No Python.
+#
+set -euo pipefail
+
+SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
+SLN="$SCRIPT_DIR/../Mindee.sln"
+ALLOWED_FILE="$SCRIPT_DIR/licenses.allowed"
+ALLOWED_PKGS_FILE="$SCRIPT_DIR/licenses.allowed-packages"
+
+command -v jq >/dev/null 2>&1 || {
+ echo "[husky] jq is required for the license check but was not found in PATH." >&2
+ exit 2
+}
+
+TMP_JSON="$(mktemp -t delice-XXXXXX.json)"
+trap 'rm -f "$TMP_JSON"' EXIT
+
+echo "[husky] Running dotnet delice on ${SLN} ..."
+dotnet delice "$SLN" -j --json-output "$TMP_JSON" >/dev/null
+
+strip_comments() {
+ # Drop blank lines and '#' comments, trim trailing whitespace.
+ sed -e 's/[[:space:]]*$//' -e '/^[[:space:]]*#/d' -e '/^[[:space:]]*$/d' "$1"
+}
+
+ALLOWED_LICENSES="$(strip_comments "$ALLOWED_FILE" || true)"
+ALLOWED_PACKAGES="$(strip_comments "$ALLOWED_PKGS_FILE" 2>/dev/null || true)"
+
+# Emit one tab-separated record per package: projectnameversionexpression
+# We deliberately avoid jq's @tsv, which doubles backslashes (breaking matches
+# against expressions like `licenses\LICENSE.txt`).
+RECORDS="$(jq -r '
+ .projects[]
+ | .projectName as $p
+ | .licenses[]
+ | .expression as $e
+ | .packages[]
+ | [$p, .name, (.version // "?"), $e] | join("\t")
+' "$TMP_JSON")"
+
+violations=""
+while IFS=$'\t' read -r project name version expression; do
+ [ -z "${name:-}" ] && continue
+ # Allowed license expression?
+ if printf '%s\n' "$ALLOWED_LICENSES" | grep -Fxq -- "$expression"; then
+ continue
+ fi
+ # Per-package exception?
+ if [ -n "$ALLOWED_PACKAGES" ] && printf '%s\n' "$ALLOWED_PACKAGES" | grep -Fxq -- "$name"; then
+ continue
+ fi
+ violations+=$'\n'" - ${name}@${version} (license: ${expression}) [project: ${project}]"
+done <<< "$RECORDS"
+
+if [ -n "$violations" ]; then
+ {
+ echo "Disallowed package licenses detected:"
+ # De-duplicate while preserving order.
+ printf '%s\n' "$violations" | awk 'NF && !seen[$0]++'
+ echo
+ echo "Either remove the offending dependency, add the license expression to"
+ echo ".husky/licenses.allowed, or add the package name to"
+ echo ".husky/licenses.allowed-packages after review."
+ } >&2
+ exit 1
+fi
+
+echo "License check passed: all packages use whitelisted licenses."
diff --git a/.husky/licenses.allowed b/.husky/licenses.allowed
new file mode 100644
index 000000000..d8ad2dc1d
--- /dev/null
+++ b/.husky/licenses.allowed
@@ -0,0 +1,11 @@
+# One SPDX-style license expression per line. Blank lines and '#' comments allowed.
+# Any package whose license expression is NOT in this list will fail the pre-push check,
+# unless the package name appears in licenses.allowed-packages.
+MIT
+Apache-2.0
+BSD-3-Clause
+LGPL-3.0-or-later
+Apache-2.0 AND MIT
+Microsoft Software License
+licenses\LICENSE.txt
+Project References
diff --git a/.husky/licenses.allowed-packages b/.husky/licenses.allowed-packages
new file mode 100644
index 000000000..704ccaa81
--- /dev/null
+++ b/.husky/licenses.allowed-packages
@@ -0,0 +1,6 @@
+# Per-package overrides for cases where delice cannot detect the SPDX license
+# (legacy NuGet license structure). Verified manually to be acceptable.
+# One "PackageName" per line (no version).
+Microsoft.NETFramework.ReferenceAssemblies
+Microsoft.NETFramework.ReferenceAssemblies.net472
+Microsoft.NETFramework.ReferenceAssemblies.net48
diff --git a/.husky/pre-commit b/.husky/pre-commit
new file mode 100755
index 000000000..65130a63e
--- /dev/null
+++ b/.husky/pre-commit
@@ -0,0 +1,22 @@
+#!/bin/sh
+. "$(dirname "$0")/_/husky.sh"
+
+## husky task runner examples -------------------
+## Note : for local installation use 'dotnet' prefix. e.g. 'dotnet husky'
+
+## run all tasks
+#husky run
+
+### run all tasks with group: 'group-name'
+#husky run --group group-name
+
+## run task with name: 'task-name'
+#husky run --name task-name
+
+## pass hook arguments to task
+#husky run --args "$1" "$2"
+
+## or put your custom commands -------------------
+#echo 'Husky.Net is awesome!'
+
+dotnet husky run --group pre-commit
diff --git a/.husky/pre-push b/.husky/pre-push
new file mode 100755
index 000000000..3af48fa0a
--- /dev/null
+++ b/.husky/pre-push
@@ -0,0 +1,4 @@
+#!/bin/sh
+. "$(dirname "$0")/_/husky.sh"
+
+dotnet husky run --group pre-push
diff --git a/.husky/run-unit-tests.sh b/.husky/run-unit-tests.sh
new file mode 100755
index 000000000..b3bac2bcf
--- /dev/null
+++ b/.husky/run-unit-tests.sh
@@ -0,0 +1,27 @@
+#!/usr/bin/env bash
+#
+# Run unit tests for the target frameworks that are actually supported on the
+# current OS. .NET Framework targets (net472 / net48) require Windows because
+# Docnet.Core's native PDF binaries don't load under Mono on *nix.
+#
+# Mirrors the matrix used in .github/workflows/_test-units.yml.
+#
+set -euo pipefail
+
+PROJECT="tests/Mindee.UnitTests/Mindee.UnitTests.csproj"
+
+case "$(uname -s 2>/dev/null || echo Windows)" in
+ MINGW*|MSYS*|CYGWIN*|Windows*)
+ FRAMEWORKS=("net6.0" "net8.0" "net10.0" "net472" "net48")
+ ;;
+ *)
+ FRAMEWORKS=("net8.0" "net10.0")
+ ;;
+esac
+
+echo "[husky] Running unit tests for: ${FRAMEWORKS[*]}"
+
+for tfm in "${FRAMEWORKS[@]}"; do
+ echo "[husky] --- $tfm ---"
+ dotnet test "$PROJECT" -f "$tfm" --nologo -v:quiet
+done
diff --git a/.husky/task-runner.json b/.husky/task-runner.json
new file mode 100644
index 000000000..90a25c42f
--- /dev/null
+++ b/.husky/task-runner.json
@@ -0,0 +1,30 @@
+{
+ "$schema": "https://alirezanet.github.io/Husky.Net/schema.json",
+ "tasks": [
+ {
+ "name": "dotnet-format-staged",
+ "group": "pre-commit",
+ "command": "dotnet",
+ "args": [ "format", "Mindee.sln", "--include", "${staged}", "--verify-no-changes", "--no-restore" ],
+ "include": [ "**/*.cs" ]
+ },
+ {
+ "name": "build",
+ "group": "pre-commit",
+ "command": "dotnet",
+ "args": [ "build", "Mindee.sln", "--nologo", "-clp:NoSummary", "-v:quiet" ]
+ },
+ {
+ "name": "license-check",
+ "group": "pre-push",
+ "command": "bash",
+ "args": [ ".husky/check-licenses.sh" ]
+ },
+ {
+ "name": "unit-tests",
+ "group": "pre-push",
+ "command": "bash",
+ "args": [ ".husky/run-unit-tests.sh" ]
+ }
+ ]
+}
diff --git a/licenses.json b/licenses.json
new file mode 100644
index 000000000..e830e8b17
--- /dev/null
+++ b/licenses.json
@@ -0,0 +1,9119 @@
+{
+ "licenseListVersion": "3.28.0",
+ "licenses": [
+ {
+ "reference": "https://spdx.org/licenses/FSL-1.1-MIT.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/FSL-1.1-MIT.json",
+ "referenceNumber": 0,
+ "name": "Functional Source License, Version 1.1, MIT Future License",
+ "licenseId": "FSL-1.1-MIT",
+ "seeAlso": [
+ "https://fsl.software/FSL-1.1-MIT.template.md"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/SISSL.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/SISSL.json",
+ "referenceNumber": 1,
+ "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/copyleft-next-0.3.1.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/copyleft-next-0.3.1.json",
+ "referenceNumber": 2,
+ "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/Noweb.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Noweb.json",
+ "referenceNumber": 3,
+ "name": "Noweb License",
+ "licenseId": "Noweb",
+ "seeAlso": [
+ "https://fedoraproject.org/wiki/Licensing/Noweb"
+ ],
+ "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": 4,
+ "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/BSD-3-Clause-acpica.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-acpica.json",
+ "referenceNumber": 5,
+ "name": "BSD 3-Clause acpica variant",
+ "licenseId": "BSD-3-Clause-acpica",
+ "seeAlso": [
+ "https://github.com/acpica/acpica/blob/master/source/common/acfileio.c#L119"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/MakeIndex.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/MakeIndex.json",
+ "referenceNumber": 6,
+ "name": "MakeIndex License",
+ "licenseId": "MakeIndex",
+ "seeAlso": [
+ "https://fedoraproject.org/wiki/Licensing/MakeIndex"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/Fair.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Fair.json",
+ "referenceNumber": 7,
+ "name": "Fair License",
+ "licenseId": "Fair",
+ "seeAlso": [
+ "https://web.archive.org/web/20150926120323/http://fairlicense.org/",
+ "https://opensource.org/licenses/Fair"
+ ],
+ "isOsiApproved": true
+ },
+ {
+ "reference": "https://spdx.org/licenses/MirOS.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/MirOS.json",
+ "referenceNumber": 8,
+ "name": "The MirOS Licence",
+ "licenseId": "MirOS",
+ "seeAlso": [
+ "https://opensource.org/licenses/MirOS"
+ ],
+ "isOsiApproved": true
+ },
+ {
+ "reference": "https://spdx.org/licenses/Mackerras-3-Clause.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Mackerras-3-Clause.json",
+ "referenceNumber": 9,
+ "name": "Mackerras 3-Clause License",
+ "licenseId": "Mackerras-3-Clause",
+ "seeAlso": [
+ "https://github.com/ppp-project/ppp/blob/master/pppd/chap_ms.c#L6-L28"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/NRL.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/NRL.json",
+ "referenceNumber": 10,
+ "name": "NRL License",
+ "licenseId": "NRL",
+ "seeAlso": [
+ "http://web.mit.edu/network/isakmp/nrllicense.html"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/InnoSetup.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/InnoSetup.json",
+ "referenceNumber": 11,
+ "name": "Inno Setup License",
+ "licenseId": "InnoSetup",
+ "seeAlso": [
+ "https://github.com/jrsoftware/issrc/blob/HEAD/license.txt"
+ ],
+ "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": 12,
+ "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/AGPL-1.0-or-later.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/AGPL-1.0-or-later.json",
+ "referenceNumber": 13,
+ "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/Catharon.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Catharon.json",
+ "referenceNumber": 14,
+ "name": "Catharon License",
+ "licenseId": "Catharon",
+ "seeAlso": [
+ "https://github.com/scummvm/scummvm/blob/v2.8.0/LICENSES/CatharonLicense.txt"
+ ],
+ "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": 15,
+ "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/Abstyles.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Abstyles.json",
+ "referenceNumber": 16,
+ "name": "Abstyles License",
+ "licenseId": "Abstyles",
+ "seeAlso": [
+ "https://fedoraproject.org/wiki/Licensing/Abstyles"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/MS-RL.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/MS-RL.json",
+ "referenceNumber": 17,
+ "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/NIST-Software.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/NIST-Software.json",
+ "referenceNumber": 18,
+ "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/Unlicense-libwhirlpool.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Unlicense-libwhirlpool.json",
+ "referenceNumber": 19,
+ "name": "Unlicense - libwhirlpool variant",
+ "licenseId": "Unlicense-libwhirlpool",
+ "seeAlso": [
+ "https://github.com/dfateyev/libwhirlpool/blob/master/README#L27"
+ ],
+ "isOsiApproved": 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": 20,
+ "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/GPL-2.0+.html",
+ "isDeprecatedLicenseId": true,
+ "detailsUrl": "https://spdx.org/licenses/GPL-2.0+.json",
+ "referenceNumber": 21,
+ "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/CAL-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/CAL-1.0.json",
+ "referenceNumber": 22,
+ "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/GFDL-1.2-invariants-only.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/GFDL-1.2-invariants-only.json",
+ "referenceNumber": 23,
+ "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/GPL-2.0-with-bison-exception.html",
+ "isDeprecatedLicenseId": true,
+ "detailsUrl": "https://spdx.org/licenses/GPL-2.0-with-bison-exception.json",
+ "referenceNumber": 24,
+ "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=193d7c7054ba7197b0789e14965b739162319b5e#n141"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/CC-PDM-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/CC-PDM-1.0.json",
+ "referenceNumber": 25,
+ "name": "Creative Commons Public Domain Mark 1.0 Universal",
+ "licenseId": "CC-PDM-1.0",
+ "seeAlso": [
+ "https://creativecommons.org/publicdomain/mark/1.0/",
+ "https://creativecommons.org/share-your-work/cclicenses/"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/CMU-Mach-nodoc.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/CMU-Mach-nodoc.json",
+ "referenceNumber": 26,
+ "name": "CMU Mach - no notices-in-documentation variant",
+ "licenseId": "CMU-Mach-nodoc",
+ "seeAlso": [
+ "https://github.com/krb5/krb5/blob/krb5-1.21.2-final/NOTICE#L718-L728",
+ "https://web.mit.edu/kerberos/krb5-1.21/doc/mitK5license.html"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/RPSL-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/RPSL-1.0.json",
+ "referenceNumber": 27,
+ "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/CDLA-Permissive-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/CDLA-Permissive-1.0.json",
+ "referenceNumber": 28,
+ "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/BSD-2-Clause-pkgconf-disclaimer.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/BSD-2-Clause-pkgconf-disclaimer.json",
+ "referenceNumber": 29,
+ "name": "BSD 2-Clause pkgconf disclaimer variant",
+ "licenseId": "BSD-2-Clause-pkgconf-disclaimer",
+ "seeAlso": [
+ "https://github.com/audacious-media-player/audacious/blob/master/src/audacious/main.cc",
+ "https://github.com/audacious-media-player/audacious/blob/master/COPYING"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/GFDL-1.2.html",
+ "isDeprecatedLicenseId": true,
+ "detailsUrl": "https://spdx.org/licenses/GFDL-1.2.json",
+ "referenceNumber": 30,
+ "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/JPL-image.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/JPL-image.json",
+ "referenceNumber": 31,
+ "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/CC-BY-3.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/CC-BY-3.0.json",
+ "referenceNumber": 32,
+ "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/LPPL-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/LPPL-1.0.json",
+ "referenceNumber": 33,
+ "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/LGPLLR.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/LGPLLR.json",
+ "referenceNumber": 34,
+ "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/CC-BY-SA-2.0-UK.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/CC-BY-SA-2.0-UK.json",
+ "referenceNumber": 35,
+ "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/OLDAP-2.0.1.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/OLDAP-2.0.1.json",
+ "referenceNumber": 36,
+ "name": "Open LDAP Public License v2.0.1",
+ "licenseId": "OLDAP-2.0.1",
+ "seeAlso": [
+ "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=b6d68acd14e51ca3aab4428bf26522aa74873f0e"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/Unicode-3.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Unicode-3.0.json",
+ "referenceNumber": 37,
+ "name": "Unicode License v3",
+ "licenseId": "Unicode-3.0",
+ "seeAlso": [
+ "https://www.unicode.org/license.txt"
+ ],
+ "isOsiApproved": true
+ },
+ {
+ "reference": "https://spdx.org/licenses/Parity-6.0.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Parity-6.0.0.json",
+ "referenceNumber": 38,
+ "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/LPL-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/LPL-1.0.json",
+ "referenceNumber": 39,
+ "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/Glulxe.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Glulxe.json",
+ "referenceNumber": 40,
+ "name": "Glulxe License",
+ "licenseId": "Glulxe",
+ "seeAlso": [
+ "https://fedoraproject.org/wiki/Licensing/Glulxe"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/CMU-Mach.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/CMU-Mach.json",
+ "referenceNumber": 41,
+ "name": "CMU Mach License",
+ "licenseId": "CMU-Mach",
+ "seeAlso": [
+ "https://www.cs.cmu.edu/~410/licenses.html"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/Zeeff.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Zeeff.json",
+ "referenceNumber": 42,
+ "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/DL-DE-ZERO-2.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/DL-DE-ZERO-2.0.json",
+ "referenceNumber": 43,
+ "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/NTIA-PD.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/NTIA-PD.json",
+ "referenceNumber": 44,
+ "name": "NTIA Public Domain Notice",
+ "licenseId": "NTIA-PD",
+ "seeAlso": [
+ "https://raw.githubusercontent.com/NTIA/itm/refs/heads/master/LICENSE.md",
+ "https://raw.githubusercontent.com/NTIA/scos-sensor/refs/heads/master/LICENSE.md"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/Nokia.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Nokia.json",
+ "referenceNumber": 45,
+ "name": "Nokia Open Source License",
+ "licenseId": "Nokia",
+ "seeAlso": [
+ "https://opensource.org/licenses/nokia"
+ ],
+ "isOsiApproved": true,
+ "isFsfLibre": true
+ },
+ {
+ "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": 46,
+ "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/Saxpath.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Saxpath.json",
+ "referenceNumber": 47,
+ "name": "Saxpath License",
+ "licenseId": "Saxpath",
+ "seeAlso": [
+ "https://fedoraproject.org/wiki/Licensing/Saxpath_License"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/McPhee-slideshow.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/McPhee-slideshow.json",
+ "referenceNumber": 48,
+ "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/snprintf.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/snprintf.json",
+ "referenceNumber": 49,
+ "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/W3C-19980720.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/W3C-19980720.json",
+ "referenceNumber": 50,
+ "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/EFL-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/EFL-1.0.json",
+ "referenceNumber": 51,
+ "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/xpp.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/xpp.json",
+ "referenceNumber": 52,
+ "name": "XPP License",
+ "licenseId": "xpp",
+ "seeAlso": [
+ "https://fedoraproject.org/wiki/Licensing/xpp"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/TCL.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/TCL.json",
+ "referenceNumber": 53,
+ "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/BSD-3-Clause-LBNL.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-LBNL.json",
+ "referenceNumber": 54,
+ "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/OCLC-2.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/OCLC-2.0.json",
+ "referenceNumber": 55,
+ "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/OGC-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/OGC-1.0.json",
+ "referenceNumber": 56,
+ "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/Latex2e-translated-notice.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Latex2e-translated-notice.json",
+ "referenceNumber": 57,
+ "name": "Latex2e with translated notice permission",
+ "licenseId": "Latex2e-translated-notice",
+ "seeAlso": [
+ "https://git.savannah.gnu.org/cgit/indent.git/tree/doc/indent.texi?id=a74c6b4ee49397cf330b333da1042bffa60ed14f#n74"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "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": 58,
+ "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/Qhull.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Qhull.json",
+ "referenceNumber": 59,
+ "name": "Qhull License",
+ "licenseId": "Qhull",
+ "seeAlso": [
+ "https://fedoraproject.org/wiki/Licensing/Qhull"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/Spencer-99.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Spencer-99.json",
+ "referenceNumber": 60,
+ "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/IBM-pibs.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/IBM-pibs.json",
+ "referenceNumber": 61,
+ "name": "IBM PowerPC Initialization and Boot Software",
+ "licenseId": "IBM-pibs",
+ "seeAlso": [
+ "http://git.denx.de/?p=u-boot.git;a=blob;f=arch/powerpc/cpu/ppc4xx/miiphy.c;h=297155fdafa064b955e53e9832de93bfb0cfb85b;hb=9fab4bf4cc077c21e43941866f3f2c196f28670d"
+ ],
+ "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": 62,
+ "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/check-cvs.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/check-cvs.json",
+ "referenceNumber": 63,
+ "name": "check-cvs License",
+ "licenseId": "check-cvs",
+ "seeAlso": [
+ "http://cvs.savannah.gnu.org/viewvc/cvs/ccvs/contrib/check_cvs.in?revision=1.1.4.3&view=markup&pathrev=cvs1-11-23#l2"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/HDF5.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/HDF5.json",
+ "referenceNumber": 64,
+ "name": "HDF5 License",
+ "licenseId": "HDF5",
+ "seeAlso": [
+ "https://github.com/HDFGroup/hdf5/?tab=License-1-ov-file#readme"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/VOSTROM.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/VOSTROM.json",
+ "referenceNumber": 65,
+ "name": "VOSTROM Public License for Open Source",
+ "licenseId": "VOSTROM",
+ "seeAlso": [
+ "https://fedoraproject.org/wiki/Licensing/VOSTROM"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/MS-PL.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/MS-PL.json",
+ "referenceNumber": 66,
+ "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/CDDL-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/CDDL-1.0.json",
+ "referenceNumber": 67,
+ "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/OPL-UK-3.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/OPL-UK-3.0.json",
+ "referenceNumber": 68,
+ "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/CNRI-Python-GPL-Compatible.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/CNRI-Python-GPL-Compatible.json",
+ "referenceNumber": 69,
+ "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/UCL-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/UCL-1.0.json",
+ "referenceNumber": 70,
+ "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/OFL-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/OFL-1.0.json",
+ "referenceNumber": 71,
+ "name": "SIL Open Font License 1.0",
+ "licenseId": "OFL-1.0",
+ "seeAlso": [
+ "http://scripts.sil.org/cms/scripts/page.php?item_id=OFL10_web"
+ ],
+ "isOsiApproved": false,
+ "isFsfLibre": true
+ },
+ {
+ "reference": "https://spdx.org/licenses/Eurosym.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Eurosym.json",
+ "referenceNumber": 72,
+ "name": "Eurosym License",
+ "licenseId": "Eurosym",
+ "seeAlso": [
+ "https://fedoraproject.org/wiki/Licensing/Eurosym"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/ANTLR-PD-fallback.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/ANTLR-PD-fallback.json",
+ "referenceNumber": 73,
+ "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/DocBook-DTD.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/DocBook-DTD.json",
+ "referenceNumber": 74,
+ "name": "DocBook DTD License",
+ "licenseId": "DocBook-DTD",
+ "seeAlso": [
+ "http://www.docbook.org/xml/simple/1.1/docbook-simple-1.1.zip"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/SMLNJ.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/SMLNJ.json",
+ "referenceNumber": 75,
+ "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/CATOSL-1.1.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/CATOSL-1.1.json",
+ "referenceNumber": 76,
+ "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/MIPS.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/MIPS.json",
+ "referenceNumber": 77,
+ "name": "MIPS License",
+ "licenseId": "MIPS",
+ "seeAlso": [
+ "https://sourceware.org/cgit/binutils-gdb/tree/include/coff/sym.h#n11"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/Net-SNMP.html",
+ "isDeprecatedLicenseId": true,
+ "detailsUrl": "https://spdx.org/licenses/Net-SNMP.json",
+ "referenceNumber": 78,
+ "name": "Net-SNMP License",
+ "licenseId": "Net-SNMP",
+ "seeAlso": [
+ "http://net-snmp.sourceforge.net/about/license.html"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/OAR.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/OAR.json",
+ "referenceNumber": 79,
+ "name": "OAR License",
+ "licenseId": "OAR",
+ "seeAlso": [
+ "https://sourceware.org/git/?p=newlib-cygwin.git;a=blob;f=newlib/libc/string/strsignal.c;hb=HEAD#l35"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/mpi-permissive.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/mpi-permissive.json",
+ "referenceNumber": 80,
+ "name": "mpi Permissive License",
+ "licenseId": "mpi-permissive",
+ "seeAlso": [
+ "https://sources.debian.org/src/openmpi/4.1.0-10/ompi/debuggers/msgq_interface.h/?hl=19#L19"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/Borceux.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Borceux.json",
+ "referenceNumber": 81,
+ "name": "Borceux license",
+ "licenseId": "Borceux",
+ "seeAlso": [
+ "https://fedoraproject.org/wiki/Licensing/Borceux"
+ ],
+ "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": 82,
+ "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/NCSA.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/NCSA.json",
+ "referenceNumber": 83,
+ "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/GPL-3.0+.html",
+ "isDeprecatedLicenseId": true,
+ "detailsUrl": "https://spdx.org/licenses/GPL-3.0+.json",
+ "referenceNumber": 84,
+ "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/IJG.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/IJG.json",
+ "referenceNumber": 85,
+ "name": "Independent JPEG Group License",
+ "licenseId": "IJG",
+ "seeAlso": [
+ "http://dev.w3.org/cvsweb/Amaya/libjpeg/Attic/README?rev=1.2",
+ "https://github.com/vstroebel/jpeg-encoder/blob/main/src/fdct.rs#L1-L72",
+ "https://github.com/libjpeg-turbo/libjpeg-turbo/blob/main/README.ijg#L117-L161"
+ ],
+ "isOsiApproved": false,
+ "isFsfLibre": true
+ },
+ {
+ "reference": "https://spdx.org/licenses/BSD-Source-Code.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/BSD-Source-Code.json",
+ "referenceNumber": 86,
+ "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/CDL-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/CDL-1.0.json",
+ "referenceNumber": 87,
+ "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/TTYP0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/TTYP0.json",
+ "referenceNumber": 88,
+ "name": "TTYP0 License",
+ "licenseId": "TTYP0",
+ "seeAlso": [
+ "https://people.mpi-inf.mpg.de/~uwe/misc/uw-ttyp0/"
+ ],
+ "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": 89,
+ "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/AGPL-3.0.html",
+ "isDeprecatedLicenseId": true,
+ "detailsUrl": "https://spdx.org/licenses/AGPL-3.0.json",
+ "referenceNumber": 90,
+ "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/ALGLIB-Documentation.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/ALGLIB-Documentation.json",
+ "referenceNumber": 91,
+ "name": "ALGLIB Documentation License",
+ "licenseId": "ALGLIB-Documentation",
+ "seeAlso": [],
+ "isOsiApproved": true
+ },
+ {
+ "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": 92,
+ "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/swrule.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/swrule.json",
+ "referenceNumber": 93,
+ "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/AAL.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/AAL.json",
+ "referenceNumber": 94,
+ "name": "Attribution Assurance License",
+ "licenseId": "AAL",
+ "seeAlso": [
+ "https://opensource.org/licenses/attribution"
+ ],
+ "isOsiApproved": true
+ },
+ {
+ "reference": "https://spdx.org/licenses/AML-glslang.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/AML-glslang.json",
+ "referenceNumber": 95,
+ "name": "AML glslang variant License",
+ "licenseId": "AML-glslang",
+ "seeAlso": [
+ "https://github.com/KhronosGroup/glslang/blob/main/LICENSE.txt#L949",
+ "https://docs.omniverse.nvidia.com/install-guide/latest/common/licenses.html"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/FSFAP.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/FSFAP.json",
+ "referenceNumber": 96,
+ "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/VSL-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/VSL-1.0.json",
+ "referenceNumber": 97,
+ "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/Sun-PPP.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Sun-PPP.json",
+ "referenceNumber": 98,
+ "name": "Sun PPP License",
+ "licenseId": "Sun-PPP",
+ "seeAlso": [
+ "https://github.com/ppp-project/ppp/blob/master/pppd/eap.c#L7-L16"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/gtkbook.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/gtkbook.json",
+ "referenceNumber": 99,
+ "name": "gtkbook License",
+ "licenseId": "gtkbook",
+ "seeAlso": [
+ "https://github.com/slogan621/gtkbook",
+ "https://github.com/oetiker/rrdtool-1.x/blob/master/src/plbasename.c#L8-L11"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/CC-BY-SA-2.5.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/CC-BY-SA-2.5.json",
+ "referenceNumber": 100,
+ "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/SMAIL-GPL.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/SMAIL-GPL.json",
+ "referenceNumber": 101,
+ "name": "SMAIL General Public License",
+ "licenseId": "SMAIL-GPL",
+ "seeAlso": [
+ "https://sources.debian.org/copyright/license/debianutils/4.11.2/"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/Apache-2.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Apache-2.0.json",
+ "referenceNumber": 102,
+ "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",
+ "https://opensource.org/license/apache-2-0"
+ ],
+ "isOsiApproved": true,
+ "isFsfLibre": true
+ },
+ {
+ "reference": "https://spdx.org/licenses/EPL-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/EPL-1.0.json",
+ "referenceNumber": 103,
+ "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/mpich2.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/mpich2.json",
+ "referenceNumber": 104,
+ "name": "mpich2 License",
+ "licenseId": "mpich2",
+ "seeAlso": [
+ "https://fedoraproject.org/wiki/Licensing/MIT"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/NIST-PD-TNT.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/NIST-PD-TNT.json",
+ "referenceNumber": 105,
+ "name": "NIST Public Domain Notice TNT variant",
+ "licenseId": "NIST-PD-TNT",
+ "seeAlso": [
+ "https://math.nist.gov/tnt/download.html"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/MIT-Festival.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/MIT-Festival.json",
+ "referenceNumber": 106,
+ "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/OGL-UK-2.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/OGL-UK-2.0.json",
+ "referenceNumber": 107,
+ "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/OLDAP-1.4.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/OLDAP-1.4.json",
+ "referenceNumber": 108,
+ "name": "Open LDAP Public License v1.4",
+ "licenseId": "OLDAP-1.4",
+ "seeAlso": [
+ "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=c9f95c2f3f2ffb5e0ae55fe7388af75547660941"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/Jam.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Jam.json",
+ "referenceNumber": 109,
+ "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/Python-2.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Python-2.0.json",
+ "referenceNumber": 110,
+ "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/HPND-Netrek.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/HPND-Netrek.json",
+ "referenceNumber": 111,
+ "name": "Historical Permission Notice and Disclaimer - Netrek variant",
+ "licenseId": "HPND-Netrek",
+ "seeAlso": [],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/mailprio.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/mailprio.json",
+ "referenceNumber": 112,
+ "name": "mailprio License",
+ "licenseId": "mailprio",
+ "seeAlso": [
+ "https://fossies.org/linux/sendmail/contrib/mailprio"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "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": 113,
+ "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=OFL10_web"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/MIT.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/MIT.json",
+ "referenceNumber": 114,
+ "name": "MIT License",
+ "licenseId": "MIT",
+ "seeAlso": [
+ "https://opensource.org/license/mit/",
+ "http://opensource.org/licenses/MIT"
+ ],
+ "isOsiApproved": true,
+ "isFsfLibre": true
+ },
+ {
+ "reference": "https://spdx.org/licenses/NPL-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/NPL-1.0.json",
+ "referenceNumber": 115,
+ "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/Entessa.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Entessa.json",
+ "referenceNumber": 116,
+ "name": "Entessa Public License v1.0",
+ "licenseId": "Entessa",
+ "seeAlso": [
+ "https://opensource.org/licenses/Entessa"
+ ],
+ "isOsiApproved": true
+ },
+ {
+ "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": 117,
+ "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/ECL-2.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/ECL-2.0.json",
+ "referenceNumber": 118,
+ "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/OLDAP-2.2.2.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/OLDAP-2.2.2.json",
+ "referenceNumber": 119,
+ "name": "Open LDAP Public License 2.2.2",
+ "licenseId": "OLDAP-2.2.2",
+ "seeAlso": [
+ "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=df2cc1e21eb7c160695f5b7cffd6296c151ba188"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/OLDAP-2.4.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/OLDAP-2.4.json",
+ "referenceNumber": 120,
+ "name": "Open LDAP Public License v2.4",
+ "licenseId": "OLDAP-2.4",
+ "seeAlso": [
+ "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=cd1284c4a91a8a380d904eee68d1583f989ed386"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/Adobe-Utopia.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Adobe-Utopia.json",
+ "referenceNumber": 121,
+ "name": "Adobe Utopia Font License",
+ "licenseId": "Adobe-Utopia",
+ "seeAlso": [
+ "https://gitlab.freedesktop.org/xorg/font/adobe-utopia-100dpi/-/blob/master/COPYING?ref_type=heads"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/AFL-1.1.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/AFL-1.1.json",
+ "referenceNumber": 122,
+ "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/SHL-0.5.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/SHL-0.5.json",
+ "referenceNumber": 123,
+ "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/CC-BY-NC-SA-2.5.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-SA-2.5.json",
+ "referenceNumber": 124,
+ "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/TOSL.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/TOSL.json",
+ "referenceNumber": 125,
+ "name": "Trusster Open Source License",
+ "licenseId": "TOSL",
+ "seeAlso": [
+ "https://fedoraproject.org/wiki/Licensing/TOSL"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "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": 126,
+ "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=OFL_web",
+ "https://opensource.org/licenses/OFL-1.1"
+ ],
+ "isOsiApproved": true
+ },
+ {
+ "reference": "https://spdx.org/licenses/APAFML.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/APAFML.json",
+ "referenceNumber": 127,
+ "name": "Adobe Postscript AFM License",
+ "licenseId": "APAFML",
+ "seeAlso": [
+ "https://fedoraproject.org/wiki/Licensing/AdobePostscriptAFM"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/BSD-Mark-Modifications.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/BSD-Mark-Modifications.json",
+ "referenceNumber": 128,
+ "name": "BSD Mark Modifications License",
+ "licenseId": "BSD-Mark-Modifications",
+ "seeAlso": [
+ "https://ftp.gnu.org/gnu/aspell/dict/en/aspell6-en-2020.12.07-0.tar.bz2"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/ECL-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/ECL-1.0.json",
+ "referenceNumber": 129,
+ "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/Spencer-86.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Spencer-86.json",
+ "referenceNumber": 130,
+ "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/generic-xts.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/generic-xts.json",
+ "referenceNumber": 131,
+ "name": "Generic XTS License",
+ "licenseId": "generic-xts",
+ "seeAlso": [
+ "https://github.com/mhogomchungu/zuluCrypt/blob/master/external_libraries/tcplay/generic_xts.c"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/RPL-1.1.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/RPL-1.1.json",
+ "referenceNumber": 132,
+ "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/FSFUL.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/FSFUL.json",
+ "referenceNumber": 133,
+ "name": "FSF Unlimited License",
+ "licenseId": "FSFUL",
+ "seeAlso": [
+ "https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/3D-Slicer-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/3D-Slicer-1.0.json",
+ "referenceNumber": 134,
+ "name": "3D Slicer License v1.0",
+ "licenseId": "3D-Slicer-1.0",
+ "seeAlso": [
+ "https://slicer.org/LICENSE",
+ "https://github.com/Slicer/Slicer/blob/main/License.txt"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/URT-RLE.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/URT-RLE.json",
+ "referenceNumber": 135,
+ "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/Adobe-Display-PostScript.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Adobe-Display-PostScript.json",
+ "referenceNumber": 136,
+ "name": "Adobe Display PostScript License",
+ "licenseId": "Adobe-Display-PostScript",
+ "seeAlso": [
+ "https://gitlab.freedesktop.org/xorg/xserver/-/blob/master/COPYING?ref_type=heads#L752"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/ZPL-1.1.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/ZPL-1.1.json",
+ "referenceNumber": 137,
+ "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/UPL-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/UPL-1.0.json",
+ "referenceNumber": 138,
+ "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/metamail.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/metamail.json",
+ "referenceNumber": 139,
+ "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/DEC-3-Clause.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/DEC-3-Clause.json",
+ "referenceNumber": 140,
+ "name": "DEC 3-Clause License",
+ "licenseId": "DEC-3-Clause",
+ "seeAlso": [
+ "https://gitlab.freedesktop.org/xorg/xserver/-/blob/master/COPYING?ref_type=heads#L239"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/Unlicense.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Unlicense.json",
+ "referenceNumber": 141,
+ "name": "The Unlicense",
+ "licenseId": "Unlicense",
+ "seeAlso": [
+ "https://unlicense.org/"
+ ],
+ "isOsiApproved": true,
+ "isFsfLibre": true
+ },
+ {
+ "reference": "https://spdx.org/licenses/HPND-doc-sell.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/HPND-doc-sell.json",
+ "referenceNumber": 142,
+ "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=heads#L108-117",
+ "https://gitlab.freedesktop.org/xorg/lib/libxext/-/blob/master/COPYING?ref_type=heads#L153-162"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/OLFL-1.3.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/OLFL-1.3.json",
+ "referenceNumber": 143,
+ "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/CECILL-2.1.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/CECILL-2.1.json",
+ "referenceNumber": 144,
+ "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/Sun-PPP-2000.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Sun-PPP-2000.json",
+ "referenceNumber": 145,
+ "name": "Sun PPP License (2000)",
+ "licenseId": "Sun-PPP-2000",
+ "seeAlso": [
+ "https://github.com/ppp-project/ppp/blob/master/modules/ppp_ahdlc.c#L7-L19"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/SUL-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/SUL-1.0.json",
+ "referenceNumber": 146,
+ "name": "Sustainable Use License v1.0",
+ "licenseId": "SUL-1.0",
+ "seeAlso": [
+ "https://github.com/n8n-io/n8n/blob/master/LICENSE.md"
+ ],
+ "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": 147,
+ "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/OLDAP-2.5.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/OLDAP-2.5.json",
+ "referenceNumber": 148,
+ "name": "Open LDAP Public License v2.5",
+ "licenseId": "OLDAP-2.5",
+ "seeAlso": [
+ "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=6852b9d90022e8593c98205413380536b1b5a7cf"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/HPND-export2-US.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/HPND-export2-US.json",
+ "referenceNumber": 149,
+ "name": "HPND with US Government export control and 2 disclaimers",
+ "licenseId": "HPND-export2-US",
+ "seeAlso": [
+ "https://github.com/krb5/krb5/blob/krb5-1.21.2-final/NOTICE#L111-L133",
+ "https://web.mit.edu/kerberos/krb5-1.21/doc/mitK5license.html"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/BSD-Advertising-Acknowledgement.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/BSD-Advertising-Acknowledgement.json",
+ "referenceNumber": 150,
+ "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/EUPL-1.2.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/EUPL-1.2.json",
+ "referenceNumber": 151,
+ "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=CELEX:32017D0863",
+ "https://opensource.org/licenses/EUPL-1.2"
+ ],
+ "isOsiApproved": true,
+ "isFsfLibre": true
+ },
+ {
+ "reference": "https://spdx.org/licenses/Plexus.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Plexus.json",
+ "referenceNumber": 152,
+ "name": "Plexus Classworlds License",
+ "licenseId": "Plexus",
+ "seeAlso": [
+ "https://fedoraproject.org/wiki/Licensing/Plexus_Classworlds_License"
+ ],
+ "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": 153,
+ "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/Motosoto.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Motosoto.json",
+ "referenceNumber": 154,
+ "name": "Motosoto License",
+ "licenseId": "Motosoto",
+ "seeAlso": [
+ "https://opensource.org/licenses/Motosoto"
+ ],
+ "isOsiApproved": true
+ },
+ {
+ "reference": "https://spdx.org/licenses/APL-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/APL-1.0.json",
+ "referenceNumber": 155,
+ "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/Cronyx.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Cronyx.json",
+ "referenceNumber": 156,
+ "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/CC-BY-NC-2.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-2.0.json",
+ "referenceNumber": 157,
+ "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/Rdisc.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Rdisc.json",
+ "referenceNumber": 158,
+ "name": "Rdisc License",
+ "licenseId": "Rdisc",
+ "seeAlso": [
+ "https://fedoraproject.org/wiki/Licensing/Rdisc_License"
+ ],
+ "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": 159,
+ "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/Elastic-2.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Elastic-2.0.json",
+ "referenceNumber": 160,
+ "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/CC-BY-3.0-NL.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/CC-BY-3.0-NL.json",
+ "referenceNumber": 161,
+ "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/LGPL-2.1+.html",
+ "isDeprecatedLicenseId": true,
+ "detailsUrl": "https://spdx.org/licenses/LGPL-2.1+.json",
+ "referenceNumber": 162,
+ "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/magaz.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/magaz.json",
+ "referenceNumber": 163,
+ "name": "magaz License",
+ "licenseId": "magaz",
+ "seeAlso": [
+ "https://mirrors.nic.cz/tex-archive/macros/latex/contrib/magaz/magaz.tex",
+ "https://mirrors.ctan.org/macros/latex/contrib/version/version.sty"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/GPL-3.0.html",
+ "isDeprecatedLicenseId": true,
+ "detailsUrl": "https://spdx.org/licenses/GPL-3.0.json",
+ "referenceNumber": 164,
+ "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/eCos-2.0.html",
+ "isDeprecatedLicenseId": true,
+ "detailsUrl": "https://spdx.org/licenses/eCos-2.0.json",
+ "referenceNumber": 165,
+ "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/psfrag.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/psfrag.json",
+ "referenceNumber": 166,
+ "name": "psfrag License",
+ "licenseId": "psfrag",
+ "seeAlso": [
+ "https://fedoraproject.org/wiki/Licensing/psfrag"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/CERN-OHL-1.1.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/CERN-OHL-1.1.json",
+ "referenceNumber": 167,
+ "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/D-FSL-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/D-FSL-1.0.json",
+ "referenceNumber": 168,
+ "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/ngrep.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/ngrep.json",
+ "referenceNumber": 169,
+ "name": "ngrep License",
+ "licenseId": "ngrep",
+ "seeAlso": [
+ "https://github.com/jpr5/ngrep/blob/master/LICENSE"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/w3m.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/w3m.json",
+ "referenceNumber": 170,
+ "name": "w3m License",
+ "licenseId": "w3m",
+ "seeAlso": [
+ "https://github.com/tats/w3m/blob/master/COPYING"
+ ],
+ "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": 171,
+ "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/TermReadKey.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/TermReadKey.json",
+ "referenceNumber": 172,
+ "name": "TermReadKey License",
+ "licenseId": "TermReadKey",
+ "seeAlso": [
+ "https://github.com/jonathanstowe/TermReadKey/blob/master/README#L9-L10"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "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": 173,
+ "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/SWL.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/SWL.json",
+ "referenceNumber": 174,
+ "name": "Scheme Widget Library (SWL) Software License Agreement",
+ "licenseId": "SWL",
+ "seeAlso": [
+ "https://fedoraproject.org/wiki/Licensing/SWL"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/OpenSSL.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/OpenSSL.json",
+ "referenceNumber": 175,
+ "name": "OpenSSL License",
+ "licenseId": "OpenSSL",
+ "seeAlso": [
+ "http://www.openssl.org/source/license.html"
+ ],
+ "isOsiApproved": false,
+ "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": 176,
+ "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/CC-BY-SA-3.0-DE.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/CC-BY-SA-3.0-DE.json",
+ "referenceNumber": 177,
+ "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/OLDAP-2.7.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/OLDAP-2.7.json",
+ "referenceNumber": 178,
+ "name": "Open LDAP Public License v2.7",
+ "licenseId": "OLDAP-2.7",
+ "seeAlso": [
+ "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=47c2415c1df81556eeb39be6cad458ef87c534a2"
+ ],
+ "isOsiApproved": false,
+ "isFsfLibre": true
+ },
+ {
+ "reference": "https://spdx.org/licenses/SAX-PD.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/SAX-PD.json",
+ "referenceNumber": 179,
+ "name": "Sax Public Domain Notice",
+ "licenseId": "SAX-PD",
+ "seeAlso": [
+ "http://www.saxproject.org/copying.html"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/HIDAPI.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/HIDAPI.json",
+ "referenceNumber": 180,
+ "name": "HIDAPI License",
+ "licenseId": "HIDAPI",
+ "seeAlso": [
+ "https://github.com/signal11/hidapi/blob/master/LICENSE-orig.txt"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/Leptonica.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Leptonica.json",
+ "referenceNumber": 181,
+ "name": "Leptonica License",
+ "licenseId": "Leptonica",
+ "seeAlso": [
+ "https://fedoraproject.org/wiki/Licensing/Leptonica"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/SSH-short.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/SSH-short.json",
+ "referenceNumber": 182,
+ "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/SimPL-2.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/SimPL-2.0.json",
+ "referenceNumber": 183,
+ "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/GFDL-1.3-only.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/GFDL-1.3-only.json",
+ "referenceNumber": 184,
+ "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/Kazlib.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Kazlib.json",
+ "referenceNumber": 185,
+ "name": "Kazlib License",
+ "licenseId": "Kazlib",
+ "seeAlso": [
+ "http://git.savannah.gnu.org/cgit/kazlib.git/tree/except.c?id=0062df360c2d17d57f6af19b0e444c51feb99036"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/CECILL-C.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/CECILL-C.json",
+ "referenceNumber": 186,
+ "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/MS-LPL.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/MS-LPL.json",
+ "referenceNumber": 187,
+ "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/CECILL-B.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/CECILL-B.json",
+ "referenceNumber": 188,
+ "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/YPL-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/YPL-1.0.json",
+ "referenceNumber": 189,
+ "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/ASWF-Digital-Assets-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/ASWF-Digital-Assets-1.0.json",
+ "referenceNumber": 190,
+ "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/wwl.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/wwl.json",
+ "referenceNumber": 191,
+ "name": "WWL License",
+ "licenseId": "wwl",
+ "seeAlso": [
+ "http://www.db.net/downloads/wwl+db-1.3.tgz"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/HTMLTIDY.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/HTMLTIDY.json",
+ "referenceNumber": 192,
+ "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/HPND-INRIA-IMAG.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/HPND-INRIA-IMAG.json",
+ "referenceNumber": 193,
+ "name": "Historical Permission Notice and Disclaimer - INRIA-IMAG variant",
+ "licenseId": "HPND-INRIA-IMAG",
+ "seeAlso": [
+ "https://github.com/ppp-project/ppp/blob/master/pppd/ipv6cp.c#L75-L83"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/xlock.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/xlock.json",
+ "referenceNumber": 194,
+ "name": "xlock License",
+ "licenseId": "xlock",
+ "seeAlso": [
+ "https://fossies.org/linux/tiff/contrib/ras/ras2tif.c"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/CC0-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/CC0-1.0.json",
+ "referenceNumber": 195,
+ "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/IEC-Code-Components-EULA.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/IEC-Code-Components-EULA.json",
+ "referenceNumber": 196,
+ "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/SugarCRM-1.1.3.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/SugarCRM-1.1.3.json",
+ "referenceNumber": 197,
+ "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/HPND-DEC.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/HPND-DEC.json",
+ "referenceNumber": 198,
+ "name": "Historical Permission Notice and Disclaimer - DEC variant",
+ "licenseId": "HPND-DEC",
+ "seeAlso": [
+ "https://gitlab.freedesktop.org/xorg/app/xkbcomp/-/blob/master/COPYING?ref_type=heads#L69"
+ ],
+ "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": 199,
+ "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/NIST-PD-fallback.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/NIST-PD-fallback.json",
+ "referenceNumber": 200,
+ "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/LiLiQ-P-1.1.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/LiLiQ-P-1.1.json",
+ "referenceNumber": 201,
+ "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",
+ "https://forge.gouv.qc.ca/licence/liliq-p/"
+ ],
+ "isOsiApproved": true
+ },
+ {
+ "reference": "https://spdx.org/licenses/Caldera.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Caldera.json",
+ "referenceNumber": 202,
+ "name": "Caldera License",
+ "licenseId": "Caldera",
+ "seeAlso": [
+ "http://www.lemis.com/grog/UNIX/ancient-source-all.pdf"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/FSFULLR.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/FSFULLR.json",
+ "referenceNumber": 203,
+ "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/pnmstitch.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/pnmstitch.json",
+ "referenceNumber": 204,
+ "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/CC-BY-NC-SA-2.0-UK.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-SA-2.0-UK.json",
+ "referenceNumber": 205,
+ "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.0-DE.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-SA-2.0-DE.json",
+ "referenceNumber": 206,
+ "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/GCR-docs.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/GCR-docs.json",
+ "referenceNumber": 207,
+ "name": "Gnome GCR Documentation License",
+ "licenseId": "GCR-docs",
+ "seeAlso": [
+ "https://github.com/GNOME/gcr/blob/master/docs/COPYING"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/CECILL-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/CECILL-1.0.json",
+ "referenceNumber": 208,
+ "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/HPND-sell-variant.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/HPND-sell-variant.json",
+ "referenceNumber": 209,
+ "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=v4.19",
+ "https://github.com/kfish/xsel/blob/master/COPYING"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/Clips.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Clips.json",
+ "referenceNumber": 210,
+ "name": "Clips License",
+ "licenseId": "Clips",
+ "seeAlso": [
+ "https://github.com/DrItanium/maya/blob/master/LICENSE.CLIPS"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/etalab-2.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/etalab-2.0.json",
+ "referenceNumber": 211,
+ "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/CC-BY-NC-SA-3.0-DE.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-SA-3.0-DE.json",
+ "referenceNumber": 212,
+ "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/libtiff.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/libtiff.json",
+ "referenceNumber": 213,
+ "name": "libtiff License",
+ "licenseId": "libtiff",
+ "seeAlso": [
+ "https://fedoraproject.org/wiki/Licensing/libtiff"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/BSD-4-Clause-Shortened.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/BSD-4-Clause-Shortened.json",
+ "referenceNumber": 214,
+ "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/curl.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/curl.json",
+ "referenceNumber": 215,
+ "name": "curl License",
+ "licenseId": "curl",
+ "seeAlso": [
+ "https://github.com/bagder/curl/blob/master/COPYING"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/Bitstream-Charter.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Bitstream-Charter.json",
+ "referenceNumber": 216,
+ "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/Apache-1.1.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Apache-1.1.json",
+ "referenceNumber": 217,
+ "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/HPND-Kevlin-Henney.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/HPND-Kevlin-Henney.json",
+ "referenceNumber": 218,
+ "name": "Historical Permission Notice and Disclaimer - Kevlin Henney variant",
+ "licenseId": "HPND-Kevlin-Henney",
+ "seeAlso": [
+ "https://github.com/mruby/mruby/blob/83d12f8d52522cdb7c8cc46fad34821359f453e6/mrbgems/mruby-dir/src/Win/dirent.c#L127-L140"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/pkgconf.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/pkgconf.json",
+ "referenceNumber": 219,
+ "name": "pkgconf License",
+ "licenseId": "pkgconf",
+ "seeAlso": [
+ "https://github.com/pkgconf/pkgconf/blob/master/cli/main.c#L8"
+ ],
+ "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": 220,
+ "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/CC-BY-SA-2.1-JP.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/CC-BY-SA-2.1-JP.json",
+ "referenceNumber": 221,
+ "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/OLDAP-1.2.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/OLDAP-1.2.json",
+ "referenceNumber": 222,
+ "name": "Open LDAP Public License v1.2",
+ "licenseId": "OLDAP-1.2",
+ "seeAlso": [
+ "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=42b0383c50c299977b5893ee695cf4e486fb0dc7"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/FSFAP-no-warranty-disclaimer.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/FSFAP-no-warranty-disclaimer.json",
+ "referenceNumber": 223,
+ "name": "FSF All Permissive License (without Warranty)",
+ "licenseId": "FSFAP-no-warranty-disclaimer",
+ "seeAlso": [
+ "https://git.savannah.gnu.org/cgit/wget.git/tree/util/trunc.c?h=v1.21.3&id=40747a11e44ced5a8ac628a41f879ced3e2ebce9#n6"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/BitTorrent-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/BitTorrent-1.0.json",
+ "referenceNumber": 224,
+ "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=1.1&r2=1.1.1.1&diff_format=s"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/Latex2e.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Latex2e.json",
+ "referenceNumber": 225,
+ "name": "Latex2e License",
+ "licenseId": "Latex2e",
+ "seeAlso": [
+ "https://fedoraproject.org/wiki/Licensing/Latex2e"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/fwlw.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/fwlw.json",
+ "referenceNumber": 226,
+ "name": "fwlw License",
+ "licenseId": "fwlw",
+ "seeAlso": [
+ "https://mirrors.nic.cz/tex-archive/macros/latex/contrib/fwlw/README"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/MIT-Modern-Variant.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/MIT-Modern-Variant.json",
+ "referenceNumber": 227,
+ "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/SGP4.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/SGP4.json",
+ "referenceNumber": 228,
+ "name": "SGP4 Permission Notice",
+ "licenseId": "SGP4",
+ "seeAlso": [
+ "https://celestrak.org/publications/AIAA/2006-6753/faq.php"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/BSD-4.3RENO.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/BSD-4.3RENO.json",
+ "referenceNumber": 229,
+ "name": "BSD 4.3 RENO License",
+ "licenseId": "BSD-4.3RENO",
+ "seeAlso": [
+ "https://sourceware.org/git/?p=binutils-gdb.git;a=blob;f=libiberty/strcasecmp.c;h=131d81c2ce7881fa48c363dc5bf5fb302c61ce0b;hb=HEAD",
+ "https://git.openldap.org/openldap/openldap/-/blob/master/COPYRIGHT#L55-63"
+ ],
+ "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": 230,
+ "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/GFDL-1.3-invariants-or-later.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/GFDL-1.3-invariants-or-later.json",
+ "referenceNumber": 231,
+ "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/LPD-document.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/LPD-document.json",
+ "referenceNumber": 232,
+ "name": "LPD Documentation License",
+ "licenseId": "LPD-document",
+ "seeAlso": [
+ "https://github.com/Cyan4973/xxHash/blob/dev/doc/xxhash_spec.md",
+ "https://www.ietf.org/rfc/rfc1952.txt"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/GFDL-1.3-invariants-only.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/GFDL-1.3-invariants-only.json",
+ "referenceNumber": 233,
+ "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/CC-BY-NC-SA-3.0-IGO.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-SA-3.0-IGO.json",
+ "referenceNumber": 234,
+ "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/HPND-doc.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/HPND-doc.json",
+ "referenceNumber": 235,
+ "name": "Historical Permission Notice and Disclaimer - documentation variant",
+ "licenseId": "HPND-doc",
+ "seeAlso": [
+ "https://gitlab.freedesktop.org/xorg/lib/libxext/-/blob/master/COPYING?ref_type=heads#L185-197",
+ "https://gitlab.freedesktop.org/xorg/lib/libxtst/-/blob/master/COPYING?ref_type=heads#L70-77"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/CNRI-Python.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/CNRI-Python.json",
+ "referenceNumber": 236,
+ "name": "CNRI Python License",
+ "licenseId": "CNRI-Python",
+ "seeAlso": [
+ "https://opensource.org/licenses/CNRI-Python"
+ ],
+ "isOsiApproved": true
+ },
+ {
+ "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": 237,
+ "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/jove.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/jove.json",
+ "referenceNumber": 238,
+ "name": "Jove License",
+ "licenseId": "jove",
+ "seeAlso": [
+ "https://github.com/jonmacs/jove/blob/4_17/LICENSE"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/Hippocratic-2.1.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Hippocratic-2.1.json",
+ "referenceNumber": 239,
+ "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/ThirdEye.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/ThirdEye.json",
+ "referenceNumber": 240,
+ "name": "ThirdEye License",
+ "licenseId": "ThirdEye",
+ "seeAlso": [
+ "https://sourceware.org/cgit/binutils-gdb/tree/include/coff/symconst.h#n11"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/NTP.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/NTP.json",
+ "referenceNumber": 241,
+ "name": "NTP License",
+ "licenseId": "NTP",
+ "seeAlso": [
+ "https://opensource.org/licenses/NTP"
+ ],
+ "isOsiApproved": true
+ },
+ {
+ "reference": "https://spdx.org/licenses/ADSL.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/ADSL.json",
+ "referenceNumber": 242,
+ "name": "Amazon Digital Services License",
+ "licenseId": "ADSL",
+ "seeAlso": [
+ "https://fedoraproject.org/wiki/Licensing/AmazonDigitalServicesLicense"
+ ],
+ "isOsiApproved": 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": 243,
+ "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/BSD-2-Clause-Darwin.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/BSD-2-Clause-Darwin.json",
+ "referenceNumber": 244,
+ "name": "BSD 2-Clause - Ian Darwin variant",
+ "licenseId": "BSD-2-Clause-Darwin",
+ "seeAlso": [
+ "https://github.com/file/file/blob/master/COPYING"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/TGPPL-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/TGPPL-1.0.json",
+ "referenceNumber": 245,
+ "name": "Transitive Grace Period Public Licence 1.0",
+ "licenseId": "TGPPL-1.0",
+ "seeAlso": [
+ "https://fedoraproject.org/wiki/Licensing/TGPPL",
+ "https://tahoe-lafs.org/trac/tahoe-lafs/browser/trunk/COPYING.TGPPL.rst"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/CC-BY-NC-SA-2.0-FR.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-SA-2.0-FR.json",
+ "referenceNumber": 246,
+ "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/LAL-1.2.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/LAL-1.2.json",
+ "referenceNumber": 247,
+ "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/CECILL-1.1.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/CECILL-1.1.json",
+ "referenceNumber": 248,
+ "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/CC-BY-ND-2.5.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/CC-BY-ND-2.5.json",
+ "referenceNumber": 249,
+ "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/GPL-2.0-with-GCC-exception.html",
+ "isDeprecatedLicenseId": true,
+ "detailsUrl": "https://spdx.org/licenses/GPL-2.0-with-GCC-exception.json",
+ "referenceNumber": 250,
+ "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=gcc.git;a=blob;f=gcc/libgcc1.c;h=762f5143fc6eed57b6797c82710f3538aa52b40b;hb=cb143a3ce4fb417c68f5fa2691a1b1b1053dfba9#l10"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/Boehm-GC.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Boehm-GC.json",
+ "referenceNumber": 251,
+ "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/hdparm.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/hdparm.json",
+ "referenceNumber": 252,
+ "name": "hdparm License",
+ "licenseId": "hdparm",
+ "seeAlso": [
+ "https://github.com/Distrotech/hdparm/blob/4517550db29a91420fb2b020349523b1b4512df2/LICENSE.TXT"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/HPND-MIT-disclaimer.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/HPND-MIT-disclaimer.json",
+ "referenceNumber": 253,
+ "name": "Historical Permission Notice and Disclaimer with MIT disclaimer",
+ "licenseId": "HPND-MIT-disclaimer",
+ "seeAlso": [
+ "https://metacpan.org/release/NLNETLABS/Net-DNS-SEC-1.22/source/LICENSE"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/OpenVision.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/OpenVision.json",
+ "referenceNumber": 254,
+ "name": "OpenVision License",
+ "licenseId": "OpenVision",
+ "seeAlso": [
+ "https://github.com/krb5/krb5/blob/krb5-1.21.2-final/NOTICE#L66-L98",
+ "https://web.mit.edu/kerberos/krb5-1.21/doc/mitK5license.html",
+ "https://fedoraproject.org/wiki/Licensing:MIT#OpenVision_Variant"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/CC-BY-NC-SA-3.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-SA-3.0.json",
+ "referenceNumber": 255,
+ "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/mplus.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/mplus.json",
+ "referenceNumber": 256,
+ "name": "mplus Font License",
+ "licenseId": "mplus",
+ "seeAlso": [
+ "https://fedoraproject.org/wiki/Licensing:Mplus?rd=Licensing/mplus"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/NOSL.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/NOSL.json",
+ "referenceNumber": 257,
+ "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/X11-no-permit-persons.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/X11-no-permit-persons.json",
+ "referenceNumber": 258,
+ "name": "X11 no permit persons clause",
+ "licenseId": "X11-no-permit-persons",
+ "seeAlso": [
+ "https://gitlab.freedesktop.org/xorg/lib/libxinerama/-/blob/cc22c2f60c3862482562955116d5455263b443dc/COPYING#L44-66"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/psutils.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/psutils.json",
+ "referenceNumber": 259,
+ "name": "psutils License",
+ "licenseId": "psutils",
+ "seeAlso": [
+ "https://fedoraproject.org/wiki/Licensing/psutils"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/AMPAS.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/AMPAS.json",
+ "referenceNumber": 260,
+ "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/DL-DE-BY-2.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/DL-DE-BY-2.0.json",
+ "referenceNumber": 261,
+ "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/Xdebug-1.03.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Xdebug-1.03.json",
+ "referenceNumber": 262,
+ "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/OFFIS.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/OFFIS.json",
+ "referenceNumber": 263,
+ "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/MIT-0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/MIT-0.json",
+ "referenceNumber": 264,
+ "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/EFL-2.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/EFL-2.0.json",
+ "referenceNumber": 265,
+ "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/Vim.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Vim.json",
+ "referenceNumber": 266,
+ "name": "Vim License",
+ "licenseId": "Vim",
+ "seeAlso": [
+ "http://vimdoc.sourceforge.net/htmldoc/uganda.html"
+ ],
+ "isOsiApproved": false,
+ "isFsfLibre": true
+ },
+ {
+ "reference": "https://spdx.org/licenses/SunPro.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/SunPro.json",
+ "referenceNumber": 267,
+ "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/xzoom.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/xzoom.json",
+ "referenceNumber": 268,
+ "name": "xzoom License",
+ "licenseId": "xzoom",
+ "seeAlso": [
+ "https://metadata.ftp-master.debian.org/changelogs//main/x/xzoom/xzoom_0.3-27_copyright"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/ICU.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/ICU.json",
+ "referenceNumber": 269,
+ "name": "ICU License",
+ "licenseId": "ICU",
+ "seeAlso": [
+ "http://source.icu-project.org/repos/icu/icu/trunk/license.html"
+ ],
+ "isOsiApproved": true
+ },
+ {
+ "reference": "https://spdx.org/licenses/SchemeReport.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/SchemeReport.json",
+ "referenceNumber": 270,
+ "name": "Scheme Language Report License",
+ "licenseId": "SchemeReport",
+ "seeAlso": [],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/Unlicense-libtelnet.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Unlicense-libtelnet.json",
+ "referenceNumber": 271,
+ "name": "Unlicense - libtelnet variant",
+ "licenseId": "Unlicense-libtelnet",
+ "seeAlso": [
+ "https://github.com/seanmiddleditch/libtelnet/blob/develop/COPYING"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/Arphic-1999.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Arphic-1999.json",
+ "referenceNumber": 272,
+ "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/python-ldap.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/python-ldap.json",
+ "referenceNumber": 273,
+ "name": "Python ldap License",
+ "licenseId": "python-ldap",
+ "seeAlso": [
+ "https://github.com/python-ldap/python-ldap/blob/main/LICENCE"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/Ubuntu-font-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Ubuntu-font-1.0.json",
+ "referenceNumber": 274,
+ "name": "Ubuntu Font Licence v1.0",
+ "licenseId": "Ubuntu-font-1.0",
+ "seeAlso": [
+ "https://ubuntu.com/legal/font-licence",
+ "https://assets.ubuntu.com/v1/81e5605d-ubuntu-font-licence-1.0.txt"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/LGPL-2.1.html",
+ "isDeprecatedLicenseId": true,
+ "detailsUrl": "https://spdx.org/licenses/LGPL-2.1.json",
+ "referenceNumber": 275,
+ "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/GL2PS.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/GL2PS.json",
+ "referenceNumber": 276,
+ "name": "GL2PS License",
+ "licenseId": "GL2PS",
+ "seeAlso": [
+ "http://www.geuz.org/gl2ps/COPYING.GL2PS"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/MulanPSL-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/MulanPSL-1.0.json",
+ "referenceNumber": 277,
+ "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/OLDAP-2.2.1.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/OLDAP-2.2.1.json",
+ "referenceNumber": 278,
+ "name": "Open LDAP Public License v2.2.1",
+ "licenseId": "OLDAP-2.2.1",
+ "seeAlso": [
+ "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=4bc786f34b50aa301be6f5600f58a980070f481e"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "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": 279,
+ "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/Libpng.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Libpng.json",
+ "referenceNumber": 280,
+ "name": "libpng License",
+ "licenseId": "Libpng",
+ "seeAlso": [
+ "http://www.libpng.org/pub/png/src/libpng-LICENSE.txt"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/gnuplot.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/gnuplot.json",
+ "referenceNumber": 281,
+ "name": "gnuplot License",
+ "licenseId": "gnuplot",
+ "seeAlso": [
+ "https://fedoraproject.org/wiki/Licensing/Gnuplot"
+ ],
+ "isOsiApproved": false,
+ "isFsfLibre": true
+ },
+ {
+ "reference": "https://spdx.org/licenses/Game-Programming-Gems.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Game-Programming-Gems.json",
+ "referenceNumber": 282,
+ "name": "Game Programming Gems License",
+ "licenseId": "Game-Programming-Gems",
+ "seeAlso": [
+ "https://github.com/OGRECave/ogre/blob/master/OgreMain/include/OgreSingleton.h#L28C3-L35C46"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/PHP-3.01.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/PHP-3.01.json",
+ "referenceNumber": 283,
+ "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/CC-BY-NC-SA-4.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-SA-4.0.json",
+ "referenceNumber": 284,
+ "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/SAX-PD-2.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/SAX-PD-2.0.json",
+ "referenceNumber": 285,
+ "name": "Sax Public Domain Notice 2.0",
+ "licenseId": "SAX-PD-2.0",
+ "seeAlso": [
+ "http://www.saxproject.org/copying.html"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/OSL-2.1.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/OSL-2.1.json",
+ "referenceNumber": 286,
+ "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/MIT-Wu.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/MIT-Wu.json",
+ "referenceNumber": 287,
+ "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/EUPL-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/EUPL-1.0.json",
+ "referenceNumber": 288,
+ "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=31096"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/ulem.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/ulem.json",
+ "referenceNumber": 289,
+ "name": "ulem License",
+ "licenseId": "ulem",
+ "seeAlso": [
+ "https://mirrors.ctan.org/macros/latex/contrib/ulem/README"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/BSD-3-Clause.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause.json",
+ "referenceNumber": 290,
+ "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/AdaCore-doc.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/AdaCore-doc.json",
+ "referenceNumber": 291,
+ "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/OSSP.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/OSSP.json",
+ "referenceNumber": 292,
+ "name": "OSSP License",
+ "licenseId": "OSSP",
+ "seeAlso": [
+ "https://git.sr.ht/~nabijaczleweli/ossp-var"
+ ],
+ "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": 293,
+ "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=glibc.git;a=blob;f=LICENSES;h=530893b1dc9ea00755603c68fb36bd4fc38a7be8;hb=HEAD#l207"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/BSD-4-Clause.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/BSD-4-Clause.json",
+ "referenceNumber": 294,
+ "name": "BSD 4-Clause \"Original\" or \"Old\" License",
+ "licenseId": "BSD-4-Clause",
+ "seeAlso": [
+ "http://directory.fsf.org/wiki/License:BSD_4Clause",
+ "https://github.com/jsommers/pytricia/blob/master/patricia.c#L33-L67"
+ ],
+ "isOsiApproved": false,
+ "isFsfLibre": true
+ },
+ {
+ "reference": "https://spdx.org/licenses/JSON.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/JSON.json",
+ "referenceNumber": 295,
+ "name": "JSON License",
+ "licenseId": "JSON",
+ "seeAlso": [
+ "http://www.json.org/license.html"
+ ],
+ "isOsiApproved": false,
+ "isFsfLibre": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/MIT-STK.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/MIT-STK.json",
+ "referenceNumber": 296,
+ "name": "MIT-STK License",
+ "licenseId": "MIT-STK",
+ "seeAlso": [
+ "https://github.com/thestk/stk/blob/6aacd357d76250bb7da2b1ddf675651828784bbc/LICENSE"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/ssh-keyscan.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/ssh-keyscan.json",
+ "referenceNumber": 297,
+ "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/HPND.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/HPND.json",
+ "referenceNumber": 298,
+ "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/FreeImage.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/FreeImage.json",
+ "referenceNumber": 299,
+ "name": "FreeImage Public License v1.0",
+ "licenseId": "FreeImage",
+ "seeAlso": [
+ "http://freeimage.sourceforge.net/freeimage-license.txt"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/RPL-1.5.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/RPL-1.5.json",
+ "referenceNumber": 300,
+ "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/HPND-sell-MIT-disclaimer-xserver.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/HPND-sell-MIT-disclaimer-xserver.json",
+ "referenceNumber": 301,
+ "name": "Historical Permission Notice and Disclaimer - sell xserver variant with MIT disclaimer",
+ "licenseId": "HPND-sell-MIT-disclaimer-xserver",
+ "seeAlso": [
+ "https://gitlab.freedesktop.org/xorg/xserver/-/blob/master/COPYING?ref_type=heads#L1781"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/ISO-permission.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/ISO-permission.json",
+ "referenceNumber": 302,
+ "name": "ISO permission notice",
+ "licenseId": "ISO-permission",
+ "seeAlso": [
+ "https://gitlab.com/agmartin/linuxdoc-tools/-/blob/master/iso-entities/COPYING?ref_type=heads",
+ "https://www.itu.int/ITU-T/formal-language/itu-t/t/t173/1997/ISOMHEG-sir.html"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/NPOSL-3.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/NPOSL-3.0.json",
+ "referenceNumber": 303,
+ "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/SSH-OpenSSH.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/SSH-OpenSSH.json",
+ "referenceNumber": 304,
+ "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/BSD-2-Clause-Patent.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/BSD-2-Clause-Patent.json",
+ "referenceNumber": 305,
+ "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/LGPL-2.0-only.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/LGPL-2.0-only.json",
+ "referenceNumber": 306,
+ "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/UnRAR.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/UnRAR.json",
+ "referenceNumber": 307,
+ "name": "UnRAR License",
+ "licenseId": "UnRAR",
+ "seeAlso": [
+ "https://public.dhe.ibm.com/aix/freeSoftware/aixtoolbox/LICENSES/unRAR.txt"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/FSFULLRSD.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/FSFULLRSD.json",
+ "referenceNumber": 308,
+ "name": "FSF Unlimited License (with License Retention and Short Disclaimer)",
+ "licenseId": "FSFULLRSD",
+ "seeAlso": [
+ "https://git.savannah.gnu.org/cgit/gnulib.git/tree/modules/COPYING?id=7b08932179d0d6b017f7df01a2ddf6e096b038e3"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/ESA-PL-weak-copyleft-2.4.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/ESA-PL-weak-copyleft-2.4.json",
+ "referenceNumber": 309,
+ "name": "European Space Agency Public License â v2.4 â Weak Copyleft (Type 2)",
+ "licenseId": "ESA-PL-weak-copyleft-2.4",
+ "seeAlso": [
+ "https://essr.esa.int/license/european-space-agency-public-license-v2-4-weak-copyleft-type-2"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/NBPL-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/NBPL-1.0.json",
+ "referenceNumber": 310,
+ "name": "Net Boolean Public License v1",
+ "licenseId": "NBPL-1.0",
+ "seeAlso": [
+ "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=37b4b3f6cc4bf34e1d3dec61e69914b9819d8894"
+ ],
+ "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": 311,
+ "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/UMich-Merit.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/UMich-Merit.json",
+ "referenceNumber": 312,
+ "name": "Michigan/Merit Networks License",
+ "licenseId": "UMich-Merit",
+ "seeAlso": [
+ "https://github.com/radcli/radcli/blob/master/COPYRIGHT#L64"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/TMate.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/TMate.json",
+ "referenceNumber": 313,
+ "name": "TMate Open Source License",
+ "licenseId": "TMate",
+ "seeAlso": [
+ "http://svnkit.com/license.html"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/WordNet.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/WordNet.json",
+ "referenceNumber": 314,
+ "name": "WordNet License",
+ "licenseId": "WordNet",
+ "seeAlso": [
+ "https://wordnet.princeton.edu/license-and-commercial-use"
+ ],
+ "isOsiApproved": true
+ },
+ {
+ "reference": "https://spdx.org/licenses/EPICS.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/EPICS.json",
+ "referenceNumber": 315,
+ "name": "EPICS Open License",
+ "licenseId": "EPICS",
+ "seeAlso": [
+ "https://epics.anl.gov/license/open.php"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/BSD-2-Clause-Views.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/BSD-2-Clause-Views.json",
+ "referenceNumber": 316,
+ "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-HP.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-HP.json",
+ "referenceNumber": 317,
+ "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-flex.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-flex.json",
+ "referenceNumber": 318,
+ "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/GPL-2.0.html",
+ "isDeprecatedLicenseId": true,
+ "detailsUrl": "https://spdx.org/licenses/GPL-2.0.json",
+ "referenceNumber": 319,
+ "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/QPL-1.0-INRIA-2004.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/QPL-1.0-INRIA-2004.json",
+ "referenceNumber": 320,
+ "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/CC-BY-NC-2.5.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-2.5.json",
+ "referenceNumber": 321,
+ "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/GPL-2.0-with-font-exception.html",
+ "isDeprecatedLicenseId": true,
+ "detailsUrl": "https://spdx.org/licenses/GPL-2.0-with-font-exception.json",
+ "referenceNumber": 322,
+ "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-only.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/GPL-2.0-only.json",
+ "referenceNumber": 323,
+ "name": "GNU General Public License v2.0 only",
+ "licenseId": "GPL-2.0-only",
+ "seeAlso": [
+ "https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",
+ "https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt",
+ "https://opensource.org/licenses/GPL-2.0",
+ "https://github.com/openjdk/jdk/blob/6162e2c5213c5dd7c1127fd9616b543efa898962/LICENSE"
+ ],
+ "isOsiApproved": true,
+ "isFsfLibre": true
+ },
+ {
+ "reference": "https://spdx.org/licenses/OFL-1.1-RFN.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/OFL-1.1-RFN.json",
+ "referenceNumber": 324,
+ "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=OFL_web",
+ "https://opensource.org/licenses/OFL-1.1"
+ ],
+ "isOsiApproved": true
+ },
+ {
+ "reference": "https://spdx.org/licenses/Ruby.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Ruby.json",
+ "referenceNumber": 325,
+ "name": "Ruby License",
+ "licenseId": "Ruby",
+ "seeAlso": [
+ "https://www.ruby-lang.org/en/about/license.txt"
+ ],
+ "isOsiApproved": false,
+ "isFsfLibre": true
+ },
+ {
+ "reference": "https://spdx.org/licenses/FSFULLRWD.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/FSFULLRWD.json",
+ "referenceNumber": 326,
+ "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/GFDL-1.1-only.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/GFDL-1.1-only.json",
+ "referenceNumber": 327,
+ "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/Info-ZIP.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Info-ZIP.json",
+ "referenceNumber": 328,
+ "name": "Info-ZIP License",
+ "licenseId": "Info-ZIP",
+ "seeAlso": [
+ "http://www.info-zip.org/license.html"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/Intel-ACPI.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Intel-ACPI.json",
+ "referenceNumber": 329,
+ "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/libpng-2.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/libpng-2.0.json",
+ "referenceNumber": 330,
+ "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": 331,
+ "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/GPL-2.0-with-classpath-exception.html",
+ "isDeprecatedLicenseId": true,
+ "detailsUrl": "https://spdx.org/licenses/GPL-2.0-with-classpath-exception.json",
+ "referenceNumber": 332,
+ "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/BUSL-1.1.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/BUSL-1.1.json",
+ "referenceNumber": 333,
+ "name": "Business Source License 1.1",
+ "licenseId": "BUSL-1.1",
+ "seeAlso": [
+ "https://mariadb.com/bsl11/"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "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": 334,
+ "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://www.gnu.org/licenses/old-licenses/lgpl-2.1.html",
+ "https://opensource.org/licenses/LGPL-2.1"
+ ],
+ "isOsiApproved": true,
+ "isFsfLibre": true
+ },
+ {
+ "reference": "https://spdx.org/licenses/ImageMagick.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/ImageMagick.json",
+ "referenceNumber": 335,
+ "name": "ImageMagick License",
+ "licenseId": "ImageMagick",
+ "seeAlso": [
+ "http://www.imagemagick.org/script/license.php"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/MMIXware.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/MMIXware.json",
+ "referenceNumber": 336,
+ "name": "MMIXware License",
+ "licenseId": "MMIXware",
+ "seeAlso": [
+ "https://gitlab.lrz.de/mmix/mmixware/-/blob/master/boilerplate.w"
+ ],
+ "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": 337,
+ "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/IPL-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/IPL-1.0.json",
+ "referenceNumber": 338,
+ "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/BSD-Protection.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/BSD-Protection.json",
+ "referenceNumber": 339,
+ "name": "BSD Protection License",
+ "licenseId": "BSD-Protection",
+ "seeAlso": [
+ "https://fedoraproject.org/wiki/Licensing/BSD_Protection_License"
+ ],
+ "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": 340,
+ "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/Linux-man-pages-1-para.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Linux-man-pages-1-para.json",
+ "referenceNumber": 341,
+ "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/SHL-0.51.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/SHL-0.51.json",
+ "referenceNumber": 342,
+ "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/BSD-4-Clause-UC.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/BSD-4-Clause-UC.json",
+ "referenceNumber": 343,
+ "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/OLDAP-2.6.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/OLDAP-2.6.json",
+ "referenceNumber": 344,
+ "name": "Open LDAP Public License v2.6",
+ "licenseId": "OLDAP-2.6",
+ "seeAlso": [
+ "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=1cae062821881f41b73012ba816434897abf4205"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/Adobe-Glyph.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Adobe-Glyph.json",
+ "referenceNumber": 345,
+ "name": "Adobe Glyph List License",
+ "licenseId": "Adobe-Glyph",
+ "seeAlso": [
+ "https://fedoraproject.org/wiki/Licensing/MIT#AdobeGlyph"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/wxWindows.html",
+ "isDeprecatedLicenseId": true,
+ "detailsUrl": "https://spdx.org/licenses/wxWindows.json",
+ "referenceNumber": 346,
+ "name": "wxWindows Library License",
+ "licenseId": "wxWindows",
+ "seeAlso": [
+ "https://opensource.org/licenses/WXwindows"
+ ],
+ "isOsiApproved": true
+ },
+ {
+ "reference": "https://spdx.org/licenses/any-OSI.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/any-OSI.json",
+ "referenceNumber": 347,
+ "name": "Any OSI License",
+ "licenseId": "any-OSI",
+ "seeAlso": [
+ "https://metacpan.org/pod/Exporter::Tidy#LICENSE"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/OPL-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/OPL-1.0.json",
+ "referenceNumber": 348,
+ "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/GPL-1.0-only.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/GPL-1.0-only.json",
+ "referenceNumber": 349,
+ "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/Aspell-RU.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Aspell-RU.json",
+ "referenceNumber": 350,
+ "name": "Aspell Russian License",
+ "licenseId": "Aspell-RU",
+ "seeAlso": [
+ "https://ftp.gnu.org/gnu/aspell/dict/ru/aspell6-ru-0.99f7-1.tar.bz2"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/FTL.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/FTL.json",
+ "referenceNumber": 351,
+ "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/BitTorrent-1.1.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/BitTorrent-1.1.json",
+ "referenceNumber": 352,
+ "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/LGPL-2.0.html",
+ "isDeprecatedLicenseId": true,
+ "detailsUrl": "https://spdx.org/licenses/LGPL-2.0.json",
+ "referenceNumber": 353,
+ "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/OSL-3.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/OSL-3.0.json",
+ "referenceNumber": 354,
+ "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/Buddy.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Buddy.json",
+ "referenceNumber": 355,
+ "name": "Buddy License",
+ "licenseId": "Buddy",
+ "seeAlso": [
+ "https://sourceforge.net/p/buddy/gitcode/ci/master/tree/README"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/CPAL-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/CPAL-1.0.json",
+ "referenceNumber": 356,
+ "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/APSL-2.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/APSL-2.0.json",
+ "referenceNumber": 357,
+ "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/CC-BY-SA-3.0-IGO.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/CC-BY-SA-3.0-IGO.json",
+ "referenceNumber": 358,
+ "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/MIT-CMU.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/MIT-CMU.json",
+ "referenceNumber": 359,
+ "name": "CMU License",
+ "licenseId": "MIT-CMU",
+ "seeAlso": [
+ "https://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#CMU_Style",
+ "https://github.com/python-pillow/Pillow/blob/fffb426092c8db24a5f4b6df243a8a3c01fb63cd/LICENSE"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/Minpack.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Minpack.json",
+ "referenceNumber": 360,
+ "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/Unicode-DFS-2015.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Unicode-DFS-2015.json",
+ "referenceNumber": 361,
+ "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/Linux-man-pages-copyleft.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Linux-man-pages-copyleft.json",
+ "referenceNumber": 362,
+ "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/CAL-1.0-Combined-Work-Exception.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/CAL-1.0-Combined-Work-Exception.json",
+ "referenceNumber": 363,
+ "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/Xnet.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Xnet.json",
+ "referenceNumber": 364,
+ "name": "X.Net License",
+ "licenseId": "Xnet",
+ "seeAlso": [
+ "https://opensource.org/licenses/Xnet"
+ ],
+ "isOsiApproved": true
+ },
+ {
+ "reference": "https://spdx.org/licenses/OSC-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/OSC-1.0.json",
+ "referenceNumber": 365,
+ "name": "OSC License 1.0",
+ "licenseId": "OSC-1.0",
+ "seeAlso": [
+ "https://opensource.org/license/osc-license-1-0"
+ ],
+ "isOsiApproved": true
+ },
+ {
+ "reference": "https://spdx.org/licenses/Cube.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Cube.json",
+ "referenceNumber": 366,
+ "name": "Cube License",
+ "licenseId": "Cube",
+ "seeAlso": [
+ "https://fedoraproject.org/wiki/Licensing/Cube"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/LPPL-1.1.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/LPPL-1.1.json",
+ "referenceNumber": 367,
+ "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/NLOD-2.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/NLOD-2.0.json",
+ "referenceNumber": 368,
+ "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/Knuth-CTAN.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Knuth-CTAN.json",
+ "referenceNumber": 369,
+ "name": "Knuth CTAN License",
+ "licenseId": "Knuth-CTAN",
+ "seeAlso": [
+ "https://ctan.org/license/knuth"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/FreeBSD-DOC.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/FreeBSD-DOC.json",
+ "referenceNumber": 370,
+ "name": "FreeBSD Documentation License",
+ "licenseId": "FreeBSD-DOC",
+ "seeAlso": [
+ "https://www.freebsd.org/copyright/freebsd-doc-license/"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/TORQUE-1.1.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/TORQUE-1.1.json",
+ "referenceNumber": 371,
+ "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/HPND-Markus-Kuhn.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/HPND-Markus-Kuhn.json",
+ "referenceNumber": 372,
+ "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=binutils-gdb.git;a=blob;f=readline/readline/support/wcwidth.c;h=0f5ec995796f4813abbcf4972aec0378ab74722a;hb=HEAD#l55"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/Adobe-2006.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Adobe-2006.json",
+ "referenceNumber": 373,
+ "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/MTLL.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/MTLL.json",
+ "referenceNumber": 374,
+ "name": "Matrix Template Library License",
+ "licenseId": "MTLL",
+ "seeAlso": [
+ "https://fedoraproject.org/wiki/Licensing/Matrix_Template_Library_License"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/ANTLR-PD.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/ANTLR-PD.json",
+ "referenceNumber": 375,
+ "name": "ANTLR Software Rights Notice",
+ "licenseId": "ANTLR-PD",
+ "seeAlso": [
+ "http://www.antlr2.org/license.html"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/Wsuipa.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Wsuipa.json",
+ "referenceNumber": 376,
+ "name": "Wsuipa License",
+ "licenseId": "Wsuipa",
+ "seeAlso": [
+ "https://fedoraproject.org/wiki/Licensing/Wsuipa"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/Artistic-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Artistic-1.0.json",
+ "referenceNumber": 377,
+ "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/COIL-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/COIL-1.0.json",
+ "referenceNumber": 378,
+ "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/OML.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/OML.json",
+ "referenceNumber": 379,
+ "name": "Open Market License",
+ "licenseId": "OML",
+ "seeAlso": [
+ "https://fedoraproject.org/wiki/Licensing/Open_Market_License"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "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": 380,
+ "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/GFDL-1.1-invariants-or-later.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/GFDL-1.1-invariants-or-later.json",
+ "referenceNumber": 381,
+ "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/SSLeay-standalone.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/SSLeay-standalone.json",
+ "referenceNumber": 382,
+ "name": "SSLeay License - standalone",
+ "licenseId": "SSLeay-standalone",
+ "seeAlso": [
+ "https://www.tq-group.com/filedownloads/files/software-license-conditions/OriginalSSLeay/OriginalSSLeay.pdf"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/C-UDA-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/C-UDA-1.0.json",
+ "referenceNumber": 383,
+ "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/HP-1989.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/HP-1989.json",
+ "referenceNumber": 384,
+ "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/Cornell-Lossless-JPEG.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Cornell-Lossless-JPEG.json",
+ "referenceNumber": 385,
+ "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/GFDL-1.3-no-invariants-or-later.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/GFDL-1.3-no-invariants-or-later.json",
+ "referenceNumber": 386,
+ "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/CC-BY-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/CC-BY-1.0.json",
+ "referenceNumber": 387,
+ "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/MMPL-1.0.1.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/MMPL-1.0.1.json",
+ "referenceNumber": 388,
+ "name": "Minecraft Mod Public License v1.0.1",
+ "licenseId": "MMPL-1.0.1",
+ "seeAlso": [
+ "https://github.com/BuildCraft/BuildCraft/blob/623d323b1868712f29f4a8b0979a02e8d1835131/LICENSE",
+ "https://mod-buildcraft.com/MMPL-1.0.txt"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/SNIA.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/SNIA.json",
+ "referenceNumber": 389,
+ "name": "SNIA Public License 1.1",
+ "licenseId": "SNIA",
+ "seeAlso": [
+ "https://fedoraproject.org/wiki/Licensing/SNIA_Public_License"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/OpenPBS-2.3.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/OpenPBS-2.3.json",
+ "referenceNumber": 390,
+ "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/NCGL-UK-2.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/NCGL-UK-2.0.json",
+ "referenceNumber": 391,
+ "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/Mackerras-3-Clause-acknowledgment.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Mackerras-3-Clause-acknowledgment.json",
+ "referenceNumber": 392,
+ "name": "Mackerras 3-Clause - acknowledgment variant",
+ "licenseId": "Mackerras-3-Clause-acknowledgment",
+ "seeAlso": [
+ "https://github.com/ppp-project/ppp/blob/master/pppd/auth.c#L6-L28"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/NTP-0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/NTP-0.json",
+ "referenceNumber": 393,
+ "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/NICTA-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/NICTA-1.0.json",
+ "referenceNumber": 394,
+ "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/Frameworx-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Frameworx-1.0.json",
+ "referenceNumber": 395,
+ "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/CNRI-Jython.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/CNRI-Jython.json",
+ "referenceNumber": 396,
+ "name": "CNRI Jython License",
+ "licenseId": "CNRI-Jython",
+ "seeAlso": [
+ "http://www.jython.org/license.html"
+ ],
+ "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": 397,
+ "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/BSD-3-Clause-No-Nuclear-License.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License.json",
+ "referenceNumber": 398,
+ "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"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/libutil-David-Nugent.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/libutil-David-Nugent.json",
+ "referenceNumber": 399,
+ "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/CC-BY-NC-ND-3.0-IGO.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-ND-3.0-IGO.json",
+ "referenceNumber": 400,
+ "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/any-OSI-perl-modules.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/any-OSI-perl-modules.json",
+ "referenceNumber": 401,
+ "name": "Any OSI License - Perl Modules",
+ "licenseId": "any-OSI-perl-modules",
+ "seeAlso": [
+ "https://metacpan.org/release/JUERD/Exporter-Tidy-0.09/view/Tidy.pm#LICENSE",
+ "https://metacpan.org/pod/Qmail::Deliverable::Client#LICENSE",
+ "https://metacpan.org/pod/Net::MQTT::Simple#LICENSE"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/MIT-advertising.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/MIT-advertising.json",
+ "referenceNumber": 402,
+ "name": "Enlightenment License (e16)",
+ "licenseId": "MIT-advertising",
+ "seeAlso": [
+ "https://fedoraproject.org/wiki/Licensing/MIT_With_Advertising"
+ ],
+ "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": 403,
+ "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/Xfig.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Xfig.json",
+ "referenceNumber": 404,
+ "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/zlib-acknowledgement.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/zlib-acknowledgement.json",
+ "referenceNumber": 405,
+ "name": "zlib/libpng License with Acknowledgement",
+ "licenseId": "zlib-acknowledgement",
+ "seeAlso": [
+ "https://fedoraproject.org/wiki/Licensing/ZlibWithAcknowledgement"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/ISC-Veillard.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/ISC-Veillard.json",
+ "referenceNumber": 406,
+ "name": "ISC Veillard variant",
+ "licenseId": "ISC-Veillard",
+ "seeAlso": [
+ "https://raw.githubusercontent.com/GNOME/libxml2/4c2e7c651f6c2f0d1a74f350cbda95f7df3e7017/hash.c",
+ "https://github.com/GNOME/libxml2/blob/master/dict.c",
+ "https://sourceforge.net/p/ctrio/git/ci/master/tree/README"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/YPL-1.1.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/YPL-1.1.json",
+ "referenceNumber": 407,
+ "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/BSD-3-Clause-Modification.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-Modification.json",
+ "referenceNumber": 408,
+ "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/Artistic-1.0-Perl.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Artistic-1.0-Perl.json",
+ "referenceNumber": 409,
+ "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/GPL-3.0-only.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/GPL-3.0-only.json",
+ "referenceNumber": 410,
+ "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/TU-Berlin-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/TU-Berlin-1.0.json",
+ "referenceNumber": 411,
+ "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/GPL-1.0+.html",
+ "isDeprecatedLicenseId": true,
+ "detailsUrl": "https://spdx.org/licenses/GPL-1.0+.json",
+ "referenceNumber": 412,
+ "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/OPUBL-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/OPUBL-1.0.json",
+ "referenceNumber": 413,
+ "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/App-s2p.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/App-s2p.json",
+ "referenceNumber": 414,
+ "name": "App::s2p License",
+ "licenseId": "App-s2p",
+ "seeAlso": [
+ "https://fedoraproject.org/wiki/Licensing/App-s2p"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/checkmk.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/checkmk.json",
+ "referenceNumber": 415,
+ "name": "Checkmk License",
+ "licenseId": "checkmk",
+ "seeAlso": [
+ "https://github.com/libcheck/check/blob/master/checkmk/checkmk.in"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/CC-BY-3.0-AU.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/CC-BY-3.0-AU.json",
+ "referenceNumber": 416,
+ "name": "Creative Commons Attribution 3.0 Australia",
+ "licenseId": "CC-BY-3.0-AU",
+ "seeAlso": [
+ "https://creativecommons.org/licenses/by/3.0/au/legalcode"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/CC-BY-NC-4.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-4.0.json",
+ "referenceNumber": 417,
+ "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/Intel.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Intel.json",
+ "referenceNumber": 418,
+ "name": "Intel Open Source License",
+ "licenseId": "Intel",
+ "seeAlso": [
+ "https://opensource.org/licenses/Intel"
+ ],
+ "isOsiApproved": true,
+ "isFsfLibre": true
+ },
+ {
+ "reference": "https://spdx.org/licenses/OFL-1.0-RFN.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/OFL-1.0-RFN.json",
+ "referenceNumber": 419,
+ "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=OFL10_web"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/MPL-2.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/MPL-2.0.json",
+ "referenceNumber": 420,
+ "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/NGPL.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/NGPL.json",
+ "referenceNumber": 421,
+ "name": "Nethack General Public License",
+ "licenseId": "NGPL",
+ "seeAlso": [
+ "https://opensource.org/licenses/NGPL"
+ ],
+ "isOsiApproved": true
+ },
+ {
+ "reference": "https://spdx.org/licenses/0BSD.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/0BSD.json",
+ "referenceNumber": 422,
+ "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/OSET-PL-2.1.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/OSET-PL-2.1.json",
+ "referenceNumber": 423,
+ "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/FBM.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/FBM.json",
+ "referenceNumber": 424,
+ "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/UnixCrypt.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/UnixCrypt.json",
+ "referenceNumber": 425,
+ "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/LGPL-3.0.html",
+ "isDeprecatedLicenseId": true,
+ "detailsUrl": "https://spdx.org/licenses/LGPL-3.0.json",
+ "referenceNumber": 426,
+ "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/MPL-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/MPL-1.0.json",
+ "referenceNumber": 427,
+ "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/Giftware.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Giftware.json",
+ "referenceNumber": 428,
+ "name": "Giftware License",
+ "licenseId": "Giftware",
+ "seeAlso": [
+ "http://liballeg.org/license.html#allegro-4-the-giftware-license"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/Beerware.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Beerware.json",
+ "referenceNumber": 429,
+ "name": "Beerware License",
+ "licenseId": "Beerware",
+ "seeAlso": [
+ "https://fedoraproject.org/wiki/Licensing/Beerware",
+ "https://people.freebsd.org/~phk/"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/Caldera-no-preamble.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Caldera-no-preamble.json",
+ "referenceNumber": 430,
+ "name": "Caldera License (without preamble)",
+ "licenseId": "Caldera-no-preamble",
+ "seeAlso": [
+ "https://github.com/apache/apr/blob/trunk/LICENSE#L298C6-L298C29"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/BSD-2-Clause.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/BSD-2-Clause.json",
+ "referenceNumber": 431,
+ "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/TTWL.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/TTWL.json",
+ "referenceNumber": 432,
+ "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/FSL-1.1-ALv2.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/FSL-1.1-ALv2.json",
+ "referenceNumber": 433,
+ "name": "Functional Source License, Version 1.1, ALv2 Future License",
+ "licenseId": "FSL-1.1-ALv2",
+ "seeAlso": [
+ "https://fsl.software/FSL-1.1-ALv2.template.md"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "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": 434,
+ "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/ESA-PL-permissive-2.4.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/ESA-PL-permissive-2.4.json",
+ "referenceNumber": 435,
+ "name": "European Space Agency Public License â v2.4 â Permissive (Type 3)",
+ "licenseId": "ESA-PL-permissive-2.4",
+ "seeAlso": [
+ "https://essr.esa.int/license/european-space-agency-public-license-v2-4-permissive-type-3"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/OSL-1.1.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/OSL-1.1.json",
+ "referenceNumber": 436,
+ "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/OCCT-PL.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/OCCT-PL.json",
+ "referenceNumber": 437,
+ "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/Interbase-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Interbase-1.0.json",
+ "referenceNumber": 438,
+ "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/AMD-newlib.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/AMD-newlib.json",
+ "referenceNumber": 439,
+ "name": "AMD newlib License",
+ "licenseId": "AMD-newlib",
+ "seeAlso": [
+ "https://sourceware.org/git/?p=newlib-cygwin.git;a=blob;f=newlib/libc/sys/a29khif/_close.S;h=04f52ae00de1dafbd9055ad8d73c5c697a3aae7f;hb=HEAD"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/QPL-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/QPL-1.0.json",
+ "referenceNumber": 440,
+ "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/libpng-1.6.35.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/libpng-1.6.35.json",
+ "referenceNumber": 441,
+ "name": "PNG Reference Library License v1 (for libpng 0.5 through 1.6.35)",
+ "licenseId": "libpng-1.6.35",
+ "seeAlso": [
+ "http://www.libpng.org/pub/png/src/libpng-LICENSE.txt"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/MITNFA.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/MITNFA.json",
+ "referenceNumber": 442,
+ "name": "MIT +no-false-attribs license",
+ "licenseId": "MITNFA",
+ "seeAlso": [
+ "https://fedoraproject.org/wiki/Licensing/MITNFA"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/OpenSSL-standalone.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/OpenSSL-standalone.json",
+ "referenceNumber": 443,
+ "name": "OpenSSL License - standalone",
+ "licenseId": "OpenSSL-standalone",
+ "seeAlso": [
+ "https://library.netapp.com/ecm/ecm_download_file/ECMP1196395",
+ "https://hstechdocs.helpsystems.com/manuals/globalscape/archive/cuteftp6/open_ssl_license_agreement.htm"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/MIT-Click.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/MIT-Click.json",
+ "referenceNumber": 444,
+ "name": "MIT Click License",
+ "licenseId": "MIT-Click",
+ "seeAlso": [
+ "https://github.com/kohler/t1utils/blob/master/LICENSE"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/BSD-Systemics-W3Works.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/BSD-Systemics-W3Works.json",
+ "referenceNumber": 445,
+ "name": "Systemics W3Works BSD variant license",
+ "licenseId": "BSD-Systemics-W3Works",
+ "seeAlso": [
+ "https://metacpan.org/release/DPARIS/Crypt-Blowfish-2.14/source/COPYRIGHT#L7"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/NIST-PD.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/NIST-PD.json",
+ "referenceNumber": 446,
+ "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/NLPL.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/NLPL.json",
+ "referenceNumber": 447,
+ "name": "No Limit Public License",
+ "licenseId": "NLPL",
+ "seeAlso": [
+ "https://fedoraproject.org/wiki/Licensing/NLPL"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/BSD-Systemics.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/BSD-Systemics.json",
+ "referenceNumber": 448,
+ "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/HPND-sell-variant-MIT-disclaimer-rev.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/HPND-sell-variant-MIT-disclaimer-rev.json",
+ "referenceNumber": 449,
+ "name": "HPND sell variant with MIT disclaimer - reverse",
+ "licenseId": "HPND-sell-variant-MIT-disclaimer-rev",
+ "seeAlso": [
+ "https://github.com/sigmavirus24/x11-ssh-askpass/blob/master/dynlist.c"
+ ],
+ "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": 450,
+ "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/GFDL-1.2-invariants-or-later.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/GFDL-1.2-invariants-or-later.json",
+ "referenceNumber": 451,
+ "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/SGI-B-2.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/SGI-B-2.0.json",
+ "referenceNumber": 452,
+ "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/Martin-Birgmeier.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Martin-Birgmeier.json",
+ "referenceNumber": 453,
+ "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/LGPL-2.0+.html",
+ "isDeprecatedLicenseId": true,
+ "detailsUrl": "https://spdx.org/licenses/LGPL-2.0+.json",
+ "referenceNumber": 454,
+ "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/WTFPL.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/WTFPL.json",
+ "referenceNumber": 455,
+ "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/Zimbra-1.3.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Zimbra-1.3.json",
+ "referenceNumber": 456,
+ "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/CC-BY-SA-3.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/CC-BY-SA-3.0.json",
+ "referenceNumber": 457,
+ "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/X11.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/X11.json",
+ "referenceNumber": 458,
+ "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/BSD-3-Clause-No-Nuclear-License-2014.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License-2014.json",
+ "referenceNumber": 459,
+ "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/AFL-2.1.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/AFL-2.1.json",
+ "referenceNumber": 460,
+ "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/CrystalStacker.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/CrystalStacker.json",
+ "referenceNumber": 461,
+ "name": "CrystalStacker License",
+ "licenseId": "CrystalStacker",
+ "seeAlso": [
+ "https://fedoraproject.org/wiki/Licensing:CrystalStacker?rd=Licensing/CrystalStacker"
+ ],
+ "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": 462,
+ "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/diffmark.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/diffmark.json",
+ "referenceNumber": 463,
+ "name": "diffmark license",
+ "licenseId": "diffmark",
+ "seeAlso": [
+ "https://fedoraproject.org/wiki/Licensing/diffmark"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/softSurfer.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/softSurfer.json",
+ "referenceNumber": 464,
+ "name": "softSurfer License",
+ "licenseId": "softSurfer",
+ "seeAlso": [
+ "https://github.com/mm2/Little-CMS/blob/master/src/cmssm.c#L207",
+ "https://fedoraproject.org/wiki/Licensing/softSurfer"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/hyphen-bulgarian.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/hyphen-bulgarian.json",
+ "referenceNumber": 465,
+ "name": "hyphen-bulgarian License",
+ "licenseId": "hyphen-bulgarian",
+ "seeAlso": [
+ "https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphen-bulgarian.tar.xz",
+ "https://gitlab.freedesktop.org/xkeyboard-config/xkeyboard-config/-/blob/959538769bfad6a73bdf34275d46520ec0f9cbb5/COPYING#L176-185"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/HPND-Intel.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/HPND-Intel.json",
+ "referenceNumber": 466,
+ "name": "Historical Permission Notice and Disclaimer - Intel variant",
+ "licenseId": "HPND-Intel",
+ "seeAlso": [
+ "https://sourceware.org/git/?p=newlib-cygwin.git;a=blob;f=newlib/libc/machine/i960/memcpy.S;hb=HEAD"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/Newsletr.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Newsletr.json",
+ "referenceNumber": 467,
+ "name": "Newsletr License",
+ "licenseId": "Newsletr",
+ "seeAlso": [
+ "https://fedoraproject.org/wiki/Licensing/Newsletr"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "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": 468,
+ "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/iMatix.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/iMatix.json",
+ "referenceNumber": 469,
+ "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/LPPL-1.3a.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/LPPL-1.3a.json",
+ "referenceNumber": 470,
+ "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/LAL-1.3.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/LAL-1.3.json",
+ "referenceNumber": 471,
+ "name": "Licence Art Libre 1.3",
+ "licenseId": "LAL-1.3",
+ "seeAlso": [
+ "https://artlibre.org/"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/OLDAP-2.1.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/OLDAP-2.1.json",
+ "referenceNumber": 472,
+ "name": "Open LDAP Public License v2.1",
+ "licenseId": "OLDAP-2.1",
+ "seeAlso": [
+ "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=b0d176738e96a0d3b9f85cb51e140a86f21be715"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/Symlinks.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Symlinks.json",
+ "referenceNumber": 473,
+ "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/OFL-1.1.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/OFL-1.1.json",
+ "referenceNumber": 474,
+ "name": "SIL Open Font License 1.1",
+ "licenseId": "OFL-1.1",
+ "seeAlso": [
+ "http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web",
+ "https://opensource.org/licenses/OFL-1.1"
+ ],
+ "isOsiApproved": true,
+ "isFsfLibre": true
+ },
+ {
+ "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": 475,
+ "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/Brian-Gladman-3-Clause.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Brian-Gladman-3-Clause.json",
+ "referenceNumber": 476,
+ "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/Artistic-1.0-cl8.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Artistic-1.0-cl8.json",
+ "referenceNumber": 477,
+ "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/AFL-3.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/AFL-3.0.json",
+ "referenceNumber": 478,
+ "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/MPL-1.1.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/MPL-1.1.json",
+ "referenceNumber": 479,
+ "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/HPND-SMC.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/HPND-SMC.json",
+ "referenceNumber": 480,
+ "name": "Historical Permission Notice and Disclaimer - SMC variant",
+ "licenseId": "HPND-SMC",
+ "seeAlso": [
+ "https://docs.python.org/3/license.html#execution-tracing"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/ISC.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/ISC.json",
+ "referenceNumber": 481,
+ "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/LGPL-2.1-only.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/LGPL-2.1-only.json",
+ "referenceNumber": 482,
+ "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://www.gnu.org/licenses/old-licenses/lgpl-2.1.html",
+ "https://opensource.org/licenses/LGPL-2.1"
+ ],
+ "isOsiApproved": true,
+ "isFsfLibre": true
+ },
+ {
+ "reference": "https://spdx.org/licenses/Zimbra-1.4.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Zimbra-1.4.json",
+ "referenceNumber": 483,
+ "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/dtoa.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/dtoa.json",
+ "referenceNumber": 484,
+ "name": "David M. Gay dtoa License",
+ "licenseId": "dtoa",
+ "seeAlso": [
+ "https://github.com/SWI-Prolog/swipl-devel/blob/master/src/os/dtoa.c",
+ "https://sourceware.org/git/?p=newlib-cygwin.git;a=blob;f=newlib/libc/stdlib/mprec.h;hb=HEAD"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/ODC-By-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/ODC-By-1.0.json",
+ "referenceNumber": 485,
+ "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/GFDL-1.1.html",
+ "isDeprecatedLicenseId": true,
+ "detailsUrl": "https://spdx.org/licenses/GFDL-1.1.json",
+ "referenceNumber": 486,
+ "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/CC-BY-ND-4.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/CC-BY-ND-4.0.json",
+ "referenceNumber": 487,
+ "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/W3C.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/W3C.json",
+ "referenceNumber": 488,
+ "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/BSD-3-Clause-Open-MPI.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-Open-MPI.json",
+ "referenceNumber": 489,
+ "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": true
+ },
+ {
+ "reference": "https://spdx.org/licenses/PSF-2.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/PSF-2.0.json",
+ "referenceNumber": 490,
+ "name": "Python Software Foundation License 2.0",
+ "licenseId": "PSF-2.0",
+ "seeAlso": [
+ "https://opensource.org/licenses/Python-2.0",
+ "https://matplotlib.org/stable/project/license.html"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "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": 491,
+ "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",
+ "https://github.com/openjdk/jdk/blob/6162e2c5213c5dd7c1127fd9616b543efa898962/LICENSE"
+ ],
+ "isOsiApproved": true,
+ "isFsfLibre": true
+ },
+ {
+ "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": 492,
+ "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/ESA-PL-strong-copyleft-2.4.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/ESA-PL-strong-copyleft-2.4.json",
+ "referenceNumber": 493,
+ "name": "European Space Agency Public License (ESA-PL) - V2.4 - Strong Copyleft (Type 1)",
+ "licenseId": "ESA-PL-strong-copyleft-2.4",
+ "seeAlso": [
+ "https://essr.esa.int/license/european-space-agency-public-license-v2-4-strong-copyleft-type-1"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/bcrypt-Solar-Designer.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/bcrypt-Solar-Designer.json",
+ "referenceNumber": 494,
+ "name": "bcrypt Solar Designer License",
+ "licenseId": "bcrypt-Solar-Designer",
+ "seeAlso": [
+ "https://github.com/bcrypt-ruby/bcrypt-ruby/blob/master/ext/mri/crypt_blowfish.c"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/AFL-1.2.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/AFL-1.2.json",
+ "referenceNumber": 495,
+ "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": 496,
+ "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/BSD-4.3TAHOE.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/BSD-4.3TAHOE.json",
+ "referenceNumber": 497,
+ "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=a74c6b4ee49397cf330b333da1042bffa60ed14f#n1788"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/LOOP.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/LOOP.json",
+ "referenceNumber": 498,
+ "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=Version_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/GFDL-1.3.html",
+ "isDeprecatedLicenseId": true,
+ "detailsUrl": "https://spdx.org/licenses/GFDL-1.3.json",
+ "referenceNumber": 499,
+ "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/SGI-OpenGL.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/SGI-OpenGL.json",
+ "referenceNumber": 500,
+ "name": "SGI OpenGL License",
+ "licenseId": "SGI-OpenGL",
+ "seeAlso": [
+ "https://gitlab.freedesktop.org/mesa/glw/-/blob/master/README?ref_type=heads"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/Unicode-DFS-2016.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Unicode-DFS-2016.json",
+ "referenceNumber": 501,
+ "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/ClArtistic.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/ClArtistic.json",
+ "referenceNumber": 502,
+ "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/PolyForm-Small-Business-1.0.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/PolyForm-Small-Business-1.0.0.json",
+ "referenceNumber": 503,
+ "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/PHP-3.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/PHP-3.0.json",
+ "referenceNumber": 504,
+ "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/HPND-export-US-acknowledgement.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/HPND-export-US-acknowledgement.json",
+ "referenceNumber": 505,
+ "name": "HPND with US Government export control warning and acknowledgment",
+ "licenseId": "HPND-export-US-acknowledgement",
+ "seeAlso": [
+ "https://github.com/krb5/krb5/blob/krb5-1.21.2-final/NOTICE#L831-L852",
+ "https://web.mit.edu/kerberos/krb5-1.21/doc/mitK5license.html"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/SISSL-1.2.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/SISSL-1.2.json",
+ "referenceNumber": 506,
+ "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/CC-BY-NC-ND-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-ND-1.0.json",
+ "referenceNumber": 507,
+ "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/IPA.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/IPA.json",
+ "referenceNumber": 508,
+ "name": "IPA Font License",
+ "licenseId": "IPA",
+ "seeAlso": [
+ "https://opensource.org/licenses/IPA"
+ ],
+ "isOsiApproved": true,
+ "isFsfLibre": true
+ },
+ {
+ "reference": "https://spdx.org/licenses/DSDP.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/DSDP.json",
+ "referenceNumber": 509,
+ "name": "DSDP License",
+ "licenseId": "DSDP",
+ "seeAlso": [
+ "https://fedoraproject.org/wiki/Licensing/DSDP"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/LiLiQ-Rplus-1.1.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/LiLiQ-Rplus-1.1.json",
+ "referenceNumber": 510,
+ "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",
+ "https://forge.gouv.qc.ca/licence/liliq-r+/"
+ ],
+ "isOsiApproved": true
+ },
+ {
+ "reference": "https://spdx.org/licenses/Advanced-Cryptics-Dictionary.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Advanced-Cryptics-Dictionary.json",
+ "referenceNumber": 511,
+ "name": "Advanced Cryptics Dictionary License",
+ "licenseId": "Advanced-Cryptics-Dictionary",
+ "seeAlso": [
+ "https://ftp.gnu.org/gnu/aspell/dict/en/aspell6-en-2020.12.07-0.tar.bz2"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/Ferguson-Twofish.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Ferguson-Twofish.json",
+ "referenceNumber": 512,
+ "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/W3C-20150513.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/W3C-20150513.json",
+ "referenceNumber": 513,
+ "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",
+ "https://www.w3.org/copyright/software-license-2015/",
+ "https://www.w3.org/copyright/software-license-2023/"
+ ],
+ "isOsiApproved": true
+ },
+ {
+ "reference": "https://spdx.org/licenses/NCL.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/NCL.json",
+ "referenceNumber": 514,
+ "name": "NCL Source Code License",
+ "licenseId": "NCL",
+ "seeAlso": [
+ "https://gitlab.freedesktop.org/pipewire/pipewire/-/blob/master/src/modules/module-filter-chain/pffft.c?ref_type=heads#L1-52"
+ ],
+ "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": 515,
+ "name": "Blue Oak Model License 1.0.0",
+ "licenseId": "BlueOak-1.0.0",
+ "seeAlso": [
+ "https://blueoakcouncil.org/license/1.0.0"
+ ],
+ "isOsiApproved": true
+ },
+ {
+ "reference": "https://spdx.org/licenses/SMPPL.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/SMPPL.json",
+ "referenceNumber": 516,
+ "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/gSOAP-1.3b.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/gSOAP-1.3b.json",
+ "referenceNumber": 517,
+ "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/Vixie-Cron.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Vixie-Cron.json",
+ "referenceNumber": 518,
+ "name": "Vixie Cron License",
+ "licenseId": "Vixie-Cron",
+ "seeAlso": [
+ "https://github.com/vixie/cron/tree/545b3f5246824a9cda5905eeb7cf019c95e66995"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/ZPL-2.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/ZPL-2.0.json",
+ "referenceNumber": 519,
+ "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/EPL-2.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/EPL-2.0.json",
+ "referenceNumber": 520,
+ "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",
+ "https://www.eclipse.org/legal/epl-v20.html",
+ "https://projects.eclipse.org/license/epl-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": 521,
+ "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/Brian-Gladman-2-Clause.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Brian-Gladman-2-Clause.json",
+ "referenceNumber": 522,
+ "name": "Brian Gladman 2-Clause License",
+ "licenseId": "Brian-Gladman-2-Clause",
+ "seeAlso": [
+ "https://github.com/krb5/krb5/blob/krb5-1.21.2-final/NOTICE#L140-L156",
+ "https://web.mit.edu/kerberos/krb5-1.21/doc/mitK5license.html"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/Soundex.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Soundex.json",
+ "referenceNumber": 523,
+ "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/BSD-2-Clause-first-lines.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/BSD-2-Clause-first-lines.json",
+ "referenceNumber": 524,
+ "name": "BSD 2-Clause - first lines requirement",
+ "licenseId": "BSD-2-Clause-first-lines",
+ "seeAlso": [
+ "https://github.com/krb5/krb5/blob/krb5-1.21.2-final/NOTICE#L664-L690",
+ "https://web.mit.edu/kerberos/krb5-1.21/doc/mitK5license.html"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/Bahyph.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Bahyph.json",
+ "referenceNumber": 525,
+ "name": "Bahyph License",
+ "licenseId": "Bahyph",
+ "seeAlso": [
+ "https://fedoraproject.org/wiki/Licensing/Bahyph"
+ ],
+ "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": 526,
+ "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/SSPL-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/SSPL-1.0.json",
+ "referenceNumber": 527,
+ "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/CC-BY-NC-ND-3.0-DE.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-ND-3.0-DE.json",
+ "referenceNumber": 528,
+ "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/HPND-Fenneberg-Livingston.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/HPND-Fenneberg-Livingston.json",
+ "referenceNumber": 529,
+ "name": "Historical Permission Notice and Disclaimer - Fenneberg-Livingston variant",
+ "licenseId": "HPND-Fenneberg-Livingston",
+ "seeAlso": [
+ "https://github.com/FreeRADIUS/freeradius-client/blob/master/COPYRIGHT#L32",
+ "https://github.com/radcli/radcli/blob/master/COPYRIGHT#L34"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/HPND-UC-export-US.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/HPND-UC-export-US.json",
+ "referenceNumber": 530,
+ "name": "Historical Permission Notice and Disclaimer - University of California, US export warning",
+ "licenseId": "HPND-UC-export-US",
+ "seeAlso": [
+ "https://github.com/RTimothyEdwards/magic/blob/master/LICENSE"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/TPL-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/TPL-1.0.json",
+ "referenceNumber": 531,
+ "name": "THOR Public License 1.0",
+ "licenseId": "TPL-1.0",
+ "seeAlso": [
+ "https://fedoraproject.org/wiki/Licensing:ThorPublicLicense"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/LPL-1.02.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/LPL-1.02.json",
+ "referenceNumber": 532,
+ "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/Xerox.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Xerox.json",
+ "referenceNumber": 533,
+ "name": "Xerox License",
+ "licenseId": "Xerox",
+ "seeAlso": [
+ "https://fedoraproject.org/wiki/Licensing/Xerox"
+ ],
+ "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": 534,
+ "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/CC-BY-3.0-AT.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/CC-BY-3.0-AT.json",
+ "referenceNumber": 535,
+ "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/Zend-2.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Zend-2.0.json",
+ "referenceNumber": 536,
+ "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/BSD-2-Clause-FreeBSD.html",
+ "isDeprecatedLicenseId": true,
+ "detailsUrl": "https://spdx.org/licenses/BSD-2-Clause-FreeBSD.json",
+ "referenceNumber": 537,
+ "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/RSA-MD.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/RSA-MD.json",
+ "referenceNumber": 538,
+ "name": "RSA Message-Digest License",
+ "licenseId": "RSA-MD",
+ "seeAlso": [
+ "http://www.faqs.org/rfcs/rfc1321.html"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/TCP-wrappers.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/TCP-wrappers.json",
+ "referenceNumber": 539,
+ "name": "TCP Wrappers License",
+ "licenseId": "TCP-wrappers",
+ "seeAlso": [
+ "http://rc.quest.com/topics/openssh/license.php#tcpwrappers"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/Lucida-Bitmap-Fonts.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Lucida-Bitmap-Fonts.json",
+ "referenceNumber": 540,
+ "name": "Lucida Bitmap Fonts License",
+ "licenseId": "Lucida-Bitmap-Fonts",
+ "seeAlso": [
+ "https://gitlab.freedesktop.org/xorg/font/bh-100dpi/-/blob/master/COPYING?ref_type=heads"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/LPPL-1.2.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/LPPL-1.2.json",
+ "referenceNumber": 541,
+ "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/HPND-sell-variant-MIT-disclaimer.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/HPND-sell-variant-MIT-disclaimer.json",
+ "referenceNumber": 542,
+ "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/Barr.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Barr.json",
+ "referenceNumber": 543,
+ "name": "Barr License",
+ "licenseId": "Barr",
+ "seeAlso": [
+ "https://fedoraproject.org/wiki/Licensing/Barr"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "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": 544,
+ "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/CC-BY-NC-SA-2.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-SA-2.0.json",
+ "referenceNumber": 545,
+ "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/SGI-B-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/SGI-B-1.0.json",
+ "referenceNumber": 546,
+ "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/Multics.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Multics.json",
+ "referenceNumber": 547,
+ "name": "Multics License",
+ "licenseId": "Multics",
+ "seeAlso": [
+ "https://opensource.org/licenses/Multics"
+ ],
+ "isOsiApproved": true
+ },
+ {
+ "reference": "https://spdx.org/licenses/TekHVC.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/TekHVC.json",
+ "referenceNumber": 548,
+ "name": "TekHVC License",
+ "licenseId": "TekHVC",
+ "seeAlso": [
+ "https://gitlab.freedesktop.org/xorg/lib/libx11/-/blob/master/COPYING?ref_type=heads#L138-171"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/GD.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/GD.json",
+ "referenceNumber": 549,
+ "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/NCBI-PD.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/NCBI-PD.json",
+ "referenceNumber": 550,
+ "name": "NCBI Public Domain Notice",
+ "licenseId": "NCBI-PD",
+ "seeAlso": [
+ "https://github.com/ncbi/sra-tools/blob/e8e5b6af4edc460156ad9ce5902d0779cffbf685/LICENSE",
+ "https://github.com/ncbi/datasets/blob/0ea4cd16b61e5b799d9cc55aecfa016d6c9bd2bf/LICENSE.md",
+ "https://github.com/ncbi/gprobe/blob/de64d30fee8b4c4013094d7d3139ea89b5dd1ace/LICENSE",
+ "https://github.com/ncbi/egapx/blob/08930b9dec0c69b2d1a05e5153c7b95ef0a3eb0f/LICENSE",
+ "https://github.com/ncbi/datasets/blob/master/LICENSE.md"
+ ],
+ "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": 551,
+ "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/Sendmail-8.23.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Sendmail-8.23.json",
+ "referenceNumber": 552,
+ "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/dvipdfm.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/dvipdfm.json",
+ "referenceNumber": 553,
+ "name": "dvipdfm License",
+ "licenseId": "dvipdfm",
+ "seeAlso": [
+ "https://fedoraproject.org/wiki/Licensing/dvipdfm"
+ ],
+ "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": 554,
+ "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/MIT-open-group.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/MIT-open-group.json",
+ "referenceNumber": 555,
+ "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/xsetroot/-/blob/master/COPYING",
+ "https://gitlab.freedesktop.org/xorg/app/xauth/-/blob/master/COPYING"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/LGPL-3.0+.html",
+ "isDeprecatedLicenseId": true,
+ "detailsUrl": "https://spdx.org/licenses/LGPL-3.0+.json",
+ "referenceNumber": 556,
+ "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/GFDL-1.1-no-invariants-only.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/GFDL-1.1-no-invariants-only.json",
+ "referenceNumber": 557,
+ "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/CC-BY-SA-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/CC-BY-SA-1.0.json",
+ "referenceNumber": 558,
+ "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/OLDAP-1.1.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/OLDAP-1.1.json",
+ "referenceNumber": 559,
+ "name": "Open LDAP Public License v1.1",
+ "licenseId": "OLDAP-1.1",
+ "seeAlso": [
+ "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=806557a5ad59804ef3a44d5abfbe91d706b0791f"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/Afmparse.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Afmparse.json",
+ "referenceNumber": 560,
+ "name": "Afmparse License",
+ "licenseId": "Afmparse",
+ "seeAlso": [
+ "https://fedoraproject.org/wiki/Licensing/Afmparse"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/HaskellReport.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/HaskellReport.json",
+ "referenceNumber": 561,
+ "name": "Haskell Language Report License",
+ "licenseId": "HaskellReport",
+ "seeAlso": [
+ "https://fedoraproject.org/wiki/Licensing/Haskell_Language_Report_License"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/DOC.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/DOC.json",
+ "referenceNumber": 562,
+ "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/LGPL-3.0-or-later.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/LGPL-3.0-or-later.json",
+ "referenceNumber": 563,
+ "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/Baekmuk.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Baekmuk.json",
+ "referenceNumber": 564,
+ "name": "Baekmuk License",
+ "licenseId": "Baekmuk",
+ "seeAlso": [
+ "https://fedoraproject.org/wiki/Licensing:Baekmuk?rd=Licensing/Baekmuk"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/EUDatagrid.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/EUDatagrid.json",
+ "referenceNumber": 565,
+ "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/Condor-1.1.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Condor-1.1.json",
+ "referenceNumber": 566,
+ "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/CDLA-Sharing-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/CDLA-Sharing-1.0.json",
+ "referenceNumber": 567,
+ "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/WTFNMFPL.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/WTFNMFPL.json",
+ "referenceNumber": 568,
+ "name": "Do What The F*ck You Want To But It's Not My Fault Public License",
+ "licenseId": "WTFNMFPL",
+ "seeAlso": [
+ "https://github.com/adversary-org/wtfnmf/raw/refs/tags/1.0/COPYING.WTFNMFPL",
+ "https://github.com/adversary-org/wtfnmf/raw/3f2cd8235a64350a57a51b9739715edaea63ec1a/COPYING.WTFNMFPL-utf8"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/X11-swapped.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/X11-swapped.json",
+ "referenceNumber": 569,
+ "name": "X11 swapped final paragraphs",
+ "licenseId": "X11-swapped",
+ "seeAlso": [
+ "https://github.com/fedeinthemix/chez-srfi/blob/master/srfi/LICENSE"
+ ],
+ "isOsiApproved": 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": 570,
+ "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/RSCPL.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/RSCPL.json",
+ "referenceNumber": 571,
+ "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/DocBook-XML.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/DocBook-XML.json",
+ "referenceNumber": 572,
+ "name": "DocBook XML License",
+ "licenseId": "DocBook-XML",
+ "seeAlso": [
+ "https://github.com/docbook/xslt10-stylesheets/blob/efd62655c11cc8773708df7a843613fa1e932bf8/xsl/COPYING#L27"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/GLWTPL.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/GLWTPL.json",
+ "referenceNumber": 573,
+ "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/CC-PDDC.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/CC-PDDC.json",
+ "referenceNumber": 574,
+ "name": "Creative Commons Public Domain Dedication and Certification",
+ "licenseId": "CC-PDDC",
+ "seeAlso": [
+ "https://creativecommons.org/licenses/publicdomain/"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/BSD-3-Clause-Attribution.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-Attribution.json",
+ "referenceNumber": 575,
+ "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/Sleepycat.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Sleepycat.json",
+ "referenceNumber": 576,
+ "name": "Sleepycat License",
+ "licenseId": "Sleepycat",
+ "seeAlso": [
+ "https://opensource.org/licenses/Sleepycat"
+ ],
+ "isOsiApproved": true,
+ "isFsfLibre": true
+ },
+ {
+ "reference": "https://spdx.org/licenses/DRL-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/DRL-1.0.json",
+ "referenceNumber": 577,
+ "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/JPNIC.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/JPNIC.json",
+ "referenceNumber": 578,
+ "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/BSD-3-Clause-Clear.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-Clear.json",
+ "referenceNumber": 579,
+ "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/Boehm-GC-without-fee.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Boehm-GC-without-fee.json",
+ "referenceNumber": 580,
+ "name": "Boehm-Demers-Weiser GC License (without fee)",
+ "licenseId": "Boehm-GC-without-fee",
+ "seeAlso": [
+ "https://github.com/MariaDB/server/blob/11.6/libmysqld/lib_sql.cc"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/APSL-1.2.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/APSL-1.2.json",
+ "referenceNumber": 581,
+ "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/MPEG-SSG.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/MPEG-SSG.json",
+ "referenceNumber": 582,
+ "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/BSD-Inferno-Nettverk.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/BSD-Inferno-Nettverk.json",
+ "referenceNumber": 583,
+ "name": "BSD-Inferno-Nettverk",
+ "licenseId": "BSD-Inferno-Nettverk",
+ "seeAlso": [
+ "https://www.inet.no/dante/LICENSE"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/Dotseqn.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Dotseqn.json",
+ "referenceNumber": 584,
+ "name": "Dotseqn License",
+ "licenseId": "Dotseqn",
+ "seeAlso": [
+ "https://fedoraproject.org/wiki/Licensing/Dotseqn"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/CPL-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/CPL-1.0.json",
+ "referenceNumber": 585,
+ "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/HP-1986.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/HP-1986.json",
+ "referenceNumber": 586,
+ "name": "Hewlett-Packard 1986 License",
+ "licenseId": "HP-1986",
+ "seeAlso": [
+ "https://sourceware.org/git/?p=newlib-cygwin.git;a=blob;f=newlib/libc/machine/hppa/memchr.S;h=1cca3e5e8867aa4bffef1f75a5c1bba25c0c441e;hb=HEAD#l2"
+ ],
+ "isOsiApproved": 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": 587,
+ "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/GFDL-1.1-invariants-only.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/GFDL-1.1-invariants-only.json",
+ "referenceNumber": 588,
+ "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/TPDL.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/TPDL.json",
+ "referenceNumber": 589,
+ "name": "Time::ParseDate License",
+ "licenseId": "TPDL",
+ "seeAlso": [
+ "https://metacpan.org/pod/Time::ParseDate#LICENSE"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/APSL-1.1.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/APSL-1.1.json",
+ "referenceNumber": 590,
+ "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/BSL-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/BSL-1.0.json",
+ "referenceNumber": 591,
+ "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/xkeyboard-config-Zinoviev.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/xkeyboard-config-Zinoviev.json",
+ "referenceNumber": 592,
+ "name": "xkeyboard-config Zinoviev License",
+ "licenseId": "xkeyboard-config-Zinoviev",
+ "seeAlso": [
+ "https://gitlab.freedesktop.org/xkeyboard-config/xkeyboard-config/-/blob/master/COPYING?ref_type=heads#L178"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/XSkat.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/XSkat.json",
+ "referenceNumber": 593,
+ "name": "XSkat License",
+ "licenseId": "XSkat",
+ "seeAlso": [
+ "https://fedoraproject.org/wiki/Licensing/XSkat_License"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/PADL.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/PADL.json",
+ "referenceNumber": 594,
+ "name": "PADL License",
+ "licenseId": "PADL",
+ "seeAlso": [
+ "https://git.openldap.org/openldap/openldap/-/blob/master/libraries/libldap/os-local.c?ref_type=heads#L19-23"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/FDK-AAC.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/FDK-AAC.json",
+ "referenceNumber": 595,
+ "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/CPOL-1.02.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/CPOL-1.02.json",
+ "referenceNumber": 596,
+ "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/MIT-Khronos-old.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/MIT-Khronos-old.json",
+ "referenceNumber": 597,
+ "name": "MIT Khronos - old variant",
+ "licenseId": "MIT-Khronos-old",
+ "seeAlso": [
+ "https://github.com/KhronosGroup/SPIRV-Cross/blob/main/LICENSES/LicenseRef-KhronosFreeUse.txt"
+ ],
+ "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": 598,
+ "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": 599,
+ "name": "bzip2 and libbzip2 License v1.0.6",
+ "licenseId": "bzip2-1.0.6",
+ "seeAlso": [
+ "https://sourceware.org/git/?p=bzip2.git;a=blob;f=LICENSE;hb=bzip2-1.0.6",
+ "http://bzip.org/1.0.5/bzip2-manual-1.0.5.html",
+ "https://sourceware.org/cgit/valgrind/tree/mpi/libmpiwrap.c"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/CC-BY-NC-ND-3.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-ND-3.0.json",
+ "referenceNumber": 600,
+ "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/BSD-3-Clause-No-Nuclear-Warranty.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-Warranty.json",
+ "referenceNumber": 601,
+ "name": "BSD 3-Clause No Nuclear Warranty",
+ "licenseId": "BSD-3-Clause-No-Nuclear-Warranty",
+ "seeAlso": [
+ "https://jogamp.org/git/?p=gluegen.git;a=blob_plain;f=LICENSE.txt"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/O-UDA-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/O-UDA-1.0.json",
+ "referenceNumber": 602,
+ "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/ZPL-2.1.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/ZPL-2.1.json",
+ "referenceNumber": 603,
+ "name": "Zope Public License 2.1",
+ "licenseId": "ZPL-2.1",
+ "seeAlso": [
+ "http://old.zope.org/Resources/ZPL/"
+ ],
+ "isOsiApproved": true,
+ "isFsfLibre": true
+ },
+ {
+ "reference": "https://spdx.org/licenses/Spencer-94.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Spencer-94.json",
+ "referenceNumber": 604,
+ "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/Artistic-dist.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Artistic-dist.json",
+ "referenceNumber": 605,
+ "name": "Artistic License 1.0 (dist)",
+ "licenseId": "Artistic-dist",
+ "seeAlso": [
+ "https://github.com/pexip/os-perl/blob/833cf4c86cc465ccfc627ff16db67e783156a248/debian/copyright#L2720-L2845"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/BOLA-1.1.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/BOLA-1.1.json",
+ "referenceNumber": 606,
+ "name": "Buena Onda License Agreement v1.1",
+ "licenseId": "BOLA-1.1",
+ "seeAlso": [
+ "https://blitiri.com.ar/p/bola/"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/OLDAP-1.3.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/OLDAP-1.3.json",
+ "referenceNumber": 607,
+ "name": "Open LDAP Public License v1.3",
+ "licenseId": "OLDAP-1.3",
+ "seeAlso": [
+ "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=e5f8117f0ce088d0bd7a8e18ddf37eaa40eb09b1"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/Zed.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Zed.json",
+ "referenceNumber": 608,
+ "name": "Zed License",
+ "licenseId": "Zed",
+ "seeAlso": [
+ "https://fedoraproject.org/wiki/Licensing/Zed"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/MIT-enna.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/MIT-enna.json",
+ "referenceNumber": 609,
+ "name": "enna License",
+ "licenseId": "MIT-enna",
+ "seeAlso": [
+ "https://fedoraproject.org/wiki/Licensing/MIT#enna"
+ ],
+ "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": 610,
+ "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/Linux-man-pages-copyleft-2-para.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Linux-man-pages-copyleft-2-para.json",
+ "referenceNumber": 611,
+ "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/RHeCos-1.1.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/RHeCos-1.1.json",
+ "referenceNumber": 612,
+ "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/radvd.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/radvd.json",
+ "referenceNumber": 613,
+ "name": "radvd License",
+ "licenseId": "radvd",
+ "seeAlso": [
+ "https://github.com/radvd-project/radvd/blob/master/COPYRIGHT"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/cve-tou.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/cve-tou.json",
+ "referenceNumber": 614,
+ "name": "Common Vulnerability Enumeration ToU License",
+ "licenseId": "cve-tou",
+ "seeAlso": [
+ "https://www.cve.org/Legal/TermsOfUse"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/AML.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/AML.json",
+ "referenceNumber": 615,
+ "name": "Apple MIT License",
+ "licenseId": "AML",
+ "seeAlso": [
+ "https://fedoraproject.org/wiki/Licensing/Apple_MIT_License"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/SOFA.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/SOFA.json",
+ "referenceNumber": 616,
+ "name": "SOFA Software License",
+ "licenseId": "SOFA",
+ "seeAlso": [
+ "http://www.iausofa.org/tandc.html"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/blessing.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/blessing.json",
+ "referenceNumber": 617,
+ "name": "SQLite Blessing",
+ "licenseId": "blessing",
+ "seeAlso": [
+ "https://www.sqlite.org/src/artifact/e33a4df7e32d742a?ln=4-9",
+ "https://sqlite.org/src/artifact/df5091916dbb40e6"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/EUPL-1.1.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/EUPL-1.1.json",
+ "referenceNumber": 618,
+ "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/CERN-OHL-S-2.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/CERN-OHL-S-2.0.json",
+ "referenceNumber": 619,
+ "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/CC-BY-SA-2.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/CC-BY-SA-2.0.json",
+ "referenceNumber": 620,
+ "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/CAPEC-tou.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/CAPEC-tou.json",
+ "referenceNumber": 621,
+ "name": "Common Attack Pattern Enumeration and Classification License",
+ "licenseId": "CAPEC-tou",
+ "seeAlso": [
+ "https://capec.mitre.org/about/termsofuse.html"
+ ],
+ "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": 622,
+ "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/PolyForm-Noncommercial-1.0.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/PolyForm-Noncommercial-1.0.0.json",
+ "referenceNumber": 623,
+ "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/XFree86-1.1.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/XFree86-1.1.json",
+ "referenceNumber": 624,
+ "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/ParaType-Free-Font-1.3.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/ParaType-Free-Font-1.3.json",
+ "referenceNumber": 625,
+ "name": "ParaType Free Font Licensing Agreement v1.3",
+ "licenseId": "ParaType-Free-Font-1.3",
+ "seeAlso": [
+ "https://web.archive.org/web/20161209023955/http://www.paratype.ru/public/pt_openlicense_eng.asp",
+ "https://metadata.ftp-master.debian.org/changelogs//main/f/fonts-paratype/fonts-paratype_20181108-4_copyright"
+ ],
+ "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": 626,
+ "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/ODbL-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/ODbL-1.0.json",
+ "referenceNumber": 627,
+ "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/SPL-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/SPL-1.0.json",
+ "referenceNumber": 628,
+ "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/Linux-man-pages-copyleft-var.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Linux-man-pages-copyleft-var.json",
+ "referenceNumber": 629,
+ "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/Widget-Workshop.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Widget-Workshop.json",
+ "referenceNumber": 630,
+ "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/Artistic-2.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Artistic-2.0.json",
+ "referenceNumber": 631,
+ "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/LiLiQ-R-1.1.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/LiLiQ-R-1.1.json",
+ "referenceNumber": 632,
+ "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",
+ "https://forge.gouv.qc.ca/licence/liliq-p"
+ ],
+ "isOsiApproved": true
+ },
+ {
+ "reference": "https://spdx.org/licenses/Parity-7.0.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Parity-7.0.0.json",
+ "referenceNumber": 633,
+ "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/xinetd.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/xinetd.json",
+ "referenceNumber": 634,
+ "name": "xinetd License",
+ "licenseId": "xinetd",
+ "seeAlso": [
+ "https://fedoraproject.org/wiki/Licensing/Xinetd_License"
+ ],
+ "isOsiApproved": false,
+ "isFsfLibre": true
+ },
+ {
+ "reference": "https://spdx.org/licenses/AGPL-1.0.html",
+ "isDeprecatedLicenseId": true,
+ "detailsUrl": "https://spdx.org/licenses/AGPL-1.0.json",
+ "referenceNumber": 635,
+ "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/NPL-1.1.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/NPL-1.1.json",
+ "referenceNumber": 636,
+ "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/Gutmann.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Gutmann.json",
+ "referenceNumber": 637,
+ "name": "Gutmann License",
+ "licenseId": "Gutmann",
+ "seeAlso": [
+ "https://www.cs.auckland.ac.nz/~pgut001/dumpasn1.c"
+ ],
+ "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": 638,
+ "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/Linux-OpenIB.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Linux-OpenIB.json",
+ "referenceNumber": 639,
+ "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/CC-BY-4.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/CC-BY-4.0.json",
+ "referenceNumber": 640,
+ "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/SGMLUG-PM.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/SGMLUG-PM.json",
+ "referenceNumber": 641,
+ "name": "SGMLUG Parser Materials License",
+ "licenseId": "SGMLUG-PM",
+ "seeAlso": [
+ "https://gitweb.gentoo.org/repo/gentoo.git/tree/licenses/SGMLUG?id=7d999af4a47bf55e53e54713d98d145f935935c1"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/Pixar.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Pixar.json",
+ "referenceNumber": 642,
+ "name": "Pixar License",
+ "licenseId": "Pixar",
+ "seeAlso": [
+ "https://github.com/PixarAnimationStudios/OpenSubdiv/raw/v3_5_0/LICENSE.txt",
+ "https://graphics.pixar.com/opensubdiv/docs/license.html",
+ "https://github.com/PixarAnimationStudios/OpenSubdiv/blob/v3_5_0/opensubdiv/version.cpp#L2-L22"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/DocBook-Stylesheet.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/DocBook-Stylesheet.json",
+ "referenceNumber": 643,
+ "name": "DocBook Stylesheet License",
+ "licenseId": "DocBook-Stylesheet",
+ "seeAlso": [
+ "http://www.docbook.org/xml/5.0/docbook-5.0.zip"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/IJG-short.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/IJG-short.json",
+ "referenceNumber": 644,
+ "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/AMDPLPA.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/AMDPLPA.json",
+ "referenceNumber": 645,
+ "name": "AMD's plpa_map.c License",
+ "licenseId": "AMDPLPA",
+ "seeAlso": [
+ "https://fedoraproject.org/wiki/Licensing/AMD_plpa_map_License"
+ ],
+ "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": 646,
+ "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/GFDL-1.3-no-invariants-only.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/GFDL-1.3-no-invariants-only.json",
+ "referenceNumber": 647,
+ "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/SCEA.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/SCEA.json",
+ "referenceNumber": 648,
+ "name": "SCEA Shared Source License",
+ "licenseId": "SCEA",
+ "seeAlso": [
+ "http://research.scea.com/scea_shared_source_license.html"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/OGTSL.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/OGTSL.json",
+ "referenceNumber": 649,
+ "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/BSD-3-Clause-Tso.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-Tso.json",
+ "referenceNumber": 650,
+ "name": "BSD 3-Clause Tso variant",
+ "licenseId": "BSD-3-Clause-Tso",
+ "seeAlso": [
+ "https://www.x.org/archive/current/doc/xorg-docs/License.html#Theodore_Tso"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/MIT-testregex.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/MIT-testregex.json",
+ "referenceNumber": 651,
+ "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/SL.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/SL.json",
+ "referenceNumber": 652,
+ "name": "SL License",
+ "licenseId": "SL",
+ "seeAlso": [
+ "https://github.com/mtoyoda/sl/blob/master/LICENSE"
+ ],
+ "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": 653,
+ "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/HPND-Pbmplus.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/HPND-Pbmplus.json",
+ "referenceNumber": 654,
+ "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/Imlib2.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Imlib2.json",
+ "referenceNumber": 655,
+ "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/UCAR.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/UCAR.json",
+ "referenceNumber": 656,
+ "name": "UCAR License",
+ "licenseId": "UCAR",
+ "seeAlso": [
+ "https://github.com/Unidata/UDUNITS-2/blob/master/COPYRIGHT"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/Naumen.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Naumen.json",
+ "referenceNumber": 657,
+ "name": "Naumen Public License",
+ "licenseId": "Naumen",
+ "seeAlso": [
+ "https://opensource.org/licenses/Naumen"
+ ],
+ "isOsiApproved": true
+ },
+ {
+ "reference": "https://spdx.org/licenses/Unicode-TOU.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Unicode-TOU.json",
+ "referenceNumber": 658,
+ "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/lsof.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/lsof.json",
+ "referenceNumber": 659,
+ "name": "lsof License",
+ "licenseId": "lsof",
+ "seeAlso": [
+ "https://github.com/lsof-org/lsof/blob/master/COPYING"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/AGPL-1.0-only.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/AGPL-1.0-only.json",
+ "referenceNumber": 660,
+ "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/TrustedQSL.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/TrustedQSL.json",
+ "referenceNumber": 661,
+ "name": "TrustedQSL License",
+ "licenseId": "TrustedQSL",
+ "seeAlso": [
+ "https://sourceforge.net/p/trustedqsl/tqsl/ci/master/tree/LICENSE.txt"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/CDDL-1.1.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/CDDL-1.1.json",
+ "referenceNumber": 662,
+ "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/OLDAP-2.2.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/OLDAP-2.2.json",
+ "referenceNumber": 663,
+ "name": "Open LDAP Public License v2.2",
+ "licenseId": "OLDAP-2.2",
+ "seeAlso": [
+ "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=470b0c18ec67621c85881b2733057fecf4a1acc3"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/Zlib.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Zlib.json",
+ "referenceNumber": 664,
+ "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/JasPer-2.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/JasPer-2.0.json",
+ "referenceNumber": 665,
+ "name": "JasPer License",
+ "licenseId": "JasPer-2.0",
+ "seeAlso": [
+ "http://www.ece.uvic.ca/~mdadams/jasper/LICENSE"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "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": 666,
+ "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/NLOD-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/NLOD-1.0.json",
+ "referenceNumber": 667,
+ "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/HPND-sell-regexpr.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/HPND-sell-regexpr.json",
+ "referenceNumber": 668,
+ "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=heads#L245"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/PPL.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/PPL.json",
+ "referenceNumber": 669,
+ "name": "Peer Production License",
+ "licenseId": "PPL",
+ "seeAlso": [
+ "https://wiki.p2pfoundation.net/Peer_Production_License",
+ "http://www.networkcultures.org/_uploads/%233notebook_telekommunist.pdf"
+ ],
+ "isOsiApproved": false,
+ "isFsfLibre": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/SGI-B-1.1.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/SGI-B-1.1.json",
+ "referenceNumber": 670,
+ "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/GFDL-1.2-or-later.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/GFDL-1.2-or-later.json",
+ "referenceNumber": 671,
+ "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/Graphics-Gems.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Graphics-Gems.json",
+ "referenceNumber": 672,
+ "name": "Graphics Gems License",
+ "licenseId": "Graphics-Gems",
+ "seeAlso": [
+ "https://github.com/erich666/GraphicsGems/blob/master/LICENSE.md"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/OSL-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/OSL-1.0.json",
+ "referenceNumber": 673,
+ "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/Sendmail.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Sendmail.json",
+ "referenceNumber": 674,
+ "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/Kastrup.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Kastrup.json",
+ "referenceNumber": 675,
+ "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/OSL-2.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/OSL-2.0.json",
+ "referenceNumber": 676,
+ "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/StandardML-NJ.html",
+ "isDeprecatedLicenseId": true,
+ "detailsUrl": "https://spdx.org/licenses/StandardML-NJ.json",
+ "referenceNumber": 677,
+ "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/Ruby-pty.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Ruby-pty.json",
+ "referenceNumber": 678,
+ "name": "Ruby pty extension license",
+ "licenseId": "Ruby-pty",
+ "seeAlso": [
+ "https://github.com/ruby/ruby/blob/9f6deaa6888a423720b4b127b5314f0ad26cc2e6/ext/pty/pty.c#L775-L786",
+ "https://github.com/ruby/ruby/commit/0a64817fb80016030c03518fb9459f63c11605ea#diff-ef5fa30838d6d0cecad9e675cc50b24628cfe2cb277c346053fafcc36c91c204",
+ "https://github.com/ruby/ruby/commit/0a64817fb80016030c03518fb9459f63c11605ea#diff-fedf217c1ce44bda01f0a678d3ff8b198bed478754d699c527a698ad933979a0"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/LPPL-1.3c.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/LPPL-1.3c.json",
+ "referenceNumber": 679,
+ "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/Bitstream-Vera.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Bitstream-Vera.json",
+ "referenceNumber": 680,
+ "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/CC-SA-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/CC-SA-1.0.json",
+ "referenceNumber": 681,
+ "name": "Creative Commons Share Alike 1.0 Generic",
+ "licenseId": "CC-SA-1.0",
+ "seeAlso": [
+ "https://creativecommons.org/licenses/sa/1.0/legalcode"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/NetCDF.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/NetCDF.json",
+ "referenceNumber": 682,
+ "name": "NetCDF license",
+ "licenseId": "NetCDF",
+ "seeAlso": [
+ "http://www.unidata.ucar.edu/software/netcdf/copyright.html"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/Apache-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Apache-1.0.json",
+ "referenceNumber": 683,
+ "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/Watcom-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Watcom-1.0.json",
+ "referenceNumber": 684,
+ "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/HPND-sell-variant-critical-systems.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/HPND-sell-variant-critical-systems.json",
+ "referenceNumber": 685,
+ "name": "HPND - sell variant with safety critical systems clause",
+ "licenseId": "HPND-sell-variant-critical-systems",
+ "seeAlso": [
+ "https://gitlab.freedesktop.org/xorg/driver/xf86-video-voodoo/-/blob/68a5b6d98ae34749cca889f4373b4043d00bfe6a/src/voodoo_dga.c#L12-33"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/threeparttable.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/threeparttable.json",
+ "referenceNumber": 686,
+ "name": "threeparttable License",
+ "licenseId": "threeparttable",
+ "seeAlso": [
+ "https://fedoraproject.org/wiki/Licensing/Threeparttable"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/AGPL-3.0-only.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/AGPL-3.0-only.json",
+ "referenceNumber": 687,
+ "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/eGenix.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/eGenix.json",
+ "referenceNumber": 688,
+ "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/OpenMDW-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/OpenMDW-1.0.json",
+ "referenceNumber": 689,
+ "name": "OpenMDW License Agreement v1.0",
+ "licenseId": "OpenMDW-1.0",
+ "seeAlso": [
+ "https://raw.githubusercontent.com/OpenMDW/OpenMDW/refs/heads/main/1.0/LICENSE.openmdw",
+ "https://openmdw.ai/license/"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/Furuseth.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Furuseth.json",
+ "referenceNumber": 690,
+ "name": "Furuseth License",
+ "licenseId": "Furuseth",
+ "seeAlso": [
+ "https://git.openldap.org/openldap/openldap/-/blob/master/COPYRIGHT?ref_type=heads#L39-51"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/OLDAP-2.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/OLDAP-2.0.json",
+ "referenceNumber": 691,
+ "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=openldap.git;a=blob;f=LICENSE;hb=cbf50f4e1185a21abd4c0a54d3f4341fe28f36ea"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/ErlPL-1.1.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/ErlPL-1.1.json",
+ "referenceNumber": 692,
+ "name": "Erlang Public License v1.1",
+ "licenseId": "ErlPL-1.1",
+ "seeAlso": [
+ "http://www.erlang.org/EPLICENSE"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/CFITSIO.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/CFITSIO.json",
+ "referenceNumber": 693,
+ "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/APSL-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/APSL-1.0.json",
+ "referenceNumber": 694,
+ "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/OLDAP-2.3.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/OLDAP-2.3.json",
+ "referenceNumber": 695,
+ "name": "Open LDAP Public License v2.3",
+ "licenseId": "OLDAP-2.3",
+ "seeAlso": [
+ "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=d32cf54a32d581ab475d23c810b0a7fbaf8d63c3"
+ ],
+ "isOsiApproved": false,
+ "isFsfLibre": true
+ },
+ {
+ "reference": "https://spdx.org/licenses/NAIST-2003.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/NAIST-2003.json",
+ "referenceNumber": 696,
+ "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/CC-BY-2.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/CC-BY-2.0.json",
+ "referenceNumber": 697,
+ "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/Nunit.html",
+ "isDeprecatedLicenseId": true,
+ "detailsUrl": "https://spdx.org/licenses/Nunit.json",
+ "referenceNumber": 698,
+ "name": "Nunit License",
+ "licenseId": "Nunit",
+ "seeAlso": [
+ "https://fedoraproject.org/wiki/Licensing/Nunit"
+ ],
+ "isOsiApproved": false,
+ "isFsfLibre": true
+ },
+ {
+ "reference": "https://spdx.org/licenses/HPND-UC.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/HPND-UC.json",
+ "referenceNumber": 699,
+ "name": "Historical Permission Notice and Disclaimer - University of California variant",
+ "licenseId": "HPND-UC",
+ "seeAlso": [
+ "https://core.tcl-lang.org/tk/file?name=compat/unistd.h"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/Aladdin.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Aladdin.json",
+ "referenceNumber": 700,
+ "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/CC-BY-NC-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-1.0.json",
+ "referenceNumber": 701,
+ "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/DocBook-Schema.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/DocBook-Schema.json",
+ "referenceNumber": 702,
+ "name": "DocBook Schema License",
+ "licenseId": "DocBook-Schema",
+ "seeAlso": [
+ "https://github.com/docbook/xslt10-stylesheets/blob/efd62655c11cc8773708df7a843613fa1e932bf8/xsl/assembly/schema/docbook51b7.rnc"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/PDDL-1.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/PDDL-1.0.json",
+ "referenceNumber": 703,
+ "name": "Open Data Commons Public Domain Dedication & 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/CryptoSwift.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/CryptoSwift.json",
+ "referenceNumber": 704,
+ "name": "CryptoSwift License",
+ "licenseId": "CryptoSwift",
+ "seeAlso": [
+ "https://github.com/krzyzanowskim/CryptoSwift/blob/main/LICENSE"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/X11-distribute-modifications-variant.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/X11-distribute-modifications-variant.json",
+ "referenceNumber": 705,
+ "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/GPL-2.0-with-autoconf-exception.html",
+ "isDeprecatedLicenseId": true,
+ "detailsUrl": "https://spdx.org/licenses/GPL-2.0-with-autoconf-exception.json",
+ "referenceNumber": 706,
+ "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/BSD-2-Clause-NetBSD.html",
+ "isDeprecatedLicenseId": true,
+ "detailsUrl": "https://spdx.org/licenses/BSD-2-Clause-NetBSD.json",
+ "referenceNumber": 707,
+ "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/MulanPSL-2.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/MulanPSL-2.0.json",
+ "referenceNumber": 708,
+ "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/CC-BY-3.0-US.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/CC-BY-3.0-US.json",
+ "referenceNumber": 709,
+ "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/HPND-export-US.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/HPND-export-US.json",
+ "referenceNumber": 710,
+ "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/DRL-1.1.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/DRL-1.1.json",
+ "referenceNumber": 711,
+ "name": "Detection Rule License 1.1",
+ "licenseId": "DRL-1.1",
+ "seeAlso": [
+ "https://github.com/SigmaHQ/Detection-Rule-License/blob/6ec7fbde6101d101b5b5d1fcb8f9b69fbc76c04a/LICENSE.Detection.Rules.md"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/GPL-1.0.html",
+ "isDeprecatedLicenseId": true,
+ "detailsUrl": "https://spdx.org/licenses/GPL-1.0.json",
+ "referenceNumber": 712,
+ "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/CECILL-2.0.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/CECILL-2.0.json",
+ "referenceNumber": 713,
+ "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/OLDAP-2.8.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/OLDAP-2.8.json",
+ "referenceNumber": 714,
+ "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/HPND-merchantability-variant.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/HPND-merchantability-variant.json",
+ "referenceNumber": 715,
+ "name": "Historical Permission Notice and Disclaimer - merchantability variant",
+ "licenseId": "HPND-merchantability-variant",
+ "seeAlso": [
+ "https://sourceware.org/git/?p=newlib-cygwin.git;a=blob;f=newlib/libc/misc/fini.c;hb=HEAD"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/Glide.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Glide.json",
+ "referenceNumber": 716,
+ "name": "3dfx Glide License",
+ "licenseId": "Glide",
+ "seeAlso": [
+ "http://www.users.on.net/~triforce/glidexp/COPYING.txt"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/PostgreSQL.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/PostgreSQL.json",
+ "referenceNumber": 717,
+ "name": "PostgreSQL License",
+ "licenseId": "PostgreSQL",
+ "seeAlso": [
+ "http://www.postgresql.org/about/licence",
+ "https://opensource.org/licenses/PostgreSQL"
+ ],
+ "isOsiApproved": true
+ },
+ {
+ "reference": "https://spdx.org/licenses/BSD-1-Clause.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/BSD-1-Clause.json",
+ "referenceNumber": 718,
+ "name": "BSD 1-Clause License",
+ "licenseId": "BSD-1-Clause",
+ "seeAlso": [
+ "https://svnweb.freebsd.org/base/head/include/ifaddrs.h?revision=326823"
+ ],
+ "isOsiApproved": true
+ },
+ {
+ "reference": "https://spdx.org/licenses/Sendmail-Open-Source-1.1.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Sendmail-Open-Source-1.1.json",
+ "referenceNumber": 719,
+ "name": "Sendmail Open Source License v1.1",
+ "licenseId": "Sendmail-Open-Source-1.1",
+ "seeAlso": [
+ "https://github.com/trusteddomainproject/OpenDMARC/blob/master/LICENSE.Sendmail"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/Crossword.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Crossword.json",
+ "referenceNumber": 720,
+ "name": "Crossword License",
+ "licenseId": "Crossword",
+ "seeAlso": [
+ "https://fedoraproject.org/wiki/Licensing/Crossword"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/NASA-1.3.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/NASA-1.3.json",
+ "referenceNumber": 721,
+ "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/BSD-Source-beginning-file.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/BSD-Source-beginning-file.json",
+ "referenceNumber": 722,
+ "name": "BSD Source Code Attribution - beginning of file variant",
+ "licenseId": "BSD-Source-beginning-file",
+ "seeAlso": [
+ "https://github.com/lattera/freebsd/blob/master/sys/cam/cam.c#L4"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/Mup.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/Mup.json",
+ "referenceNumber": 723,
+ "name": "Mup License",
+ "licenseId": "Mup",
+ "seeAlso": [
+ "https://fedoraproject.org/wiki/Licensing/Mup"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/MIT-feh.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/MIT-feh.json",
+ "referenceNumber": 724,
+ "name": "feh License",
+ "licenseId": "MIT-feh",
+ "seeAlso": [
+ "https://fedoraproject.org/wiki/Licensing/MIT#feh"
+ ],
+ "isOsiApproved": false
+ },
+ {
+ "reference": "https://spdx.org/licenses/LGPL-3.0-only.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/LGPL-3.0-only.json",
+ "referenceNumber": 725,
+ "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/man2html.html",
+ "isDeprecatedLicenseId": false,
+ "detailsUrl": "https://spdx.org/licenses/man2html.json",
+ "referenceNumber": 726,
+ "name": "man2html License",
+ "licenseId": "man2html",
+ "seeAlso": [
+ "http://primates.ximian.com/~flucifredi/man/man-1.6g.tar.gz",
+ "https://github.com/hamano/man2html/blob/master/man2html.c",
+ "https://docs.oracle.com/cd/E81115_01/html/E81116/licenses.html"
+ ],
+ "isOsiApproved": false
+ }
+ ],
+ "releaseDate": "2026-02-20T00:00:00Z"
+}
\ No newline at end of file
From 62cf729f9d4ff92db8f842f51e1d7abfa06af7d1 Mon Sep 17 00:00:00 2001
From: sebastianMindee <130448732+sebastianMindee@users.noreply.github.com>
Date: Mon, 27 Jul 2026 19:31:46 +0200
Subject: [PATCH 4/5] remove massive file
---
licenses.json | 9119 -------------------------------------------------
1 file changed, 9119 deletions(-)
delete mode 100644 licenses.json
diff --git a/licenses.json b/licenses.json
deleted file mode 100644
index e830e8b17..000000000
--- a/licenses.json
+++ /dev/null
@@ -1,9119 +0,0 @@
-{
- "licenseListVersion": "3.28.0",
- "licenses": [
- {
- "reference": "https://spdx.org/licenses/FSL-1.1-MIT.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/FSL-1.1-MIT.json",
- "referenceNumber": 0,
- "name": "Functional Source License, Version 1.1, MIT Future License",
- "licenseId": "FSL-1.1-MIT",
- "seeAlso": [
- "https://fsl.software/FSL-1.1-MIT.template.md"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/SISSL.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/SISSL.json",
- "referenceNumber": 1,
- "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/copyleft-next-0.3.1.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/copyleft-next-0.3.1.json",
- "referenceNumber": 2,
- "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/Noweb.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Noweb.json",
- "referenceNumber": 3,
- "name": "Noweb License",
- "licenseId": "Noweb",
- "seeAlso": [
- "https://fedoraproject.org/wiki/Licensing/Noweb"
- ],
- "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": 4,
- "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/BSD-3-Clause-acpica.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-acpica.json",
- "referenceNumber": 5,
- "name": "BSD 3-Clause acpica variant",
- "licenseId": "BSD-3-Clause-acpica",
- "seeAlso": [
- "https://github.com/acpica/acpica/blob/master/source/common/acfileio.c#L119"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/MakeIndex.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/MakeIndex.json",
- "referenceNumber": 6,
- "name": "MakeIndex License",
- "licenseId": "MakeIndex",
- "seeAlso": [
- "https://fedoraproject.org/wiki/Licensing/MakeIndex"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/Fair.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Fair.json",
- "referenceNumber": 7,
- "name": "Fair License",
- "licenseId": "Fair",
- "seeAlso": [
- "https://web.archive.org/web/20150926120323/http://fairlicense.org/",
- "https://opensource.org/licenses/Fair"
- ],
- "isOsiApproved": true
- },
- {
- "reference": "https://spdx.org/licenses/MirOS.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/MirOS.json",
- "referenceNumber": 8,
- "name": "The MirOS Licence",
- "licenseId": "MirOS",
- "seeAlso": [
- "https://opensource.org/licenses/MirOS"
- ],
- "isOsiApproved": true
- },
- {
- "reference": "https://spdx.org/licenses/Mackerras-3-Clause.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Mackerras-3-Clause.json",
- "referenceNumber": 9,
- "name": "Mackerras 3-Clause License",
- "licenseId": "Mackerras-3-Clause",
- "seeAlso": [
- "https://github.com/ppp-project/ppp/blob/master/pppd/chap_ms.c#L6-L28"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/NRL.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/NRL.json",
- "referenceNumber": 10,
- "name": "NRL License",
- "licenseId": "NRL",
- "seeAlso": [
- "http://web.mit.edu/network/isakmp/nrllicense.html"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/InnoSetup.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/InnoSetup.json",
- "referenceNumber": 11,
- "name": "Inno Setup License",
- "licenseId": "InnoSetup",
- "seeAlso": [
- "https://github.com/jrsoftware/issrc/blob/HEAD/license.txt"
- ],
- "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": 12,
- "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/AGPL-1.0-or-later.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/AGPL-1.0-or-later.json",
- "referenceNumber": 13,
- "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/Catharon.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Catharon.json",
- "referenceNumber": 14,
- "name": "Catharon License",
- "licenseId": "Catharon",
- "seeAlso": [
- "https://github.com/scummvm/scummvm/blob/v2.8.0/LICENSES/CatharonLicense.txt"
- ],
- "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": 15,
- "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/Abstyles.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Abstyles.json",
- "referenceNumber": 16,
- "name": "Abstyles License",
- "licenseId": "Abstyles",
- "seeAlso": [
- "https://fedoraproject.org/wiki/Licensing/Abstyles"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/MS-RL.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/MS-RL.json",
- "referenceNumber": 17,
- "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/NIST-Software.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/NIST-Software.json",
- "referenceNumber": 18,
- "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/Unlicense-libwhirlpool.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Unlicense-libwhirlpool.json",
- "referenceNumber": 19,
- "name": "Unlicense - libwhirlpool variant",
- "licenseId": "Unlicense-libwhirlpool",
- "seeAlso": [
- "https://github.com/dfateyev/libwhirlpool/blob/master/README#L27"
- ],
- "isOsiApproved": 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": 20,
- "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/GPL-2.0+.html",
- "isDeprecatedLicenseId": true,
- "detailsUrl": "https://spdx.org/licenses/GPL-2.0+.json",
- "referenceNumber": 21,
- "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/CAL-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/CAL-1.0.json",
- "referenceNumber": 22,
- "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/GFDL-1.2-invariants-only.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/GFDL-1.2-invariants-only.json",
- "referenceNumber": 23,
- "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/GPL-2.0-with-bison-exception.html",
- "isDeprecatedLicenseId": true,
- "detailsUrl": "https://spdx.org/licenses/GPL-2.0-with-bison-exception.json",
- "referenceNumber": 24,
- "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=193d7c7054ba7197b0789e14965b739162319b5e#n141"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/CC-PDM-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/CC-PDM-1.0.json",
- "referenceNumber": 25,
- "name": "Creative Commons Public Domain Mark 1.0 Universal",
- "licenseId": "CC-PDM-1.0",
- "seeAlso": [
- "https://creativecommons.org/publicdomain/mark/1.0/",
- "https://creativecommons.org/share-your-work/cclicenses/"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/CMU-Mach-nodoc.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/CMU-Mach-nodoc.json",
- "referenceNumber": 26,
- "name": "CMU Mach - no notices-in-documentation variant",
- "licenseId": "CMU-Mach-nodoc",
- "seeAlso": [
- "https://github.com/krb5/krb5/blob/krb5-1.21.2-final/NOTICE#L718-L728",
- "https://web.mit.edu/kerberos/krb5-1.21/doc/mitK5license.html"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/RPSL-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/RPSL-1.0.json",
- "referenceNumber": 27,
- "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/CDLA-Permissive-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/CDLA-Permissive-1.0.json",
- "referenceNumber": 28,
- "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/BSD-2-Clause-pkgconf-disclaimer.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/BSD-2-Clause-pkgconf-disclaimer.json",
- "referenceNumber": 29,
- "name": "BSD 2-Clause pkgconf disclaimer variant",
- "licenseId": "BSD-2-Clause-pkgconf-disclaimer",
- "seeAlso": [
- "https://github.com/audacious-media-player/audacious/blob/master/src/audacious/main.cc",
- "https://github.com/audacious-media-player/audacious/blob/master/COPYING"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/GFDL-1.2.html",
- "isDeprecatedLicenseId": true,
- "detailsUrl": "https://spdx.org/licenses/GFDL-1.2.json",
- "referenceNumber": 30,
- "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/JPL-image.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/JPL-image.json",
- "referenceNumber": 31,
- "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/CC-BY-3.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/CC-BY-3.0.json",
- "referenceNumber": 32,
- "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/LPPL-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/LPPL-1.0.json",
- "referenceNumber": 33,
- "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/LGPLLR.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/LGPLLR.json",
- "referenceNumber": 34,
- "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/CC-BY-SA-2.0-UK.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/CC-BY-SA-2.0-UK.json",
- "referenceNumber": 35,
- "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/OLDAP-2.0.1.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/OLDAP-2.0.1.json",
- "referenceNumber": 36,
- "name": "Open LDAP Public License v2.0.1",
- "licenseId": "OLDAP-2.0.1",
- "seeAlso": [
- "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=b6d68acd14e51ca3aab4428bf26522aa74873f0e"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/Unicode-3.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Unicode-3.0.json",
- "referenceNumber": 37,
- "name": "Unicode License v3",
- "licenseId": "Unicode-3.0",
- "seeAlso": [
- "https://www.unicode.org/license.txt"
- ],
- "isOsiApproved": true
- },
- {
- "reference": "https://spdx.org/licenses/Parity-6.0.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Parity-6.0.0.json",
- "referenceNumber": 38,
- "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/LPL-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/LPL-1.0.json",
- "referenceNumber": 39,
- "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/Glulxe.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Glulxe.json",
- "referenceNumber": 40,
- "name": "Glulxe License",
- "licenseId": "Glulxe",
- "seeAlso": [
- "https://fedoraproject.org/wiki/Licensing/Glulxe"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/CMU-Mach.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/CMU-Mach.json",
- "referenceNumber": 41,
- "name": "CMU Mach License",
- "licenseId": "CMU-Mach",
- "seeAlso": [
- "https://www.cs.cmu.edu/~410/licenses.html"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/Zeeff.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Zeeff.json",
- "referenceNumber": 42,
- "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/DL-DE-ZERO-2.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/DL-DE-ZERO-2.0.json",
- "referenceNumber": 43,
- "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/NTIA-PD.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/NTIA-PD.json",
- "referenceNumber": 44,
- "name": "NTIA Public Domain Notice",
- "licenseId": "NTIA-PD",
- "seeAlso": [
- "https://raw.githubusercontent.com/NTIA/itm/refs/heads/master/LICENSE.md",
- "https://raw.githubusercontent.com/NTIA/scos-sensor/refs/heads/master/LICENSE.md"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/Nokia.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Nokia.json",
- "referenceNumber": 45,
- "name": "Nokia Open Source License",
- "licenseId": "Nokia",
- "seeAlso": [
- "https://opensource.org/licenses/nokia"
- ],
- "isOsiApproved": true,
- "isFsfLibre": true
- },
- {
- "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": 46,
- "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/Saxpath.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Saxpath.json",
- "referenceNumber": 47,
- "name": "Saxpath License",
- "licenseId": "Saxpath",
- "seeAlso": [
- "https://fedoraproject.org/wiki/Licensing/Saxpath_License"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/McPhee-slideshow.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/McPhee-slideshow.json",
- "referenceNumber": 48,
- "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/snprintf.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/snprintf.json",
- "referenceNumber": 49,
- "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/W3C-19980720.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/W3C-19980720.json",
- "referenceNumber": 50,
- "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/EFL-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/EFL-1.0.json",
- "referenceNumber": 51,
- "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/xpp.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/xpp.json",
- "referenceNumber": 52,
- "name": "XPP License",
- "licenseId": "xpp",
- "seeAlso": [
- "https://fedoraproject.org/wiki/Licensing/xpp"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/TCL.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/TCL.json",
- "referenceNumber": 53,
- "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/BSD-3-Clause-LBNL.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-LBNL.json",
- "referenceNumber": 54,
- "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/OCLC-2.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/OCLC-2.0.json",
- "referenceNumber": 55,
- "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/OGC-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/OGC-1.0.json",
- "referenceNumber": 56,
- "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/Latex2e-translated-notice.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Latex2e-translated-notice.json",
- "referenceNumber": 57,
- "name": "Latex2e with translated notice permission",
- "licenseId": "Latex2e-translated-notice",
- "seeAlso": [
- "https://git.savannah.gnu.org/cgit/indent.git/tree/doc/indent.texi?id=a74c6b4ee49397cf330b333da1042bffa60ed14f#n74"
- ],
- "isOsiApproved": false
- },
- {
- "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": 58,
- "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/Qhull.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Qhull.json",
- "referenceNumber": 59,
- "name": "Qhull License",
- "licenseId": "Qhull",
- "seeAlso": [
- "https://fedoraproject.org/wiki/Licensing/Qhull"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/Spencer-99.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Spencer-99.json",
- "referenceNumber": 60,
- "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/IBM-pibs.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/IBM-pibs.json",
- "referenceNumber": 61,
- "name": "IBM PowerPC Initialization and Boot Software",
- "licenseId": "IBM-pibs",
- "seeAlso": [
- "http://git.denx.de/?p=u-boot.git;a=blob;f=arch/powerpc/cpu/ppc4xx/miiphy.c;h=297155fdafa064b955e53e9832de93bfb0cfb85b;hb=9fab4bf4cc077c21e43941866f3f2c196f28670d"
- ],
- "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": 62,
- "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/check-cvs.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/check-cvs.json",
- "referenceNumber": 63,
- "name": "check-cvs License",
- "licenseId": "check-cvs",
- "seeAlso": [
- "http://cvs.savannah.gnu.org/viewvc/cvs/ccvs/contrib/check_cvs.in?revision=1.1.4.3&view=markup&pathrev=cvs1-11-23#l2"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/HDF5.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/HDF5.json",
- "referenceNumber": 64,
- "name": "HDF5 License",
- "licenseId": "HDF5",
- "seeAlso": [
- "https://github.com/HDFGroup/hdf5/?tab=License-1-ov-file#readme"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/VOSTROM.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/VOSTROM.json",
- "referenceNumber": 65,
- "name": "VOSTROM Public License for Open Source",
- "licenseId": "VOSTROM",
- "seeAlso": [
- "https://fedoraproject.org/wiki/Licensing/VOSTROM"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/MS-PL.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/MS-PL.json",
- "referenceNumber": 66,
- "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/CDDL-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/CDDL-1.0.json",
- "referenceNumber": 67,
- "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/OPL-UK-3.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/OPL-UK-3.0.json",
- "referenceNumber": 68,
- "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/CNRI-Python-GPL-Compatible.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/CNRI-Python-GPL-Compatible.json",
- "referenceNumber": 69,
- "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/UCL-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/UCL-1.0.json",
- "referenceNumber": 70,
- "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/OFL-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/OFL-1.0.json",
- "referenceNumber": 71,
- "name": "SIL Open Font License 1.0",
- "licenseId": "OFL-1.0",
- "seeAlso": [
- "http://scripts.sil.org/cms/scripts/page.php?item_id=OFL10_web"
- ],
- "isOsiApproved": false,
- "isFsfLibre": true
- },
- {
- "reference": "https://spdx.org/licenses/Eurosym.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Eurosym.json",
- "referenceNumber": 72,
- "name": "Eurosym License",
- "licenseId": "Eurosym",
- "seeAlso": [
- "https://fedoraproject.org/wiki/Licensing/Eurosym"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/ANTLR-PD-fallback.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/ANTLR-PD-fallback.json",
- "referenceNumber": 73,
- "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/DocBook-DTD.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/DocBook-DTD.json",
- "referenceNumber": 74,
- "name": "DocBook DTD License",
- "licenseId": "DocBook-DTD",
- "seeAlso": [
- "http://www.docbook.org/xml/simple/1.1/docbook-simple-1.1.zip"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/SMLNJ.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/SMLNJ.json",
- "referenceNumber": 75,
- "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/CATOSL-1.1.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/CATOSL-1.1.json",
- "referenceNumber": 76,
- "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/MIPS.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/MIPS.json",
- "referenceNumber": 77,
- "name": "MIPS License",
- "licenseId": "MIPS",
- "seeAlso": [
- "https://sourceware.org/cgit/binutils-gdb/tree/include/coff/sym.h#n11"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/Net-SNMP.html",
- "isDeprecatedLicenseId": true,
- "detailsUrl": "https://spdx.org/licenses/Net-SNMP.json",
- "referenceNumber": 78,
- "name": "Net-SNMP License",
- "licenseId": "Net-SNMP",
- "seeAlso": [
- "http://net-snmp.sourceforge.net/about/license.html"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/OAR.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/OAR.json",
- "referenceNumber": 79,
- "name": "OAR License",
- "licenseId": "OAR",
- "seeAlso": [
- "https://sourceware.org/git/?p=newlib-cygwin.git;a=blob;f=newlib/libc/string/strsignal.c;hb=HEAD#l35"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/mpi-permissive.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/mpi-permissive.json",
- "referenceNumber": 80,
- "name": "mpi Permissive License",
- "licenseId": "mpi-permissive",
- "seeAlso": [
- "https://sources.debian.org/src/openmpi/4.1.0-10/ompi/debuggers/msgq_interface.h/?hl=19#L19"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/Borceux.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Borceux.json",
- "referenceNumber": 81,
- "name": "Borceux license",
- "licenseId": "Borceux",
- "seeAlso": [
- "https://fedoraproject.org/wiki/Licensing/Borceux"
- ],
- "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": 82,
- "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/NCSA.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/NCSA.json",
- "referenceNumber": 83,
- "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/GPL-3.0+.html",
- "isDeprecatedLicenseId": true,
- "detailsUrl": "https://spdx.org/licenses/GPL-3.0+.json",
- "referenceNumber": 84,
- "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/IJG.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/IJG.json",
- "referenceNumber": 85,
- "name": "Independent JPEG Group License",
- "licenseId": "IJG",
- "seeAlso": [
- "http://dev.w3.org/cvsweb/Amaya/libjpeg/Attic/README?rev=1.2",
- "https://github.com/vstroebel/jpeg-encoder/blob/main/src/fdct.rs#L1-L72",
- "https://github.com/libjpeg-turbo/libjpeg-turbo/blob/main/README.ijg#L117-L161"
- ],
- "isOsiApproved": false,
- "isFsfLibre": true
- },
- {
- "reference": "https://spdx.org/licenses/BSD-Source-Code.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/BSD-Source-Code.json",
- "referenceNumber": 86,
- "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/CDL-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/CDL-1.0.json",
- "referenceNumber": 87,
- "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/TTYP0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/TTYP0.json",
- "referenceNumber": 88,
- "name": "TTYP0 License",
- "licenseId": "TTYP0",
- "seeAlso": [
- "https://people.mpi-inf.mpg.de/~uwe/misc/uw-ttyp0/"
- ],
- "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": 89,
- "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/AGPL-3.0.html",
- "isDeprecatedLicenseId": true,
- "detailsUrl": "https://spdx.org/licenses/AGPL-3.0.json",
- "referenceNumber": 90,
- "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/ALGLIB-Documentation.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/ALGLIB-Documentation.json",
- "referenceNumber": 91,
- "name": "ALGLIB Documentation License",
- "licenseId": "ALGLIB-Documentation",
- "seeAlso": [],
- "isOsiApproved": true
- },
- {
- "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": 92,
- "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/swrule.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/swrule.json",
- "referenceNumber": 93,
- "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/AAL.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/AAL.json",
- "referenceNumber": 94,
- "name": "Attribution Assurance License",
- "licenseId": "AAL",
- "seeAlso": [
- "https://opensource.org/licenses/attribution"
- ],
- "isOsiApproved": true
- },
- {
- "reference": "https://spdx.org/licenses/AML-glslang.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/AML-glslang.json",
- "referenceNumber": 95,
- "name": "AML glslang variant License",
- "licenseId": "AML-glslang",
- "seeAlso": [
- "https://github.com/KhronosGroup/glslang/blob/main/LICENSE.txt#L949",
- "https://docs.omniverse.nvidia.com/install-guide/latest/common/licenses.html"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/FSFAP.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/FSFAP.json",
- "referenceNumber": 96,
- "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/VSL-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/VSL-1.0.json",
- "referenceNumber": 97,
- "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/Sun-PPP.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Sun-PPP.json",
- "referenceNumber": 98,
- "name": "Sun PPP License",
- "licenseId": "Sun-PPP",
- "seeAlso": [
- "https://github.com/ppp-project/ppp/blob/master/pppd/eap.c#L7-L16"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/gtkbook.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/gtkbook.json",
- "referenceNumber": 99,
- "name": "gtkbook License",
- "licenseId": "gtkbook",
- "seeAlso": [
- "https://github.com/slogan621/gtkbook",
- "https://github.com/oetiker/rrdtool-1.x/blob/master/src/plbasename.c#L8-L11"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/CC-BY-SA-2.5.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/CC-BY-SA-2.5.json",
- "referenceNumber": 100,
- "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/SMAIL-GPL.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/SMAIL-GPL.json",
- "referenceNumber": 101,
- "name": "SMAIL General Public License",
- "licenseId": "SMAIL-GPL",
- "seeAlso": [
- "https://sources.debian.org/copyright/license/debianutils/4.11.2/"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/Apache-2.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Apache-2.0.json",
- "referenceNumber": 102,
- "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",
- "https://opensource.org/license/apache-2-0"
- ],
- "isOsiApproved": true,
- "isFsfLibre": true
- },
- {
- "reference": "https://spdx.org/licenses/EPL-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/EPL-1.0.json",
- "referenceNumber": 103,
- "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/mpich2.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/mpich2.json",
- "referenceNumber": 104,
- "name": "mpich2 License",
- "licenseId": "mpich2",
- "seeAlso": [
- "https://fedoraproject.org/wiki/Licensing/MIT"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/NIST-PD-TNT.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/NIST-PD-TNT.json",
- "referenceNumber": 105,
- "name": "NIST Public Domain Notice TNT variant",
- "licenseId": "NIST-PD-TNT",
- "seeAlso": [
- "https://math.nist.gov/tnt/download.html"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/MIT-Festival.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/MIT-Festival.json",
- "referenceNumber": 106,
- "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/OGL-UK-2.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/OGL-UK-2.0.json",
- "referenceNumber": 107,
- "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/OLDAP-1.4.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/OLDAP-1.4.json",
- "referenceNumber": 108,
- "name": "Open LDAP Public License v1.4",
- "licenseId": "OLDAP-1.4",
- "seeAlso": [
- "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=c9f95c2f3f2ffb5e0ae55fe7388af75547660941"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/Jam.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Jam.json",
- "referenceNumber": 109,
- "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/Python-2.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Python-2.0.json",
- "referenceNumber": 110,
- "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/HPND-Netrek.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/HPND-Netrek.json",
- "referenceNumber": 111,
- "name": "Historical Permission Notice and Disclaimer - Netrek variant",
- "licenseId": "HPND-Netrek",
- "seeAlso": [],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/mailprio.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/mailprio.json",
- "referenceNumber": 112,
- "name": "mailprio License",
- "licenseId": "mailprio",
- "seeAlso": [
- "https://fossies.org/linux/sendmail/contrib/mailprio"
- ],
- "isOsiApproved": false
- },
- {
- "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": 113,
- "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=OFL10_web"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/MIT.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/MIT.json",
- "referenceNumber": 114,
- "name": "MIT License",
- "licenseId": "MIT",
- "seeAlso": [
- "https://opensource.org/license/mit/",
- "http://opensource.org/licenses/MIT"
- ],
- "isOsiApproved": true,
- "isFsfLibre": true
- },
- {
- "reference": "https://spdx.org/licenses/NPL-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/NPL-1.0.json",
- "referenceNumber": 115,
- "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/Entessa.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Entessa.json",
- "referenceNumber": 116,
- "name": "Entessa Public License v1.0",
- "licenseId": "Entessa",
- "seeAlso": [
- "https://opensource.org/licenses/Entessa"
- ],
- "isOsiApproved": true
- },
- {
- "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": 117,
- "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/ECL-2.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/ECL-2.0.json",
- "referenceNumber": 118,
- "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/OLDAP-2.2.2.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/OLDAP-2.2.2.json",
- "referenceNumber": 119,
- "name": "Open LDAP Public License 2.2.2",
- "licenseId": "OLDAP-2.2.2",
- "seeAlso": [
- "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=df2cc1e21eb7c160695f5b7cffd6296c151ba188"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/OLDAP-2.4.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/OLDAP-2.4.json",
- "referenceNumber": 120,
- "name": "Open LDAP Public License v2.4",
- "licenseId": "OLDAP-2.4",
- "seeAlso": [
- "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=cd1284c4a91a8a380d904eee68d1583f989ed386"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/Adobe-Utopia.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Adobe-Utopia.json",
- "referenceNumber": 121,
- "name": "Adobe Utopia Font License",
- "licenseId": "Adobe-Utopia",
- "seeAlso": [
- "https://gitlab.freedesktop.org/xorg/font/adobe-utopia-100dpi/-/blob/master/COPYING?ref_type=heads"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/AFL-1.1.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/AFL-1.1.json",
- "referenceNumber": 122,
- "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/SHL-0.5.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/SHL-0.5.json",
- "referenceNumber": 123,
- "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/CC-BY-NC-SA-2.5.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-SA-2.5.json",
- "referenceNumber": 124,
- "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/TOSL.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/TOSL.json",
- "referenceNumber": 125,
- "name": "Trusster Open Source License",
- "licenseId": "TOSL",
- "seeAlso": [
- "https://fedoraproject.org/wiki/Licensing/TOSL"
- ],
- "isOsiApproved": false
- },
- {
- "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": 126,
- "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=OFL_web",
- "https://opensource.org/licenses/OFL-1.1"
- ],
- "isOsiApproved": true
- },
- {
- "reference": "https://spdx.org/licenses/APAFML.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/APAFML.json",
- "referenceNumber": 127,
- "name": "Adobe Postscript AFM License",
- "licenseId": "APAFML",
- "seeAlso": [
- "https://fedoraproject.org/wiki/Licensing/AdobePostscriptAFM"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/BSD-Mark-Modifications.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/BSD-Mark-Modifications.json",
- "referenceNumber": 128,
- "name": "BSD Mark Modifications License",
- "licenseId": "BSD-Mark-Modifications",
- "seeAlso": [
- "https://ftp.gnu.org/gnu/aspell/dict/en/aspell6-en-2020.12.07-0.tar.bz2"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/ECL-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/ECL-1.0.json",
- "referenceNumber": 129,
- "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/Spencer-86.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Spencer-86.json",
- "referenceNumber": 130,
- "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/generic-xts.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/generic-xts.json",
- "referenceNumber": 131,
- "name": "Generic XTS License",
- "licenseId": "generic-xts",
- "seeAlso": [
- "https://github.com/mhogomchungu/zuluCrypt/blob/master/external_libraries/tcplay/generic_xts.c"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/RPL-1.1.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/RPL-1.1.json",
- "referenceNumber": 132,
- "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/FSFUL.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/FSFUL.json",
- "referenceNumber": 133,
- "name": "FSF Unlimited License",
- "licenseId": "FSFUL",
- "seeAlso": [
- "https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/3D-Slicer-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/3D-Slicer-1.0.json",
- "referenceNumber": 134,
- "name": "3D Slicer License v1.0",
- "licenseId": "3D-Slicer-1.0",
- "seeAlso": [
- "https://slicer.org/LICENSE",
- "https://github.com/Slicer/Slicer/blob/main/License.txt"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/URT-RLE.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/URT-RLE.json",
- "referenceNumber": 135,
- "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/Adobe-Display-PostScript.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Adobe-Display-PostScript.json",
- "referenceNumber": 136,
- "name": "Adobe Display PostScript License",
- "licenseId": "Adobe-Display-PostScript",
- "seeAlso": [
- "https://gitlab.freedesktop.org/xorg/xserver/-/blob/master/COPYING?ref_type=heads#L752"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/ZPL-1.1.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/ZPL-1.1.json",
- "referenceNumber": 137,
- "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/UPL-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/UPL-1.0.json",
- "referenceNumber": 138,
- "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/metamail.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/metamail.json",
- "referenceNumber": 139,
- "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/DEC-3-Clause.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/DEC-3-Clause.json",
- "referenceNumber": 140,
- "name": "DEC 3-Clause License",
- "licenseId": "DEC-3-Clause",
- "seeAlso": [
- "https://gitlab.freedesktop.org/xorg/xserver/-/blob/master/COPYING?ref_type=heads#L239"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/Unlicense.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Unlicense.json",
- "referenceNumber": 141,
- "name": "The Unlicense",
- "licenseId": "Unlicense",
- "seeAlso": [
- "https://unlicense.org/"
- ],
- "isOsiApproved": true,
- "isFsfLibre": true
- },
- {
- "reference": "https://spdx.org/licenses/HPND-doc-sell.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/HPND-doc-sell.json",
- "referenceNumber": 142,
- "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=heads#L108-117",
- "https://gitlab.freedesktop.org/xorg/lib/libxext/-/blob/master/COPYING?ref_type=heads#L153-162"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/OLFL-1.3.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/OLFL-1.3.json",
- "referenceNumber": 143,
- "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/CECILL-2.1.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/CECILL-2.1.json",
- "referenceNumber": 144,
- "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/Sun-PPP-2000.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Sun-PPP-2000.json",
- "referenceNumber": 145,
- "name": "Sun PPP License (2000)",
- "licenseId": "Sun-PPP-2000",
- "seeAlso": [
- "https://github.com/ppp-project/ppp/blob/master/modules/ppp_ahdlc.c#L7-L19"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/SUL-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/SUL-1.0.json",
- "referenceNumber": 146,
- "name": "Sustainable Use License v1.0",
- "licenseId": "SUL-1.0",
- "seeAlso": [
- "https://github.com/n8n-io/n8n/blob/master/LICENSE.md"
- ],
- "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": 147,
- "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/OLDAP-2.5.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/OLDAP-2.5.json",
- "referenceNumber": 148,
- "name": "Open LDAP Public License v2.5",
- "licenseId": "OLDAP-2.5",
- "seeAlso": [
- "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=6852b9d90022e8593c98205413380536b1b5a7cf"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/HPND-export2-US.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/HPND-export2-US.json",
- "referenceNumber": 149,
- "name": "HPND with US Government export control and 2 disclaimers",
- "licenseId": "HPND-export2-US",
- "seeAlso": [
- "https://github.com/krb5/krb5/blob/krb5-1.21.2-final/NOTICE#L111-L133",
- "https://web.mit.edu/kerberos/krb5-1.21/doc/mitK5license.html"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/BSD-Advertising-Acknowledgement.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/BSD-Advertising-Acknowledgement.json",
- "referenceNumber": 150,
- "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/EUPL-1.2.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/EUPL-1.2.json",
- "referenceNumber": 151,
- "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=CELEX:32017D0863",
- "https://opensource.org/licenses/EUPL-1.2"
- ],
- "isOsiApproved": true,
- "isFsfLibre": true
- },
- {
- "reference": "https://spdx.org/licenses/Plexus.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Plexus.json",
- "referenceNumber": 152,
- "name": "Plexus Classworlds License",
- "licenseId": "Plexus",
- "seeAlso": [
- "https://fedoraproject.org/wiki/Licensing/Plexus_Classworlds_License"
- ],
- "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": 153,
- "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/Motosoto.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Motosoto.json",
- "referenceNumber": 154,
- "name": "Motosoto License",
- "licenseId": "Motosoto",
- "seeAlso": [
- "https://opensource.org/licenses/Motosoto"
- ],
- "isOsiApproved": true
- },
- {
- "reference": "https://spdx.org/licenses/APL-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/APL-1.0.json",
- "referenceNumber": 155,
- "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/Cronyx.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Cronyx.json",
- "referenceNumber": 156,
- "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/CC-BY-NC-2.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-2.0.json",
- "referenceNumber": 157,
- "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/Rdisc.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Rdisc.json",
- "referenceNumber": 158,
- "name": "Rdisc License",
- "licenseId": "Rdisc",
- "seeAlso": [
- "https://fedoraproject.org/wiki/Licensing/Rdisc_License"
- ],
- "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": 159,
- "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/Elastic-2.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Elastic-2.0.json",
- "referenceNumber": 160,
- "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/CC-BY-3.0-NL.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/CC-BY-3.0-NL.json",
- "referenceNumber": 161,
- "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/LGPL-2.1+.html",
- "isDeprecatedLicenseId": true,
- "detailsUrl": "https://spdx.org/licenses/LGPL-2.1+.json",
- "referenceNumber": 162,
- "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/magaz.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/magaz.json",
- "referenceNumber": 163,
- "name": "magaz License",
- "licenseId": "magaz",
- "seeAlso": [
- "https://mirrors.nic.cz/tex-archive/macros/latex/contrib/magaz/magaz.tex",
- "https://mirrors.ctan.org/macros/latex/contrib/version/version.sty"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/GPL-3.0.html",
- "isDeprecatedLicenseId": true,
- "detailsUrl": "https://spdx.org/licenses/GPL-3.0.json",
- "referenceNumber": 164,
- "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/eCos-2.0.html",
- "isDeprecatedLicenseId": true,
- "detailsUrl": "https://spdx.org/licenses/eCos-2.0.json",
- "referenceNumber": 165,
- "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/psfrag.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/psfrag.json",
- "referenceNumber": 166,
- "name": "psfrag License",
- "licenseId": "psfrag",
- "seeAlso": [
- "https://fedoraproject.org/wiki/Licensing/psfrag"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/CERN-OHL-1.1.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/CERN-OHL-1.1.json",
- "referenceNumber": 167,
- "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/D-FSL-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/D-FSL-1.0.json",
- "referenceNumber": 168,
- "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/ngrep.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/ngrep.json",
- "referenceNumber": 169,
- "name": "ngrep License",
- "licenseId": "ngrep",
- "seeAlso": [
- "https://github.com/jpr5/ngrep/blob/master/LICENSE"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/w3m.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/w3m.json",
- "referenceNumber": 170,
- "name": "w3m License",
- "licenseId": "w3m",
- "seeAlso": [
- "https://github.com/tats/w3m/blob/master/COPYING"
- ],
- "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": 171,
- "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/TermReadKey.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/TermReadKey.json",
- "referenceNumber": 172,
- "name": "TermReadKey License",
- "licenseId": "TermReadKey",
- "seeAlso": [
- "https://github.com/jonathanstowe/TermReadKey/blob/master/README#L9-L10"
- ],
- "isOsiApproved": false
- },
- {
- "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": 173,
- "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/SWL.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/SWL.json",
- "referenceNumber": 174,
- "name": "Scheme Widget Library (SWL) Software License Agreement",
- "licenseId": "SWL",
- "seeAlso": [
- "https://fedoraproject.org/wiki/Licensing/SWL"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/OpenSSL.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/OpenSSL.json",
- "referenceNumber": 175,
- "name": "OpenSSL License",
- "licenseId": "OpenSSL",
- "seeAlso": [
- "http://www.openssl.org/source/license.html"
- ],
- "isOsiApproved": false,
- "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": 176,
- "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/CC-BY-SA-3.0-DE.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/CC-BY-SA-3.0-DE.json",
- "referenceNumber": 177,
- "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/OLDAP-2.7.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/OLDAP-2.7.json",
- "referenceNumber": 178,
- "name": "Open LDAP Public License v2.7",
- "licenseId": "OLDAP-2.7",
- "seeAlso": [
- "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=47c2415c1df81556eeb39be6cad458ef87c534a2"
- ],
- "isOsiApproved": false,
- "isFsfLibre": true
- },
- {
- "reference": "https://spdx.org/licenses/SAX-PD.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/SAX-PD.json",
- "referenceNumber": 179,
- "name": "Sax Public Domain Notice",
- "licenseId": "SAX-PD",
- "seeAlso": [
- "http://www.saxproject.org/copying.html"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/HIDAPI.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/HIDAPI.json",
- "referenceNumber": 180,
- "name": "HIDAPI License",
- "licenseId": "HIDAPI",
- "seeAlso": [
- "https://github.com/signal11/hidapi/blob/master/LICENSE-orig.txt"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/Leptonica.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Leptonica.json",
- "referenceNumber": 181,
- "name": "Leptonica License",
- "licenseId": "Leptonica",
- "seeAlso": [
- "https://fedoraproject.org/wiki/Licensing/Leptonica"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/SSH-short.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/SSH-short.json",
- "referenceNumber": 182,
- "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/SimPL-2.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/SimPL-2.0.json",
- "referenceNumber": 183,
- "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/GFDL-1.3-only.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/GFDL-1.3-only.json",
- "referenceNumber": 184,
- "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/Kazlib.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Kazlib.json",
- "referenceNumber": 185,
- "name": "Kazlib License",
- "licenseId": "Kazlib",
- "seeAlso": [
- "http://git.savannah.gnu.org/cgit/kazlib.git/tree/except.c?id=0062df360c2d17d57f6af19b0e444c51feb99036"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/CECILL-C.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/CECILL-C.json",
- "referenceNumber": 186,
- "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/MS-LPL.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/MS-LPL.json",
- "referenceNumber": 187,
- "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/CECILL-B.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/CECILL-B.json",
- "referenceNumber": 188,
- "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/YPL-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/YPL-1.0.json",
- "referenceNumber": 189,
- "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/ASWF-Digital-Assets-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/ASWF-Digital-Assets-1.0.json",
- "referenceNumber": 190,
- "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/wwl.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/wwl.json",
- "referenceNumber": 191,
- "name": "WWL License",
- "licenseId": "wwl",
- "seeAlso": [
- "http://www.db.net/downloads/wwl+db-1.3.tgz"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/HTMLTIDY.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/HTMLTIDY.json",
- "referenceNumber": 192,
- "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/HPND-INRIA-IMAG.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/HPND-INRIA-IMAG.json",
- "referenceNumber": 193,
- "name": "Historical Permission Notice and Disclaimer - INRIA-IMAG variant",
- "licenseId": "HPND-INRIA-IMAG",
- "seeAlso": [
- "https://github.com/ppp-project/ppp/blob/master/pppd/ipv6cp.c#L75-L83"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/xlock.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/xlock.json",
- "referenceNumber": 194,
- "name": "xlock License",
- "licenseId": "xlock",
- "seeAlso": [
- "https://fossies.org/linux/tiff/contrib/ras/ras2tif.c"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/CC0-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/CC0-1.0.json",
- "referenceNumber": 195,
- "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/IEC-Code-Components-EULA.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/IEC-Code-Components-EULA.json",
- "referenceNumber": 196,
- "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/SugarCRM-1.1.3.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/SugarCRM-1.1.3.json",
- "referenceNumber": 197,
- "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/HPND-DEC.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/HPND-DEC.json",
- "referenceNumber": 198,
- "name": "Historical Permission Notice and Disclaimer - DEC variant",
- "licenseId": "HPND-DEC",
- "seeAlso": [
- "https://gitlab.freedesktop.org/xorg/app/xkbcomp/-/blob/master/COPYING?ref_type=heads#L69"
- ],
- "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": 199,
- "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/NIST-PD-fallback.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/NIST-PD-fallback.json",
- "referenceNumber": 200,
- "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/LiLiQ-P-1.1.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/LiLiQ-P-1.1.json",
- "referenceNumber": 201,
- "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",
- "https://forge.gouv.qc.ca/licence/liliq-p/"
- ],
- "isOsiApproved": true
- },
- {
- "reference": "https://spdx.org/licenses/Caldera.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Caldera.json",
- "referenceNumber": 202,
- "name": "Caldera License",
- "licenseId": "Caldera",
- "seeAlso": [
- "http://www.lemis.com/grog/UNIX/ancient-source-all.pdf"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/FSFULLR.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/FSFULLR.json",
- "referenceNumber": 203,
- "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/pnmstitch.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/pnmstitch.json",
- "referenceNumber": 204,
- "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/CC-BY-NC-SA-2.0-UK.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-SA-2.0-UK.json",
- "referenceNumber": 205,
- "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.0-DE.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-SA-2.0-DE.json",
- "referenceNumber": 206,
- "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/GCR-docs.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/GCR-docs.json",
- "referenceNumber": 207,
- "name": "Gnome GCR Documentation License",
- "licenseId": "GCR-docs",
- "seeAlso": [
- "https://github.com/GNOME/gcr/blob/master/docs/COPYING"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/CECILL-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/CECILL-1.0.json",
- "referenceNumber": 208,
- "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/HPND-sell-variant.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/HPND-sell-variant.json",
- "referenceNumber": 209,
- "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=v4.19",
- "https://github.com/kfish/xsel/blob/master/COPYING"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/Clips.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Clips.json",
- "referenceNumber": 210,
- "name": "Clips License",
- "licenseId": "Clips",
- "seeAlso": [
- "https://github.com/DrItanium/maya/blob/master/LICENSE.CLIPS"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/etalab-2.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/etalab-2.0.json",
- "referenceNumber": 211,
- "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/CC-BY-NC-SA-3.0-DE.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-SA-3.0-DE.json",
- "referenceNumber": 212,
- "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/libtiff.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/libtiff.json",
- "referenceNumber": 213,
- "name": "libtiff License",
- "licenseId": "libtiff",
- "seeAlso": [
- "https://fedoraproject.org/wiki/Licensing/libtiff"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/BSD-4-Clause-Shortened.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/BSD-4-Clause-Shortened.json",
- "referenceNumber": 214,
- "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/curl.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/curl.json",
- "referenceNumber": 215,
- "name": "curl License",
- "licenseId": "curl",
- "seeAlso": [
- "https://github.com/bagder/curl/blob/master/COPYING"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/Bitstream-Charter.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Bitstream-Charter.json",
- "referenceNumber": 216,
- "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/Apache-1.1.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Apache-1.1.json",
- "referenceNumber": 217,
- "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/HPND-Kevlin-Henney.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/HPND-Kevlin-Henney.json",
- "referenceNumber": 218,
- "name": "Historical Permission Notice and Disclaimer - Kevlin Henney variant",
- "licenseId": "HPND-Kevlin-Henney",
- "seeAlso": [
- "https://github.com/mruby/mruby/blob/83d12f8d52522cdb7c8cc46fad34821359f453e6/mrbgems/mruby-dir/src/Win/dirent.c#L127-L140"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/pkgconf.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/pkgconf.json",
- "referenceNumber": 219,
- "name": "pkgconf License",
- "licenseId": "pkgconf",
- "seeAlso": [
- "https://github.com/pkgconf/pkgconf/blob/master/cli/main.c#L8"
- ],
- "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": 220,
- "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/CC-BY-SA-2.1-JP.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/CC-BY-SA-2.1-JP.json",
- "referenceNumber": 221,
- "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/OLDAP-1.2.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/OLDAP-1.2.json",
- "referenceNumber": 222,
- "name": "Open LDAP Public License v1.2",
- "licenseId": "OLDAP-1.2",
- "seeAlso": [
- "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=42b0383c50c299977b5893ee695cf4e486fb0dc7"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/FSFAP-no-warranty-disclaimer.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/FSFAP-no-warranty-disclaimer.json",
- "referenceNumber": 223,
- "name": "FSF All Permissive License (without Warranty)",
- "licenseId": "FSFAP-no-warranty-disclaimer",
- "seeAlso": [
- "https://git.savannah.gnu.org/cgit/wget.git/tree/util/trunc.c?h=v1.21.3&id=40747a11e44ced5a8ac628a41f879ced3e2ebce9#n6"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/BitTorrent-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/BitTorrent-1.0.json",
- "referenceNumber": 224,
- "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=1.1&r2=1.1.1.1&diff_format=s"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/Latex2e.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Latex2e.json",
- "referenceNumber": 225,
- "name": "Latex2e License",
- "licenseId": "Latex2e",
- "seeAlso": [
- "https://fedoraproject.org/wiki/Licensing/Latex2e"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/fwlw.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/fwlw.json",
- "referenceNumber": 226,
- "name": "fwlw License",
- "licenseId": "fwlw",
- "seeAlso": [
- "https://mirrors.nic.cz/tex-archive/macros/latex/contrib/fwlw/README"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/MIT-Modern-Variant.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/MIT-Modern-Variant.json",
- "referenceNumber": 227,
- "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/SGP4.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/SGP4.json",
- "referenceNumber": 228,
- "name": "SGP4 Permission Notice",
- "licenseId": "SGP4",
- "seeAlso": [
- "https://celestrak.org/publications/AIAA/2006-6753/faq.php"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/BSD-4.3RENO.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/BSD-4.3RENO.json",
- "referenceNumber": 229,
- "name": "BSD 4.3 RENO License",
- "licenseId": "BSD-4.3RENO",
- "seeAlso": [
- "https://sourceware.org/git/?p=binutils-gdb.git;a=blob;f=libiberty/strcasecmp.c;h=131d81c2ce7881fa48c363dc5bf5fb302c61ce0b;hb=HEAD",
- "https://git.openldap.org/openldap/openldap/-/blob/master/COPYRIGHT#L55-63"
- ],
- "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": 230,
- "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/GFDL-1.3-invariants-or-later.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/GFDL-1.3-invariants-or-later.json",
- "referenceNumber": 231,
- "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/LPD-document.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/LPD-document.json",
- "referenceNumber": 232,
- "name": "LPD Documentation License",
- "licenseId": "LPD-document",
- "seeAlso": [
- "https://github.com/Cyan4973/xxHash/blob/dev/doc/xxhash_spec.md",
- "https://www.ietf.org/rfc/rfc1952.txt"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/GFDL-1.3-invariants-only.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/GFDL-1.3-invariants-only.json",
- "referenceNumber": 233,
- "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/CC-BY-NC-SA-3.0-IGO.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-SA-3.0-IGO.json",
- "referenceNumber": 234,
- "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/HPND-doc.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/HPND-doc.json",
- "referenceNumber": 235,
- "name": "Historical Permission Notice and Disclaimer - documentation variant",
- "licenseId": "HPND-doc",
- "seeAlso": [
- "https://gitlab.freedesktop.org/xorg/lib/libxext/-/blob/master/COPYING?ref_type=heads#L185-197",
- "https://gitlab.freedesktop.org/xorg/lib/libxtst/-/blob/master/COPYING?ref_type=heads#L70-77"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/CNRI-Python.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/CNRI-Python.json",
- "referenceNumber": 236,
- "name": "CNRI Python License",
- "licenseId": "CNRI-Python",
- "seeAlso": [
- "https://opensource.org/licenses/CNRI-Python"
- ],
- "isOsiApproved": true
- },
- {
- "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": 237,
- "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/jove.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/jove.json",
- "referenceNumber": 238,
- "name": "Jove License",
- "licenseId": "jove",
- "seeAlso": [
- "https://github.com/jonmacs/jove/blob/4_17/LICENSE"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/Hippocratic-2.1.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Hippocratic-2.1.json",
- "referenceNumber": 239,
- "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/ThirdEye.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/ThirdEye.json",
- "referenceNumber": 240,
- "name": "ThirdEye License",
- "licenseId": "ThirdEye",
- "seeAlso": [
- "https://sourceware.org/cgit/binutils-gdb/tree/include/coff/symconst.h#n11"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/NTP.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/NTP.json",
- "referenceNumber": 241,
- "name": "NTP License",
- "licenseId": "NTP",
- "seeAlso": [
- "https://opensource.org/licenses/NTP"
- ],
- "isOsiApproved": true
- },
- {
- "reference": "https://spdx.org/licenses/ADSL.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/ADSL.json",
- "referenceNumber": 242,
- "name": "Amazon Digital Services License",
- "licenseId": "ADSL",
- "seeAlso": [
- "https://fedoraproject.org/wiki/Licensing/AmazonDigitalServicesLicense"
- ],
- "isOsiApproved": 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": 243,
- "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/BSD-2-Clause-Darwin.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/BSD-2-Clause-Darwin.json",
- "referenceNumber": 244,
- "name": "BSD 2-Clause - Ian Darwin variant",
- "licenseId": "BSD-2-Clause-Darwin",
- "seeAlso": [
- "https://github.com/file/file/blob/master/COPYING"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/TGPPL-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/TGPPL-1.0.json",
- "referenceNumber": 245,
- "name": "Transitive Grace Period Public Licence 1.0",
- "licenseId": "TGPPL-1.0",
- "seeAlso": [
- "https://fedoraproject.org/wiki/Licensing/TGPPL",
- "https://tahoe-lafs.org/trac/tahoe-lafs/browser/trunk/COPYING.TGPPL.rst"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/CC-BY-NC-SA-2.0-FR.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-SA-2.0-FR.json",
- "referenceNumber": 246,
- "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/LAL-1.2.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/LAL-1.2.json",
- "referenceNumber": 247,
- "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/CECILL-1.1.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/CECILL-1.1.json",
- "referenceNumber": 248,
- "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/CC-BY-ND-2.5.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/CC-BY-ND-2.5.json",
- "referenceNumber": 249,
- "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/GPL-2.0-with-GCC-exception.html",
- "isDeprecatedLicenseId": true,
- "detailsUrl": "https://spdx.org/licenses/GPL-2.0-with-GCC-exception.json",
- "referenceNumber": 250,
- "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=gcc.git;a=blob;f=gcc/libgcc1.c;h=762f5143fc6eed57b6797c82710f3538aa52b40b;hb=cb143a3ce4fb417c68f5fa2691a1b1b1053dfba9#l10"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/Boehm-GC.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Boehm-GC.json",
- "referenceNumber": 251,
- "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/hdparm.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/hdparm.json",
- "referenceNumber": 252,
- "name": "hdparm License",
- "licenseId": "hdparm",
- "seeAlso": [
- "https://github.com/Distrotech/hdparm/blob/4517550db29a91420fb2b020349523b1b4512df2/LICENSE.TXT"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/HPND-MIT-disclaimer.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/HPND-MIT-disclaimer.json",
- "referenceNumber": 253,
- "name": "Historical Permission Notice and Disclaimer with MIT disclaimer",
- "licenseId": "HPND-MIT-disclaimer",
- "seeAlso": [
- "https://metacpan.org/release/NLNETLABS/Net-DNS-SEC-1.22/source/LICENSE"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/OpenVision.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/OpenVision.json",
- "referenceNumber": 254,
- "name": "OpenVision License",
- "licenseId": "OpenVision",
- "seeAlso": [
- "https://github.com/krb5/krb5/blob/krb5-1.21.2-final/NOTICE#L66-L98",
- "https://web.mit.edu/kerberos/krb5-1.21/doc/mitK5license.html",
- "https://fedoraproject.org/wiki/Licensing:MIT#OpenVision_Variant"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/CC-BY-NC-SA-3.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-SA-3.0.json",
- "referenceNumber": 255,
- "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/mplus.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/mplus.json",
- "referenceNumber": 256,
- "name": "mplus Font License",
- "licenseId": "mplus",
- "seeAlso": [
- "https://fedoraproject.org/wiki/Licensing:Mplus?rd=Licensing/mplus"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/NOSL.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/NOSL.json",
- "referenceNumber": 257,
- "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/X11-no-permit-persons.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/X11-no-permit-persons.json",
- "referenceNumber": 258,
- "name": "X11 no permit persons clause",
- "licenseId": "X11-no-permit-persons",
- "seeAlso": [
- "https://gitlab.freedesktop.org/xorg/lib/libxinerama/-/blob/cc22c2f60c3862482562955116d5455263b443dc/COPYING#L44-66"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/psutils.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/psutils.json",
- "referenceNumber": 259,
- "name": "psutils License",
- "licenseId": "psutils",
- "seeAlso": [
- "https://fedoraproject.org/wiki/Licensing/psutils"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/AMPAS.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/AMPAS.json",
- "referenceNumber": 260,
- "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/DL-DE-BY-2.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/DL-DE-BY-2.0.json",
- "referenceNumber": 261,
- "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/Xdebug-1.03.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Xdebug-1.03.json",
- "referenceNumber": 262,
- "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/OFFIS.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/OFFIS.json",
- "referenceNumber": 263,
- "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/MIT-0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/MIT-0.json",
- "referenceNumber": 264,
- "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/EFL-2.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/EFL-2.0.json",
- "referenceNumber": 265,
- "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/Vim.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Vim.json",
- "referenceNumber": 266,
- "name": "Vim License",
- "licenseId": "Vim",
- "seeAlso": [
- "http://vimdoc.sourceforge.net/htmldoc/uganda.html"
- ],
- "isOsiApproved": false,
- "isFsfLibre": true
- },
- {
- "reference": "https://spdx.org/licenses/SunPro.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/SunPro.json",
- "referenceNumber": 267,
- "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/xzoom.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/xzoom.json",
- "referenceNumber": 268,
- "name": "xzoom License",
- "licenseId": "xzoom",
- "seeAlso": [
- "https://metadata.ftp-master.debian.org/changelogs//main/x/xzoom/xzoom_0.3-27_copyright"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/ICU.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/ICU.json",
- "referenceNumber": 269,
- "name": "ICU License",
- "licenseId": "ICU",
- "seeAlso": [
- "http://source.icu-project.org/repos/icu/icu/trunk/license.html"
- ],
- "isOsiApproved": true
- },
- {
- "reference": "https://spdx.org/licenses/SchemeReport.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/SchemeReport.json",
- "referenceNumber": 270,
- "name": "Scheme Language Report License",
- "licenseId": "SchemeReport",
- "seeAlso": [],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/Unlicense-libtelnet.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Unlicense-libtelnet.json",
- "referenceNumber": 271,
- "name": "Unlicense - libtelnet variant",
- "licenseId": "Unlicense-libtelnet",
- "seeAlso": [
- "https://github.com/seanmiddleditch/libtelnet/blob/develop/COPYING"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/Arphic-1999.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Arphic-1999.json",
- "referenceNumber": 272,
- "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/python-ldap.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/python-ldap.json",
- "referenceNumber": 273,
- "name": "Python ldap License",
- "licenseId": "python-ldap",
- "seeAlso": [
- "https://github.com/python-ldap/python-ldap/blob/main/LICENCE"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/Ubuntu-font-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Ubuntu-font-1.0.json",
- "referenceNumber": 274,
- "name": "Ubuntu Font Licence v1.0",
- "licenseId": "Ubuntu-font-1.0",
- "seeAlso": [
- "https://ubuntu.com/legal/font-licence",
- "https://assets.ubuntu.com/v1/81e5605d-ubuntu-font-licence-1.0.txt"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/LGPL-2.1.html",
- "isDeprecatedLicenseId": true,
- "detailsUrl": "https://spdx.org/licenses/LGPL-2.1.json",
- "referenceNumber": 275,
- "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/GL2PS.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/GL2PS.json",
- "referenceNumber": 276,
- "name": "GL2PS License",
- "licenseId": "GL2PS",
- "seeAlso": [
- "http://www.geuz.org/gl2ps/COPYING.GL2PS"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/MulanPSL-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/MulanPSL-1.0.json",
- "referenceNumber": 277,
- "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/OLDAP-2.2.1.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/OLDAP-2.2.1.json",
- "referenceNumber": 278,
- "name": "Open LDAP Public License v2.2.1",
- "licenseId": "OLDAP-2.2.1",
- "seeAlso": [
- "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=4bc786f34b50aa301be6f5600f58a980070f481e"
- ],
- "isOsiApproved": false
- },
- {
- "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": 279,
- "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/Libpng.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Libpng.json",
- "referenceNumber": 280,
- "name": "libpng License",
- "licenseId": "Libpng",
- "seeAlso": [
- "http://www.libpng.org/pub/png/src/libpng-LICENSE.txt"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/gnuplot.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/gnuplot.json",
- "referenceNumber": 281,
- "name": "gnuplot License",
- "licenseId": "gnuplot",
- "seeAlso": [
- "https://fedoraproject.org/wiki/Licensing/Gnuplot"
- ],
- "isOsiApproved": false,
- "isFsfLibre": true
- },
- {
- "reference": "https://spdx.org/licenses/Game-Programming-Gems.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Game-Programming-Gems.json",
- "referenceNumber": 282,
- "name": "Game Programming Gems License",
- "licenseId": "Game-Programming-Gems",
- "seeAlso": [
- "https://github.com/OGRECave/ogre/blob/master/OgreMain/include/OgreSingleton.h#L28C3-L35C46"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/PHP-3.01.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/PHP-3.01.json",
- "referenceNumber": 283,
- "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/CC-BY-NC-SA-4.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-SA-4.0.json",
- "referenceNumber": 284,
- "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/SAX-PD-2.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/SAX-PD-2.0.json",
- "referenceNumber": 285,
- "name": "Sax Public Domain Notice 2.0",
- "licenseId": "SAX-PD-2.0",
- "seeAlso": [
- "http://www.saxproject.org/copying.html"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/OSL-2.1.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/OSL-2.1.json",
- "referenceNumber": 286,
- "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/MIT-Wu.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/MIT-Wu.json",
- "referenceNumber": 287,
- "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/EUPL-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/EUPL-1.0.json",
- "referenceNumber": 288,
- "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=31096"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/ulem.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/ulem.json",
- "referenceNumber": 289,
- "name": "ulem License",
- "licenseId": "ulem",
- "seeAlso": [
- "https://mirrors.ctan.org/macros/latex/contrib/ulem/README"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/BSD-3-Clause.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause.json",
- "referenceNumber": 290,
- "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/AdaCore-doc.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/AdaCore-doc.json",
- "referenceNumber": 291,
- "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/OSSP.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/OSSP.json",
- "referenceNumber": 292,
- "name": "OSSP License",
- "licenseId": "OSSP",
- "seeAlso": [
- "https://git.sr.ht/~nabijaczleweli/ossp-var"
- ],
- "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": 293,
- "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=glibc.git;a=blob;f=LICENSES;h=530893b1dc9ea00755603c68fb36bd4fc38a7be8;hb=HEAD#l207"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/BSD-4-Clause.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/BSD-4-Clause.json",
- "referenceNumber": 294,
- "name": "BSD 4-Clause \"Original\" or \"Old\" License",
- "licenseId": "BSD-4-Clause",
- "seeAlso": [
- "http://directory.fsf.org/wiki/License:BSD_4Clause",
- "https://github.com/jsommers/pytricia/blob/master/patricia.c#L33-L67"
- ],
- "isOsiApproved": false,
- "isFsfLibre": true
- },
- {
- "reference": "https://spdx.org/licenses/JSON.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/JSON.json",
- "referenceNumber": 295,
- "name": "JSON License",
- "licenseId": "JSON",
- "seeAlso": [
- "http://www.json.org/license.html"
- ],
- "isOsiApproved": false,
- "isFsfLibre": false
- },
- {
- "reference": "https://spdx.org/licenses/MIT-STK.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/MIT-STK.json",
- "referenceNumber": 296,
- "name": "MIT-STK License",
- "licenseId": "MIT-STK",
- "seeAlso": [
- "https://github.com/thestk/stk/blob/6aacd357d76250bb7da2b1ddf675651828784bbc/LICENSE"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/ssh-keyscan.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/ssh-keyscan.json",
- "referenceNumber": 297,
- "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/HPND.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/HPND.json",
- "referenceNumber": 298,
- "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/FreeImage.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/FreeImage.json",
- "referenceNumber": 299,
- "name": "FreeImage Public License v1.0",
- "licenseId": "FreeImage",
- "seeAlso": [
- "http://freeimage.sourceforge.net/freeimage-license.txt"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/RPL-1.5.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/RPL-1.5.json",
- "referenceNumber": 300,
- "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/HPND-sell-MIT-disclaimer-xserver.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/HPND-sell-MIT-disclaimer-xserver.json",
- "referenceNumber": 301,
- "name": "Historical Permission Notice and Disclaimer - sell xserver variant with MIT disclaimer",
- "licenseId": "HPND-sell-MIT-disclaimer-xserver",
- "seeAlso": [
- "https://gitlab.freedesktop.org/xorg/xserver/-/blob/master/COPYING?ref_type=heads#L1781"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/ISO-permission.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/ISO-permission.json",
- "referenceNumber": 302,
- "name": "ISO permission notice",
- "licenseId": "ISO-permission",
- "seeAlso": [
- "https://gitlab.com/agmartin/linuxdoc-tools/-/blob/master/iso-entities/COPYING?ref_type=heads",
- "https://www.itu.int/ITU-T/formal-language/itu-t/t/t173/1997/ISOMHEG-sir.html"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/NPOSL-3.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/NPOSL-3.0.json",
- "referenceNumber": 303,
- "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/SSH-OpenSSH.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/SSH-OpenSSH.json",
- "referenceNumber": 304,
- "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/BSD-2-Clause-Patent.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/BSD-2-Clause-Patent.json",
- "referenceNumber": 305,
- "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/LGPL-2.0-only.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/LGPL-2.0-only.json",
- "referenceNumber": 306,
- "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/UnRAR.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/UnRAR.json",
- "referenceNumber": 307,
- "name": "UnRAR License",
- "licenseId": "UnRAR",
- "seeAlso": [
- "https://public.dhe.ibm.com/aix/freeSoftware/aixtoolbox/LICENSES/unRAR.txt"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/FSFULLRSD.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/FSFULLRSD.json",
- "referenceNumber": 308,
- "name": "FSF Unlimited License (with License Retention and Short Disclaimer)",
- "licenseId": "FSFULLRSD",
- "seeAlso": [
- "https://git.savannah.gnu.org/cgit/gnulib.git/tree/modules/COPYING?id=7b08932179d0d6b017f7df01a2ddf6e096b038e3"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/ESA-PL-weak-copyleft-2.4.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/ESA-PL-weak-copyleft-2.4.json",
- "referenceNumber": 309,
- "name": "European Space Agency Public License â v2.4 â Weak Copyleft (Type 2)",
- "licenseId": "ESA-PL-weak-copyleft-2.4",
- "seeAlso": [
- "https://essr.esa.int/license/european-space-agency-public-license-v2-4-weak-copyleft-type-2"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/NBPL-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/NBPL-1.0.json",
- "referenceNumber": 310,
- "name": "Net Boolean Public License v1",
- "licenseId": "NBPL-1.0",
- "seeAlso": [
- "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=37b4b3f6cc4bf34e1d3dec61e69914b9819d8894"
- ],
- "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": 311,
- "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/UMich-Merit.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/UMich-Merit.json",
- "referenceNumber": 312,
- "name": "Michigan/Merit Networks License",
- "licenseId": "UMich-Merit",
- "seeAlso": [
- "https://github.com/radcli/radcli/blob/master/COPYRIGHT#L64"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/TMate.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/TMate.json",
- "referenceNumber": 313,
- "name": "TMate Open Source License",
- "licenseId": "TMate",
- "seeAlso": [
- "http://svnkit.com/license.html"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/WordNet.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/WordNet.json",
- "referenceNumber": 314,
- "name": "WordNet License",
- "licenseId": "WordNet",
- "seeAlso": [
- "https://wordnet.princeton.edu/license-and-commercial-use"
- ],
- "isOsiApproved": true
- },
- {
- "reference": "https://spdx.org/licenses/EPICS.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/EPICS.json",
- "referenceNumber": 315,
- "name": "EPICS Open License",
- "licenseId": "EPICS",
- "seeAlso": [
- "https://epics.anl.gov/license/open.php"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/BSD-2-Clause-Views.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/BSD-2-Clause-Views.json",
- "referenceNumber": 316,
- "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-HP.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-HP.json",
- "referenceNumber": 317,
- "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-flex.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-flex.json",
- "referenceNumber": 318,
- "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/GPL-2.0.html",
- "isDeprecatedLicenseId": true,
- "detailsUrl": "https://spdx.org/licenses/GPL-2.0.json",
- "referenceNumber": 319,
- "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/QPL-1.0-INRIA-2004.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/QPL-1.0-INRIA-2004.json",
- "referenceNumber": 320,
- "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/CC-BY-NC-2.5.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-2.5.json",
- "referenceNumber": 321,
- "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/GPL-2.0-with-font-exception.html",
- "isDeprecatedLicenseId": true,
- "detailsUrl": "https://spdx.org/licenses/GPL-2.0-with-font-exception.json",
- "referenceNumber": 322,
- "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-only.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/GPL-2.0-only.json",
- "referenceNumber": 323,
- "name": "GNU General Public License v2.0 only",
- "licenseId": "GPL-2.0-only",
- "seeAlso": [
- "https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",
- "https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt",
- "https://opensource.org/licenses/GPL-2.0",
- "https://github.com/openjdk/jdk/blob/6162e2c5213c5dd7c1127fd9616b543efa898962/LICENSE"
- ],
- "isOsiApproved": true,
- "isFsfLibre": true
- },
- {
- "reference": "https://spdx.org/licenses/OFL-1.1-RFN.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/OFL-1.1-RFN.json",
- "referenceNumber": 324,
- "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=OFL_web",
- "https://opensource.org/licenses/OFL-1.1"
- ],
- "isOsiApproved": true
- },
- {
- "reference": "https://spdx.org/licenses/Ruby.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Ruby.json",
- "referenceNumber": 325,
- "name": "Ruby License",
- "licenseId": "Ruby",
- "seeAlso": [
- "https://www.ruby-lang.org/en/about/license.txt"
- ],
- "isOsiApproved": false,
- "isFsfLibre": true
- },
- {
- "reference": "https://spdx.org/licenses/FSFULLRWD.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/FSFULLRWD.json",
- "referenceNumber": 326,
- "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/GFDL-1.1-only.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/GFDL-1.1-only.json",
- "referenceNumber": 327,
- "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/Info-ZIP.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Info-ZIP.json",
- "referenceNumber": 328,
- "name": "Info-ZIP License",
- "licenseId": "Info-ZIP",
- "seeAlso": [
- "http://www.info-zip.org/license.html"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/Intel-ACPI.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Intel-ACPI.json",
- "referenceNumber": 329,
- "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/libpng-2.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/libpng-2.0.json",
- "referenceNumber": 330,
- "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": 331,
- "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/GPL-2.0-with-classpath-exception.html",
- "isDeprecatedLicenseId": true,
- "detailsUrl": "https://spdx.org/licenses/GPL-2.0-with-classpath-exception.json",
- "referenceNumber": 332,
- "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/BUSL-1.1.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/BUSL-1.1.json",
- "referenceNumber": 333,
- "name": "Business Source License 1.1",
- "licenseId": "BUSL-1.1",
- "seeAlso": [
- "https://mariadb.com/bsl11/"
- ],
- "isOsiApproved": false
- },
- {
- "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": 334,
- "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://www.gnu.org/licenses/old-licenses/lgpl-2.1.html",
- "https://opensource.org/licenses/LGPL-2.1"
- ],
- "isOsiApproved": true,
- "isFsfLibre": true
- },
- {
- "reference": "https://spdx.org/licenses/ImageMagick.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/ImageMagick.json",
- "referenceNumber": 335,
- "name": "ImageMagick License",
- "licenseId": "ImageMagick",
- "seeAlso": [
- "http://www.imagemagick.org/script/license.php"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/MMIXware.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/MMIXware.json",
- "referenceNumber": 336,
- "name": "MMIXware License",
- "licenseId": "MMIXware",
- "seeAlso": [
- "https://gitlab.lrz.de/mmix/mmixware/-/blob/master/boilerplate.w"
- ],
- "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": 337,
- "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/IPL-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/IPL-1.0.json",
- "referenceNumber": 338,
- "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/BSD-Protection.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/BSD-Protection.json",
- "referenceNumber": 339,
- "name": "BSD Protection License",
- "licenseId": "BSD-Protection",
- "seeAlso": [
- "https://fedoraproject.org/wiki/Licensing/BSD_Protection_License"
- ],
- "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": 340,
- "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/Linux-man-pages-1-para.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Linux-man-pages-1-para.json",
- "referenceNumber": 341,
- "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/SHL-0.51.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/SHL-0.51.json",
- "referenceNumber": 342,
- "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/BSD-4-Clause-UC.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/BSD-4-Clause-UC.json",
- "referenceNumber": 343,
- "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/OLDAP-2.6.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/OLDAP-2.6.json",
- "referenceNumber": 344,
- "name": "Open LDAP Public License v2.6",
- "licenseId": "OLDAP-2.6",
- "seeAlso": [
- "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=1cae062821881f41b73012ba816434897abf4205"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/Adobe-Glyph.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Adobe-Glyph.json",
- "referenceNumber": 345,
- "name": "Adobe Glyph List License",
- "licenseId": "Adobe-Glyph",
- "seeAlso": [
- "https://fedoraproject.org/wiki/Licensing/MIT#AdobeGlyph"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/wxWindows.html",
- "isDeprecatedLicenseId": true,
- "detailsUrl": "https://spdx.org/licenses/wxWindows.json",
- "referenceNumber": 346,
- "name": "wxWindows Library License",
- "licenseId": "wxWindows",
- "seeAlso": [
- "https://opensource.org/licenses/WXwindows"
- ],
- "isOsiApproved": true
- },
- {
- "reference": "https://spdx.org/licenses/any-OSI.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/any-OSI.json",
- "referenceNumber": 347,
- "name": "Any OSI License",
- "licenseId": "any-OSI",
- "seeAlso": [
- "https://metacpan.org/pod/Exporter::Tidy#LICENSE"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/OPL-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/OPL-1.0.json",
- "referenceNumber": 348,
- "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/GPL-1.0-only.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/GPL-1.0-only.json",
- "referenceNumber": 349,
- "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/Aspell-RU.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Aspell-RU.json",
- "referenceNumber": 350,
- "name": "Aspell Russian License",
- "licenseId": "Aspell-RU",
- "seeAlso": [
- "https://ftp.gnu.org/gnu/aspell/dict/ru/aspell6-ru-0.99f7-1.tar.bz2"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/FTL.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/FTL.json",
- "referenceNumber": 351,
- "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/BitTorrent-1.1.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/BitTorrent-1.1.json",
- "referenceNumber": 352,
- "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/LGPL-2.0.html",
- "isDeprecatedLicenseId": true,
- "detailsUrl": "https://spdx.org/licenses/LGPL-2.0.json",
- "referenceNumber": 353,
- "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/OSL-3.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/OSL-3.0.json",
- "referenceNumber": 354,
- "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/Buddy.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Buddy.json",
- "referenceNumber": 355,
- "name": "Buddy License",
- "licenseId": "Buddy",
- "seeAlso": [
- "https://sourceforge.net/p/buddy/gitcode/ci/master/tree/README"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/CPAL-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/CPAL-1.0.json",
- "referenceNumber": 356,
- "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/APSL-2.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/APSL-2.0.json",
- "referenceNumber": 357,
- "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/CC-BY-SA-3.0-IGO.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/CC-BY-SA-3.0-IGO.json",
- "referenceNumber": 358,
- "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/MIT-CMU.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/MIT-CMU.json",
- "referenceNumber": 359,
- "name": "CMU License",
- "licenseId": "MIT-CMU",
- "seeAlso": [
- "https://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#CMU_Style",
- "https://github.com/python-pillow/Pillow/blob/fffb426092c8db24a5f4b6df243a8a3c01fb63cd/LICENSE"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/Minpack.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Minpack.json",
- "referenceNumber": 360,
- "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/Unicode-DFS-2015.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Unicode-DFS-2015.json",
- "referenceNumber": 361,
- "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/Linux-man-pages-copyleft.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Linux-man-pages-copyleft.json",
- "referenceNumber": 362,
- "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/CAL-1.0-Combined-Work-Exception.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/CAL-1.0-Combined-Work-Exception.json",
- "referenceNumber": 363,
- "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/Xnet.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Xnet.json",
- "referenceNumber": 364,
- "name": "X.Net License",
- "licenseId": "Xnet",
- "seeAlso": [
- "https://opensource.org/licenses/Xnet"
- ],
- "isOsiApproved": true
- },
- {
- "reference": "https://spdx.org/licenses/OSC-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/OSC-1.0.json",
- "referenceNumber": 365,
- "name": "OSC License 1.0",
- "licenseId": "OSC-1.0",
- "seeAlso": [
- "https://opensource.org/license/osc-license-1-0"
- ],
- "isOsiApproved": true
- },
- {
- "reference": "https://spdx.org/licenses/Cube.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Cube.json",
- "referenceNumber": 366,
- "name": "Cube License",
- "licenseId": "Cube",
- "seeAlso": [
- "https://fedoraproject.org/wiki/Licensing/Cube"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/LPPL-1.1.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/LPPL-1.1.json",
- "referenceNumber": 367,
- "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/NLOD-2.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/NLOD-2.0.json",
- "referenceNumber": 368,
- "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/Knuth-CTAN.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Knuth-CTAN.json",
- "referenceNumber": 369,
- "name": "Knuth CTAN License",
- "licenseId": "Knuth-CTAN",
- "seeAlso": [
- "https://ctan.org/license/knuth"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/FreeBSD-DOC.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/FreeBSD-DOC.json",
- "referenceNumber": 370,
- "name": "FreeBSD Documentation License",
- "licenseId": "FreeBSD-DOC",
- "seeAlso": [
- "https://www.freebsd.org/copyright/freebsd-doc-license/"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/TORQUE-1.1.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/TORQUE-1.1.json",
- "referenceNumber": 371,
- "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/HPND-Markus-Kuhn.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/HPND-Markus-Kuhn.json",
- "referenceNumber": 372,
- "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=binutils-gdb.git;a=blob;f=readline/readline/support/wcwidth.c;h=0f5ec995796f4813abbcf4972aec0378ab74722a;hb=HEAD#l55"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/Adobe-2006.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Adobe-2006.json",
- "referenceNumber": 373,
- "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/MTLL.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/MTLL.json",
- "referenceNumber": 374,
- "name": "Matrix Template Library License",
- "licenseId": "MTLL",
- "seeAlso": [
- "https://fedoraproject.org/wiki/Licensing/Matrix_Template_Library_License"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/ANTLR-PD.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/ANTLR-PD.json",
- "referenceNumber": 375,
- "name": "ANTLR Software Rights Notice",
- "licenseId": "ANTLR-PD",
- "seeAlso": [
- "http://www.antlr2.org/license.html"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/Wsuipa.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Wsuipa.json",
- "referenceNumber": 376,
- "name": "Wsuipa License",
- "licenseId": "Wsuipa",
- "seeAlso": [
- "https://fedoraproject.org/wiki/Licensing/Wsuipa"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/Artistic-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Artistic-1.0.json",
- "referenceNumber": 377,
- "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/COIL-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/COIL-1.0.json",
- "referenceNumber": 378,
- "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/OML.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/OML.json",
- "referenceNumber": 379,
- "name": "Open Market License",
- "licenseId": "OML",
- "seeAlso": [
- "https://fedoraproject.org/wiki/Licensing/Open_Market_License"
- ],
- "isOsiApproved": false
- },
- {
- "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": 380,
- "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/GFDL-1.1-invariants-or-later.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/GFDL-1.1-invariants-or-later.json",
- "referenceNumber": 381,
- "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/SSLeay-standalone.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/SSLeay-standalone.json",
- "referenceNumber": 382,
- "name": "SSLeay License - standalone",
- "licenseId": "SSLeay-standalone",
- "seeAlso": [
- "https://www.tq-group.com/filedownloads/files/software-license-conditions/OriginalSSLeay/OriginalSSLeay.pdf"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/C-UDA-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/C-UDA-1.0.json",
- "referenceNumber": 383,
- "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/HP-1989.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/HP-1989.json",
- "referenceNumber": 384,
- "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/Cornell-Lossless-JPEG.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Cornell-Lossless-JPEG.json",
- "referenceNumber": 385,
- "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/GFDL-1.3-no-invariants-or-later.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/GFDL-1.3-no-invariants-or-later.json",
- "referenceNumber": 386,
- "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/CC-BY-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/CC-BY-1.0.json",
- "referenceNumber": 387,
- "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/MMPL-1.0.1.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/MMPL-1.0.1.json",
- "referenceNumber": 388,
- "name": "Minecraft Mod Public License v1.0.1",
- "licenseId": "MMPL-1.0.1",
- "seeAlso": [
- "https://github.com/BuildCraft/BuildCraft/blob/623d323b1868712f29f4a8b0979a02e8d1835131/LICENSE",
- "https://mod-buildcraft.com/MMPL-1.0.txt"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/SNIA.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/SNIA.json",
- "referenceNumber": 389,
- "name": "SNIA Public License 1.1",
- "licenseId": "SNIA",
- "seeAlso": [
- "https://fedoraproject.org/wiki/Licensing/SNIA_Public_License"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/OpenPBS-2.3.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/OpenPBS-2.3.json",
- "referenceNumber": 390,
- "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/NCGL-UK-2.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/NCGL-UK-2.0.json",
- "referenceNumber": 391,
- "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/Mackerras-3-Clause-acknowledgment.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Mackerras-3-Clause-acknowledgment.json",
- "referenceNumber": 392,
- "name": "Mackerras 3-Clause - acknowledgment variant",
- "licenseId": "Mackerras-3-Clause-acknowledgment",
- "seeAlso": [
- "https://github.com/ppp-project/ppp/blob/master/pppd/auth.c#L6-L28"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/NTP-0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/NTP-0.json",
- "referenceNumber": 393,
- "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/NICTA-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/NICTA-1.0.json",
- "referenceNumber": 394,
- "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/Frameworx-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Frameworx-1.0.json",
- "referenceNumber": 395,
- "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/CNRI-Jython.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/CNRI-Jython.json",
- "referenceNumber": 396,
- "name": "CNRI Jython License",
- "licenseId": "CNRI-Jython",
- "seeAlso": [
- "http://www.jython.org/license.html"
- ],
- "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": 397,
- "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/BSD-3-Clause-No-Nuclear-License.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License.json",
- "referenceNumber": 398,
- "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"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/libutil-David-Nugent.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/libutil-David-Nugent.json",
- "referenceNumber": 399,
- "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/CC-BY-NC-ND-3.0-IGO.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-ND-3.0-IGO.json",
- "referenceNumber": 400,
- "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/any-OSI-perl-modules.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/any-OSI-perl-modules.json",
- "referenceNumber": 401,
- "name": "Any OSI License - Perl Modules",
- "licenseId": "any-OSI-perl-modules",
- "seeAlso": [
- "https://metacpan.org/release/JUERD/Exporter-Tidy-0.09/view/Tidy.pm#LICENSE",
- "https://metacpan.org/pod/Qmail::Deliverable::Client#LICENSE",
- "https://metacpan.org/pod/Net::MQTT::Simple#LICENSE"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/MIT-advertising.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/MIT-advertising.json",
- "referenceNumber": 402,
- "name": "Enlightenment License (e16)",
- "licenseId": "MIT-advertising",
- "seeAlso": [
- "https://fedoraproject.org/wiki/Licensing/MIT_With_Advertising"
- ],
- "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": 403,
- "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/Xfig.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Xfig.json",
- "referenceNumber": 404,
- "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/zlib-acknowledgement.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/zlib-acknowledgement.json",
- "referenceNumber": 405,
- "name": "zlib/libpng License with Acknowledgement",
- "licenseId": "zlib-acknowledgement",
- "seeAlso": [
- "https://fedoraproject.org/wiki/Licensing/ZlibWithAcknowledgement"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/ISC-Veillard.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/ISC-Veillard.json",
- "referenceNumber": 406,
- "name": "ISC Veillard variant",
- "licenseId": "ISC-Veillard",
- "seeAlso": [
- "https://raw.githubusercontent.com/GNOME/libxml2/4c2e7c651f6c2f0d1a74f350cbda95f7df3e7017/hash.c",
- "https://github.com/GNOME/libxml2/blob/master/dict.c",
- "https://sourceforge.net/p/ctrio/git/ci/master/tree/README"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/YPL-1.1.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/YPL-1.1.json",
- "referenceNumber": 407,
- "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/BSD-3-Clause-Modification.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-Modification.json",
- "referenceNumber": 408,
- "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/Artistic-1.0-Perl.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Artistic-1.0-Perl.json",
- "referenceNumber": 409,
- "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/GPL-3.0-only.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/GPL-3.0-only.json",
- "referenceNumber": 410,
- "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/TU-Berlin-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/TU-Berlin-1.0.json",
- "referenceNumber": 411,
- "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/GPL-1.0+.html",
- "isDeprecatedLicenseId": true,
- "detailsUrl": "https://spdx.org/licenses/GPL-1.0+.json",
- "referenceNumber": 412,
- "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/OPUBL-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/OPUBL-1.0.json",
- "referenceNumber": 413,
- "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/App-s2p.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/App-s2p.json",
- "referenceNumber": 414,
- "name": "App::s2p License",
- "licenseId": "App-s2p",
- "seeAlso": [
- "https://fedoraproject.org/wiki/Licensing/App-s2p"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/checkmk.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/checkmk.json",
- "referenceNumber": 415,
- "name": "Checkmk License",
- "licenseId": "checkmk",
- "seeAlso": [
- "https://github.com/libcheck/check/blob/master/checkmk/checkmk.in"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/CC-BY-3.0-AU.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/CC-BY-3.0-AU.json",
- "referenceNumber": 416,
- "name": "Creative Commons Attribution 3.0 Australia",
- "licenseId": "CC-BY-3.0-AU",
- "seeAlso": [
- "https://creativecommons.org/licenses/by/3.0/au/legalcode"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/CC-BY-NC-4.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-4.0.json",
- "referenceNumber": 417,
- "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/Intel.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Intel.json",
- "referenceNumber": 418,
- "name": "Intel Open Source License",
- "licenseId": "Intel",
- "seeAlso": [
- "https://opensource.org/licenses/Intel"
- ],
- "isOsiApproved": true,
- "isFsfLibre": true
- },
- {
- "reference": "https://spdx.org/licenses/OFL-1.0-RFN.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/OFL-1.0-RFN.json",
- "referenceNumber": 419,
- "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=OFL10_web"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/MPL-2.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/MPL-2.0.json",
- "referenceNumber": 420,
- "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/NGPL.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/NGPL.json",
- "referenceNumber": 421,
- "name": "Nethack General Public License",
- "licenseId": "NGPL",
- "seeAlso": [
- "https://opensource.org/licenses/NGPL"
- ],
- "isOsiApproved": true
- },
- {
- "reference": "https://spdx.org/licenses/0BSD.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/0BSD.json",
- "referenceNumber": 422,
- "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/OSET-PL-2.1.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/OSET-PL-2.1.json",
- "referenceNumber": 423,
- "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/FBM.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/FBM.json",
- "referenceNumber": 424,
- "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/UnixCrypt.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/UnixCrypt.json",
- "referenceNumber": 425,
- "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/LGPL-3.0.html",
- "isDeprecatedLicenseId": true,
- "detailsUrl": "https://spdx.org/licenses/LGPL-3.0.json",
- "referenceNumber": 426,
- "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/MPL-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/MPL-1.0.json",
- "referenceNumber": 427,
- "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/Giftware.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Giftware.json",
- "referenceNumber": 428,
- "name": "Giftware License",
- "licenseId": "Giftware",
- "seeAlso": [
- "http://liballeg.org/license.html#allegro-4-the-giftware-license"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/Beerware.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Beerware.json",
- "referenceNumber": 429,
- "name": "Beerware License",
- "licenseId": "Beerware",
- "seeAlso": [
- "https://fedoraproject.org/wiki/Licensing/Beerware",
- "https://people.freebsd.org/~phk/"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/Caldera-no-preamble.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Caldera-no-preamble.json",
- "referenceNumber": 430,
- "name": "Caldera License (without preamble)",
- "licenseId": "Caldera-no-preamble",
- "seeAlso": [
- "https://github.com/apache/apr/blob/trunk/LICENSE#L298C6-L298C29"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/BSD-2-Clause.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/BSD-2-Clause.json",
- "referenceNumber": 431,
- "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/TTWL.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/TTWL.json",
- "referenceNumber": 432,
- "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/FSL-1.1-ALv2.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/FSL-1.1-ALv2.json",
- "referenceNumber": 433,
- "name": "Functional Source License, Version 1.1, ALv2 Future License",
- "licenseId": "FSL-1.1-ALv2",
- "seeAlso": [
- "https://fsl.software/FSL-1.1-ALv2.template.md"
- ],
- "isOsiApproved": false
- },
- {
- "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": 434,
- "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/ESA-PL-permissive-2.4.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/ESA-PL-permissive-2.4.json",
- "referenceNumber": 435,
- "name": "European Space Agency Public License â v2.4 â Permissive (Type 3)",
- "licenseId": "ESA-PL-permissive-2.4",
- "seeAlso": [
- "https://essr.esa.int/license/european-space-agency-public-license-v2-4-permissive-type-3"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/OSL-1.1.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/OSL-1.1.json",
- "referenceNumber": 436,
- "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/OCCT-PL.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/OCCT-PL.json",
- "referenceNumber": 437,
- "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/Interbase-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Interbase-1.0.json",
- "referenceNumber": 438,
- "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/AMD-newlib.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/AMD-newlib.json",
- "referenceNumber": 439,
- "name": "AMD newlib License",
- "licenseId": "AMD-newlib",
- "seeAlso": [
- "https://sourceware.org/git/?p=newlib-cygwin.git;a=blob;f=newlib/libc/sys/a29khif/_close.S;h=04f52ae00de1dafbd9055ad8d73c5c697a3aae7f;hb=HEAD"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/QPL-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/QPL-1.0.json",
- "referenceNumber": 440,
- "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/libpng-1.6.35.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/libpng-1.6.35.json",
- "referenceNumber": 441,
- "name": "PNG Reference Library License v1 (for libpng 0.5 through 1.6.35)",
- "licenseId": "libpng-1.6.35",
- "seeAlso": [
- "http://www.libpng.org/pub/png/src/libpng-LICENSE.txt"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/MITNFA.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/MITNFA.json",
- "referenceNumber": 442,
- "name": "MIT +no-false-attribs license",
- "licenseId": "MITNFA",
- "seeAlso": [
- "https://fedoraproject.org/wiki/Licensing/MITNFA"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/OpenSSL-standalone.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/OpenSSL-standalone.json",
- "referenceNumber": 443,
- "name": "OpenSSL License - standalone",
- "licenseId": "OpenSSL-standalone",
- "seeAlso": [
- "https://library.netapp.com/ecm/ecm_download_file/ECMP1196395",
- "https://hstechdocs.helpsystems.com/manuals/globalscape/archive/cuteftp6/open_ssl_license_agreement.htm"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/MIT-Click.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/MIT-Click.json",
- "referenceNumber": 444,
- "name": "MIT Click License",
- "licenseId": "MIT-Click",
- "seeAlso": [
- "https://github.com/kohler/t1utils/blob/master/LICENSE"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/BSD-Systemics-W3Works.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/BSD-Systemics-W3Works.json",
- "referenceNumber": 445,
- "name": "Systemics W3Works BSD variant license",
- "licenseId": "BSD-Systemics-W3Works",
- "seeAlso": [
- "https://metacpan.org/release/DPARIS/Crypt-Blowfish-2.14/source/COPYRIGHT#L7"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/NIST-PD.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/NIST-PD.json",
- "referenceNumber": 446,
- "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/NLPL.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/NLPL.json",
- "referenceNumber": 447,
- "name": "No Limit Public License",
- "licenseId": "NLPL",
- "seeAlso": [
- "https://fedoraproject.org/wiki/Licensing/NLPL"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/BSD-Systemics.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/BSD-Systemics.json",
- "referenceNumber": 448,
- "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/HPND-sell-variant-MIT-disclaimer-rev.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/HPND-sell-variant-MIT-disclaimer-rev.json",
- "referenceNumber": 449,
- "name": "HPND sell variant with MIT disclaimer - reverse",
- "licenseId": "HPND-sell-variant-MIT-disclaimer-rev",
- "seeAlso": [
- "https://github.com/sigmavirus24/x11-ssh-askpass/blob/master/dynlist.c"
- ],
- "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": 450,
- "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/GFDL-1.2-invariants-or-later.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/GFDL-1.2-invariants-or-later.json",
- "referenceNumber": 451,
- "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/SGI-B-2.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/SGI-B-2.0.json",
- "referenceNumber": 452,
- "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/Martin-Birgmeier.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Martin-Birgmeier.json",
- "referenceNumber": 453,
- "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/LGPL-2.0+.html",
- "isDeprecatedLicenseId": true,
- "detailsUrl": "https://spdx.org/licenses/LGPL-2.0+.json",
- "referenceNumber": 454,
- "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/WTFPL.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/WTFPL.json",
- "referenceNumber": 455,
- "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/Zimbra-1.3.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Zimbra-1.3.json",
- "referenceNumber": 456,
- "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/CC-BY-SA-3.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/CC-BY-SA-3.0.json",
- "referenceNumber": 457,
- "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/X11.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/X11.json",
- "referenceNumber": 458,
- "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/BSD-3-Clause-No-Nuclear-License-2014.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License-2014.json",
- "referenceNumber": 459,
- "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/AFL-2.1.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/AFL-2.1.json",
- "referenceNumber": 460,
- "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/CrystalStacker.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/CrystalStacker.json",
- "referenceNumber": 461,
- "name": "CrystalStacker License",
- "licenseId": "CrystalStacker",
- "seeAlso": [
- "https://fedoraproject.org/wiki/Licensing:CrystalStacker?rd=Licensing/CrystalStacker"
- ],
- "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": 462,
- "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/diffmark.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/diffmark.json",
- "referenceNumber": 463,
- "name": "diffmark license",
- "licenseId": "diffmark",
- "seeAlso": [
- "https://fedoraproject.org/wiki/Licensing/diffmark"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/softSurfer.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/softSurfer.json",
- "referenceNumber": 464,
- "name": "softSurfer License",
- "licenseId": "softSurfer",
- "seeAlso": [
- "https://github.com/mm2/Little-CMS/blob/master/src/cmssm.c#L207",
- "https://fedoraproject.org/wiki/Licensing/softSurfer"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/hyphen-bulgarian.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/hyphen-bulgarian.json",
- "referenceNumber": 465,
- "name": "hyphen-bulgarian License",
- "licenseId": "hyphen-bulgarian",
- "seeAlso": [
- "https://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphen-bulgarian.tar.xz",
- "https://gitlab.freedesktop.org/xkeyboard-config/xkeyboard-config/-/blob/959538769bfad6a73bdf34275d46520ec0f9cbb5/COPYING#L176-185"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/HPND-Intel.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/HPND-Intel.json",
- "referenceNumber": 466,
- "name": "Historical Permission Notice and Disclaimer - Intel variant",
- "licenseId": "HPND-Intel",
- "seeAlso": [
- "https://sourceware.org/git/?p=newlib-cygwin.git;a=blob;f=newlib/libc/machine/i960/memcpy.S;hb=HEAD"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/Newsletr.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Newsletr.json",
- "referenceNumber": 467,
- "name": "Newsletr License",
- "licenseId": "Newsletr",
- "seeAlso": [
- "https://fedoraproject.org/wiki/Licensing/Newsletr"
- ],
- "isOsiApproved": false
- },
- {
- "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": 468,
- "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/iMatix.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/iMatix.json",
- "referenceNumber": 469,
- "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/LPPL-1.3a.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/LPPL-1.3a.json",
- "referenceNumber": 470,
- "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/LAL-1.3.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/LAL-1.3.json",
- "referenceNumber": 471,
- "name": "Licence Art Libre 1.3",
- "licenseId": "LAL-1.3",
- "seeAlso": [
- "https://artlibre.org/"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/OLDAP-2.1.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/OLDAP-2.1.json",
- "referenceNumber": 472,
- "name": "Open LDAP Public License v2.1",
- "licenseId": "OLDAP-2.1",
- "seeAlso": [
- "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=b0d176738e96a0d3b9f85cb51e140a86f21be715"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/Symlinks.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Symlinks.json",
- "referenceNumber": 473,
- "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/OFL-1.1.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/OFL-1.1.json",
- "referenceNumber": 474,
- "name": "SIL Open Font License 1.1",
- "licenseId": "OFL-1.1",
- "seeAlso": [
- "http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web",
- "https://opensource.org/licenses/OFL-1.1"
- ],
- "isOsiApproved": true,
- "isFsfLibre": true
- },
- {
- "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": 475,
- "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/Brian-Gladman-3-Clause.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Brian-Gladman-3-Clause.json",
- "referenceNumber": 476,
- "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/Artistic-1.0-cl8.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Artistic-1.0-cl8.json",
- "referenceNumber": 477,
- "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/AFL-3.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/AFL-3.0.json",
- "referenceNumber": 478,
- "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/MPL-1.1.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/MPL-1.1.json",
- "referenceNumber": 479,
- "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/HPND-SMC.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/HPND-SMC.json",
- "referenceNumber": 480,
- "name": "Historical Permission Notice and Disclaimer - SMC variant",
- "licenseId": "HPND-SMC",
- "seeAlso": [
- "https://docs.python.org/3/license.html#execution-tracing"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/ISC.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/ISC.json",
- "referenceNumber": 481,
- "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/LGPL-2.1-only.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/LGPL-2.1-only.json",
- "referenceNumber": 482,
- "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://www.gnu.org/licenses/old-licenses/lgpl-2.1.html",
- "https://opensource.org/licenses/LGPL-2.1"
- ],
- "isOsiApproved": true,
- "isFsfLibre": true
- },
- {
- "reference": "https://spdx.org/licenses/Zimbra-1.4.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Zimbra-1.4.json",
- "referenceNumber": 483,
- "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/dtoa.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/dtoa.json",
- "referenceNumber": 484,
- "name": "David M. Gay dtoa License",
- "licenseId": "dtoa",
- "seeAlso": [
- "https://github.com/SWI-Prolog/swipl-devel/blob/master/src/os/dtoa.c",
- "https://sourceware.org/git/?p=newlib-cygwin.git;a=blob;f=newlib/libc/stdlib/mprec.h;hb=HEAD"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/ODC-By-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/ODC-By-1.0.json",
- "referenceNumber": 485,
- "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/GFDL-1.1.html",
- "isDeprecatedLicenseId": true,
- "detailsUrl": "https://spdx.org/licenses/GFDL-1.1.json",
- "referenceNumber": 486,
- "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/CC-BY-ND-4.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/CC-BY-ND-4.0.json",
- "referenceNumber": 487,
- "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/W3C.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/W3C.json",
- "referenceNumber": 488,
- "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/BSD-3-Clause-Open-MPI.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-Open-MPI.json",
- "referenceNumber": 489,
- "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": true
- },
- {
- "reference": "https://spdx.org/licenses/PSF-2.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/PSF-2.0.json",
- "referenceNumber": 490,
- "name": "Python Software Foundation License 2.0",
- "licenseId": "PSF-2.0",
- "seeAlso": [
- "https://opensource.org/licenses/Python-2.0",
- "https://matplotlib.org/stable/project/license.html"
- ],
- "isOsiApproved": false
- },
- {
- "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": 491,
- "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",
- "https://github.com/openjdk/jdk/blob/6162e2c5213c5dd7c1127fd9616b543efa898962/LICENSE"
- ],
- "isOsiApproved": true,
- "isFsfLibre": true
- },
- {
- "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": 492,
- "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/ESA-PL-strong-copyleft-2.4.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/ESA-PL-strong-copyleft-2.4.json",
- "referenceNumber": 493,
- "name": "European Space Agency Public License (ESA-PL) - V2.4 - Strong Copyleft (Type 1)",
- "licenseId": "ESA-PL-strong-copyleft-2.4",
- "seeAlso": [
- "https://essr.esa.int/license/european-space-agency-public-license-v2-4-strong-copyleft-type-1"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/bcrypt-Solar-Designer.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/bcrypt-Solar-Designer.json",
- "referenceNumber": 494,
- "name": "bcrypt Solar Designer License",
- "licenseId": "bcrypt-Solar-Designer",
- "seeAlso": [
- "https://github.com/bcrypt-ruby/bcrypt-ruby/blob/master/ext/mri/crypt_blowfish.c"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/AFL-1.2.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/AFL-1.2.json",
- "referenceNumber": 495,
- "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": 496,
- "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/BSD-4.3TAHOE.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/BSD-4.3TAHOE.json",
- "referenceNumber": 497,
- "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=a74c6b4ee49397cf330b333da1042bffa60ed14f#n1788"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/LOOP.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/LOOP.json",
- "referenceNumber": 498,
- "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=Version_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/GFDL-1.3.html",
- "isDeprecatedLicenseId": true,
- "detailsUrl": "https://spdx.org/licenses/GFDL-1.3.json",
- "referenceNumber": 499,
- "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/SGI-OpenGL.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/SGI-OpenGL.json",
- "referenceNumber": 500,
- "name": "SGI OpenGL License",
- "licenseId": "SGI-OpenGL",
- "seeAlso": [
- "https://gitlab.freedesktop.org/mesa/glw/-/blob/master/README?ref_type=heads"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/Unicode-DFS-2016.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Unicode-DFS-2016.json",
- "referenceNumber": 501,
- "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/ClArtistic.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/ClArtistic.json",
- "referenceNumber": 502,
- "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/PolyForm-Small-Business-1.0.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/PolyForm-Small-Business-1.0.0.json",
- "referenceNumber": 503,
- "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/PHP-3.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/PHP-3.0.json",
- "referenceNumber": 504,
- "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/HPND-export-US-acknowledgement.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/HPND-export-US-acknowledgement.json",
- "referenceNumber": 505,
- "name": "HPND with US Government export control warning and acknowledgment",
- "licenseId": "HPND-export-US-acknowledgement",
- "seeAlso": [
- "https://github.com/krb5/krb5/blob/krb5-1.21.2-final/NOTICE#L831-L852",
- "https://web.mit.edu/kerberos/krb5-1.21/doc/mitK5license.html"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/SISSL-1.2.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/SISSL-1.2.json",
- "referenceNumber": 506,
- "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/CC-BY-NC-ND-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-ND-1.0.json",
- "referenceNumber": 507,
- "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/IPA.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/IPA.json",
- "referenceNumber": 508,
- "name": "IPA Font License",
- "licenseId": "IPA",
- "seeAlso": [
- "https://opensource.org/licenses/IPA"
- ],
- "isOsiApproved": true,
- "isFsfLibre": true
- },
- {
- "reference": "https://spdx.org/licenses/DSDP.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/DSDP.json",
- "referenceNumber": 509,
- "name": "DSDP License",
- "licenseId": "DSDP",
- "seeAlso": [
- "https://fedoraproject.org/wiki/Licensing/DSDP"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/LiLiQ-Rplus-1.1.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/LiLiQ-Rplus-1.1.json",
- "referenceNumber": 510,
- "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",
- "https://forge.gouv.qc.ca/licence/liliq-r+/"
- ],
- "isOsiApproved": true
- },
- {
- "reference": "https://spdx.org/licenses/Advanced-Cryptics-Dictionary.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Advanced-Cryptics-Dictionary.json",
- "referenceNumber": 511,
- "name": "Advanced Cryptics Dictionary License",
- "licenseId": "Advanced-Cryptics-Dictionary",
- "seeAlso": [
- "https://ftp.gnu.org/gnu/aspell/dict/en/aspell6-en-2020.12.07-0.tar.bz2"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/Ferguson-Twofish.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Ferguson-Twofish.json",
- "referenceNumber": 512,
- "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/W3C-20150513.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/W3C-20150513.json",
- "referenceNumber": 513,
- "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",
- "https://www.w3.org/copyright/software-license-2015/",
- "https://www.w3.org/copyright/software-license-2023/"
- ],
- "isOsiApproved": true
- },
- {
- "reference": "https://spdx.org/licenses/NCL.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/NCL.json",
- "referenceNumber": 514,
- "name": "NCL Source Code License",
- "licenseId": "NCL",
- "seeAlso": [
- "https://gitlab.freedesktop.org/pipewire/pipewire/-/blob/master/src/modules/module-filter-chain/pffft.c?ref_type=heads#L1-52"
- ],
- "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": 515,
- "name": "Blue Oak Model License 1.0.0",
- "licenseId": "BlueOak-1.0.0",
- "seeAlso": [
- "https://blueoakcouncil.org/license/1.0.0"
- ],
- "isOsiApproved": true
- },
- {
- "reference": "https://spdx.org/licenses/SMPPL.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/SMPPL.json",
- "referenceNumber": 516,
- "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/gSOAP-1.3b.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/gSOAP-1.3b.json",
- "referenceNumber": 517,
- "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/Vixie-Cron.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Vixie-Cron.json",
- "referenceNumber": 518,
- "name": "Vixie Cron License",
- "licenseId": "Vixie-Cron",
- "seeAlso": [
- "https://github.com/vixie/cron/tree/545b3f5246824a9cda5905eeb7cf019c95e66995"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/ZPL-2.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/ZPL-2.0.json",
- "referenceNumber": 519,
- "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/EPL-2.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/EPL-2.0.json",
- "referenceNumber": 520,
- "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",
- "https://www.eclipse.org/legal/epl-v20.html",
- "https://projects.eclipse.org/license/epl-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": 521,
- "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/Brian-Gladman-2-Clause.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Brian-Gladman-2-Clause.json",
- "referenceNumber": 522,
- "name": "Brian Gladman 2-Clause License",
- "licenseId": "Brian-Gladman-2-Clause",
- "seeAlso": [
- "https://github.com/krb5/krb5/blob/krb5-1.21.2-final/NOTICE#L140-L156",
- "https://web.mit.edu/kerberos/krb5-1.21/doc/mitK5license.html"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/Soundex.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Soundex.json",
- "referenceNumber": 523,
- "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/BSD-2-Clause-first-lines.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/BSD-2-Clause-first-lines.json",
- "referenceNumber": 524,
- "name": "BSD 2-Clause - first lines requirement",
- "licenseId": "BSD-2-Clause-first-lines",
- "seeAlso": [
- "https://github.com/krb5/krb5/blob/krb5-1.21.2-final/NOTICE#L664-L690",
- "https://web.mit.edu/kerberos/krb5-1.21/doc/mitK5license.html"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/Bahyph.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Bahyph.json",
- "referenceNumber": 525,
- "name": "Bahyph License",
- "licenseId": "Bahyph",
- "seeAlso": [
- "https://fedoraproject.org/wiki/Licensing/Bahyph"
- ],
- "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": 526,
- "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/SSPL-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/SSPL-1.0.json",
- "referenceNumber": 527,
- "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/CC-BY-NC-ND-3.0-DE.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-ND-3.0-DE.json",
- "referenceNumber": 528,
- "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/HPND-Fenneberg-Livingston.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/HPND-Fenneberg-Livingston.json",
- "referenceNumber": 529,
- "name": "Historical Permission Notice and Disclaimer - Fenneberg-Livingston variant",
- "licenseId": "HPND-Fenneberg-Livingston",
- "seeAlso": [
- "https://github.com/FreeRADIUS/freeradius-client/blob/master/COPYRIGHT#L32",
- "https://github.com/radcli/radcli/blob/master/COPYRIGHT#L34"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/HPND-UC-export-US.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/HPND-UC-export-US.json",
- "referenceNumber": 530,
- "name": "Historical Permission Notice and Disclaimer - University of California, US export warning",
- "licenseId": "HPND-UC-export-US",
- "seeAlso": [
- "https://github.com/RTimothyEdwards/magic/blob/master/LICENSE"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/TPL-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/TPL-1.0.json",
- "referenceNumber": 531,
- "name": "THOR Public License 1.0",
- "licenseId": "TPL-1.0",
- "seeAlso": [
- "https://fedoraproject.org/wiki/Licensing:ThorPublicLicense"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/LPL-1.02.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/LPL-1.02.json",
- "referenceNumber": 532,
- "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/Xerox.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Xerox.json",
- "referenceNumber": 533,
- "name": "Xerox License",
- "licenseId": "Xerox",
- "seeAlso": [
- "https://fedoraproject.org/wiki/Licensing/Xerox"
- ],
- "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": 534,
- "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/CC-BY-3.0-AT.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/CC-BY-3.0-AT.json",
- "referenceNumber": 535,
- "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/Zend-2.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Zend-2.0.json",
- "referenceNumber": 536,
- "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/BSD-2-Clause-FreeBSD.html",
- "isDeprecatedLicenseId": true,
- "detailsUrl": "https://spdx.org/licenses/BSD-2-Clause-FreeBSD.json",
- "referenceNumber": 537,
- "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/RSA-MD.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/RSA-MD.json",
- "referenceNumber": 538,
- "name": "RSA Message-Digest License",
- "licenseId": "RSA-MD",
- "seeAlso": [
- "http://www.faqs.org/rfcs/rfc1321.html"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/TCP-wrappers.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/TCP-wrappers.json",
- "referenceNumber": 539,
- "name": "TCP Wrappers License",
- "licenseId": "TCP-wrappers",
- "seeAlso": [
- "http://rc.quest.com/topics/openssh/license.php#tcpwrappers"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/Lucida-Bitmap-Fonts.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Lucida-Bitmap-Fonts.json",
- "referenceNumber": 540,
- "name": "Lucida Bitmap Fonts License",
- "licenseId": "Lucida-Bitmap-Fonts",
- "seeAlso": [
- "https://gitlab.freedesktop.org/xorg/font/bh-100dpi/-/blob/master/COPYING?ref_type=heads"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/LPPL-1.2.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/LPPL-1.2.json",
- "referenceNumber": 541,
- "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/HPND-sell-variant-MIT-disclaimer.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/HPND-sell-variant-MIT-disclaimer.json",
- "referenceNumber": 542,
- "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/Barr.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Barr.json",
- "referenceNumber": 543,
- "name": "Barr License",
- "licenseId": "Barr",
- "seeAlso": [
- "https://fedoraproject.org/wiki/Licensing/Barr"
- ],
- "isOsiApproved": false
- },
- {
- "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": 544,
- "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/CC-BY-NC-SA-2.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-SA-2.0.json",
- "referenceNumber": 545,
- "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/SGI-B-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/SGI-B-1.0.json",
- "referenceNumber": 546,
- "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/Multics.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Multics.json",
- "referenceNumber": 547,
- "name": "Multics License",
- "licenseId": "Multics",
- "seeAlso": [
- "https://opensource.org/licenses/Multics"
- ],
- "isOsiApproved": true
- },
- {
- "reference": "https://spdx.org/licenses/TekHVC.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/TekHVC.json",
- "referenceNumber": 548,
- "name": "TekHVC License",
- "licenseId": "TekHVC",
- "seeAlso": [
- "https://gitlab.freedesktop.org/xorg/lib/libx11/-/blob/master/COPYING?ref_type=heads#L138-171"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/GD.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/GD.json",
- "referenceNumber": 549,
- "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/NCBI-PD.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/NCBI-PD.json",
- "referenceNumber": 550,
- "name": "NCBI Public Domain Notice",
- "licenseId": "NCBI-PD",
- "seeAlso": [
- "https://github.com/ncbi/sra-tools/blob/e8e5b6af4edc460156ad9ce5902d0779cffbf685/LICENSE",
- "https://github.com/ncbi/datasets/blob/0ea4cd16b61e5b799d9cc55aecfa016d6c9bd2bf/LICENSE.md",
- "https://github.com/ncbi/gprobe/blob/de64d30fee8b4c4013094d7d3139ea89b5dd1ace/LICENSE",
- "https://github.com/ncbi/egapx/blob/08930b9dec0c69b2d1a05e5153c7b95ef0a3eb0f/LICENSE",
- "https://github.com/ncbi/datasets/blob/master/LICENSE.md"
- ],
- "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": 551,
- "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/Sendmail-8.23.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Sendmail-8.23.json",
- "referenceNumber": 552,
- "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/dvipdfm.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/dvipdfm.json",
- "referenceNumber": 553,
- "name": "dvipdfm License",
- "licenseId": "dvipdfm",
- "seeAlso": [
- "https://fedoraproject.org/wiki/Licensing/dvipdfm"
- ],
- "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": 554,
- "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/MIT-open-group.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/MIT-open-group.json",
- "referenceNumber": 555,
- "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/xsetroot/-/blob/master/COPYING",
- "https://gitlab.freedesktop.org/xorg/app/xauth/-/blob/master/COPYING"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/LGPL-3.0+.html",
- "isDeprecatedLicenseId": true,
- "detailsUrl": "https://spdx.org/licenses/LGPL-3.0+.json",
- "referenceNumber": 556,
- "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/GFDL-1.1-no-invariants-only.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/GFDL-1.1-no-invariants-only.json",
- "referenceNumber": 557,
- "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/CC-BY-SA-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/CC-BY-SA-1.0.json",
- "referenceNumber": 558,
- "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/OLDAP-1.1.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/OLDAP-1.1.json",
- "referenceNumber": 559,
- "name": "Open LDAP Public License v1.1",
- "licenseId": "OLDAP-1.1",
- "seeAlso": [
- "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=806557a5ad59804ef3a44d5abfbe91d706b0791f"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/Afmparse.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Afmparse.json",
- "referenceNumber": 560,
- "name": "Afmparse License",
- "licenseId": "Afmparse",
- "seeAlso": [
- "https://fedoraproject.org/wiki/Licensing/Afmparse"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/HaskellReport.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/HaskellReport.json",
- "referenceNumber": 561,
- "name": "Haskell Language Report License",
- "licenseId": "HaskellReport",
- "seeAlso": [
- "https://fedoraproject.org/wiki/Licensing/Haskell_Language_Report_License"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/DOC.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/DOC.json",
- "referenceNumber": 562,
- "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/LGPL-3.0-or-later.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/LGPL-3.0-or-later.json",
- "referenceNumber": 563,
- "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/Baekmuk.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Baekmuk.json",
- "referenceNumber": 564,
- "name": "Baekmuk License",
- "licenseId": "Baekmuk",
- "seeAlso": [
- "https://fedoraproject.org/wiki/Licensing:Baekmuk?rd=Licensing/Baekmuk"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/EUDatagrid.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/EUDatagrid.json",
- "referenceNumber": 565,
- "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/Condor-1.1.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Condor-1.1.json",
- "referenceNumber": 566,
- "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/CDLA-Sharing-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/CDLA-Sharing-1.0.json",
- "referenceNumber": 567,
- "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/WTFNMFPL.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/WTFNMFPL.json",
- "referenceNumber": 568,
- "name": "Do What The F*ck You Want To But It's Not My Fault Public License",
- "licenseId": "WTFNMFPL",
- "seeAlso": [
- "https://github.com/adversary-org/wtfnmf/raw/refs/tags/1.0/COPYING.WTFNMFPL",
- "https://github.com/adversary-org/wtfnmf/raw/3f2cd8235a64350a57a51b9739715edaea63ec1a/COPYING.WTFNMFPL-utf8"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/X11-swapped.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/X11-swapped.json",
- "referenceNumber": 569,
- "name": "X11 swapped final paragraphs",
- "licenseId": "X11-swapped",
- "seeAlso": [
- "https://github.com/fedeinthemix/chez-srfi/blob/master/srfi/LICENSE"
- ],
- "isOsiApproved": 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": 570,
- "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/RSCPL.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/RSCPL.json",
- "referenceNumber": 571,
- "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/DocBook-XML.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/DocBook-XML.json",
- "referenceNumber": 572,
- "name": "DocBook XML License",
- "licenseId": "DocBook-XML",
- "seeAlso": [
- "https://github.com/docbook/xslt10-stylesheets/blob/efd62655c11cc8773708df7a843613fa1e932bf8/xsl/COPYING#L27"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/GLWTPL.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/GLWTPL.json",
- "referenceNumber": 573,
- "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/CC-PDDC.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/CC-PDDC.json",
- "referenceNumber": 574,
- "name": "Creative Commons Public Domain Dedication and Certification",
- "licenseId": "CC-PDDC",
- "seeAlso": [
- "https://creativecommons.org/licenses/publicdomain/"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/BSD-3-Clause-Attribution.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-Attribution.json",
- "referenceNumber": 575,
- "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/Sleepycat.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Sleepycat.json",
- "referenceNumber": 576,
- "name": "Sleepycat License",
- "licenseId": "Sleepycat",
- "seeAlso": [
- "https://opensource.org/licenses/Sleepycat"
- ],
- "isOsiApproved": true,
- "isFsfLibre": true
- },
- {
- "reference": "https://spdx.org/licenses/DRL-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/DRL-1.0.json",
- "referenceNumber": 577,
- "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/JPNIC.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/JPNIC.json",
- "referenceNumber": 578,
- "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/BSD-3-Clause-Clear.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-Clear.json",
- "referenceNumber": 579,
- "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/Boehm-GC-without-fee.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Boehm-GC-without-fee.json",
- "referenceNumber": 580,
- "name": "Boehm-Demers-Weiser GC License (without fee)",
- "licenseId": "Boehm-GC-without-fee",
- "seeAlso": [
- "https://github.com/MariaDB/server/blob/11.6/libmysqld/lib_sql.cc"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/APSL-1.2.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/APSL-1.2.json",
- "referenceNumber": 581,
- "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/MPEG-SSG.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/MPEG-SSG.json",
- "referenceNumber": 582,
- "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/BSD-Inferno-Nettverk.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/BSD-Inferno-Nettverk.json",
- "referenceNumber": 583,
- "name": "BSD-Inferno-Nettverk",
- "licenseId": "BSD-Inferno-Nettverk",
- "seeAlso": [
- "https://www.inet.no/dante/LICENSE"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/Dotseqn.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Dotseqn.json",
- "referenceNumber": 584,
- "name": "Dotseqn License",
- "licenseId": "Dotseqn",
- "seeAlso": [
- "https://fedoraproject.org/wiki/Licensing/Dotseqn"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/CPL-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/CPL-1.0.json",
- "referenceNumber": 585,
- "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/HP-1986.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/HP-1986.json",
- "referenceNumber": 586,
- "name": "Hewlett-Packard 1986 License",
- "licenseId": "HP-1986",
- "seeAlso": [
- "https://sourceware.org/git/?p=newlib-cygwin.git;a=blob;f=newlib/libc/machine/hppa/memchr.S;h=1cca3e5e8867aa4bffef1f75a5c1bba25c0c441e;hb=HEAD#l2"
- ],
- "isOsiApproved": 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": 587,
- "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/GFDL-1.1-invariants-only.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/GFDL-1.1-invariants-only.json",
- "referenceNumber": 588,
- "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/TPDL.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/TPDL.json",
- "referenceNumber": 589,
- "name": "Time::ParseDate License",
- "licenseId": "TPDL",
- "seeAlso": [
- "https://metacpan.org/pod/Time::ParseDate#LICENSE"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/APSL-1.1.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/APSL-1.1.json",
- "referenceNumber": 590,
- "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/BSL-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/BSL-1.0.json",
- "referenceNumber": 591,
- "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/xkeyboard-config-Zinoviev.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/xkeyboard-config-Zinoviev.json",
- "referenceNumber": 592,
- "name": "xkeyboard-config Zinoviev License",
- "licenseId": "xkeyboard-config-Zinoviev",
- "seeAlso": [
- "https://gitlab.freedesktop.org/xkeyboard-config/xkeyboard-config/-/blob/master/COPYING?ref_type=heads#L178"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/XSkat.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/XSkat.json",
- "referenceNumber": 593,
- "name": "XSkat License",
- "licenseId": "XSkat",
- "seeAlso": [
- "https://fedoraproject.org/wiki/Licensing/XSkat_License"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/PADL.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/PADL.json",
- "referenceNumber": 594,
- "name": "PADL License",
- "licenseId": "PADL",
- "seeAlso": [
- "https://git.openldap.org/openldap/openldap/-/blob/master/libraries/libldap/os-local.c?ref_type=heads#L19-23"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/FDK-AAC.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/FDK-AAC.json",
- "referenceNumber": 595,
- "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/CPOL-1.02.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/CPOL-1.02.json",
- "referenceNumber": 596,
- "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/MIT-Khronos-old.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/MIT-Khronos-old.json",
- "referenceNumber": 597,
- "name": "MIT Khronos - old variant",
- "licenseId": "MIT-Khronos-old",
- "seeAlso": [
- "https://github.com/KhronosGroup/SPIRV-Cross/blob/main/LICENSES/LicenseRef-KhronosFreeUse.txt"
- ],
- "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": 598,
- "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": 599,
- "name": "bzip2 and libbzip2 License v1.0.6",
- "licenseId": "bzip2-1.0.6",
- "seeAlso": [
- "https://sourceware.org/git/?p=bzip2.git;a=blob;f=LICENSE;hb=bzip2-1.0.6",
- "http://bzip.org/1.0.5/bzip2-manual-1.0.5.html",
- "https://sourceware.org/cgit/valgrind/tree/mpi/libmpiwrap.c"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/CC-BY-NC-ND-3.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-ND-3.0.json",
- "referenceNumber": 600,
- "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/BSD-3-Clause-No-Nuclear-Warranty.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-Warranty.json",
- "referenceNumber": 601,
- "name": "BSD 3-Clause No Nuclear Warranty",
- "licenseId": "BSD-3-Clause-No-Nuclear-Warranty",
- "seeAlso": [
- "https://jogamp.org/git/?p=gluegen.git;a=blob_plain;f=LICENSE.txt"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/O-UDA-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/O-UDA-1.0.json",
- "referenceNumber": 602,
- "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/ZPL-2.1.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/ZPL-2.1.json",
- "referenceNumber": 603,
- "name": "Zope Public License 2.1",
- "licenseId": "ZPL-2.1",
- "seeAlso": [
- "http://old.zope.org/Resources/ZPL/"
- ],
- "isOsiApproved": true,
- "isFsfLibre": true
- },
- {
- "reference": "https://spdx.org/licenses/Spencer-94.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Spencer-94.json",
- "referenceNumber": 604,
- "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/Artistic-dist.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Artistic-dist.json",
- "referenceNumber": 605,
- "name": "Artistic License 1.0 (dist)",
- "licenseId": "Artistic-dist",
- "seeAlso": [
- "https://github.com/pexip/os-perl/blob/833cf4c86cc465ccfc627ff16db67e783156a248/debian/copyright#L2720-L2845"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/BOLA-1.1.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/BOLA-1.1.json",
- "referenceNumber": 606,
- "name": "Buena Onda License Agreement v1.1",
- "licenseId": "BOLA-1.1",
- "seeAlso": [
- "https://blitiri.com.ar/p/bola/"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/OLDAP-1.3.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/OLDAP-1.3.json",
- "referenceNumber": 607,
- "name": "Open LDAP Public License v1.3",
- "licenseId": "OLDAP-1.3",
- "seeAlso": [
- "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=e5f8117f0ce088d0bd7a8e18ddf37eaa40eb09b1"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/Zed.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Zed.json",
- "referenceNumber": 608,
- "name": "Zed License",
- "licenseId": "Zed",
- "seeAlso": [
- "https://fedoraproject.org/wiki/Licensing/Zed"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/MIT-enna.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/MIT-enna.json",
- "referenceNumber": 609,
- "name": "enna License",
- "licenseId": "MIT-enna",
- "seeAlso": [
- "https://fedoraproject.org/wiki/Licensing/MIT#enna"
- ],
- "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": 610,
- "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/Linux-man-pages-copyleft-2-para.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Linux-man-pages-copyleft-2-para.json",
- "referenceNumber": 611,
- "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/RHeCos-1.1.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/RHeCos-1.1.json",
- "referenceNumber": 612,
- "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/radvd.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/radvd.json",
- "referenceNumber": 613,
- "name": "radvd License",
- "licenseId": "radvd",
- "seeAlso": [
- "https://github.com/radvd-project/radvd/blob/master/COPYRIGHT"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/cve-tou.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/cve-tou.json",
- "referenceNumber": 614,
- "name": "Common Vulnerability Enumeration ToU License",
- "licenseId": "cve-tou",
- "seeAlso": [
- "https://www.cve.org/Legal/TermsOfUse"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/AML.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/AML.json",
- "referenceNumber": 615,
- "name": "Apple MIT License",
- "licenseId": "AML",
- "seeAlso": [
- "https://fedoraproject.org/wiki/Licensing/Apple_MIT_License"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/SOFA.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/SOFA.json",
- "referenceNumber": 616,
- "name": "SOFA Software License",
- "licenseId": "SOFA",
- "seeAlso": [
- "http://www.iausofa.org/tandc.html"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/blessing.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/blessing.json",
- "referenceNumber": 617,
- "name": "SQLite Blessing",
- "licenseId": "blessing",
- "seeAlso": [
- "https://www.sqlite.org/src/artifact/e33a4df7e32d742a?ln=4-9",
- "https://sqlite.org/src/artifact/df5091916dbb40e6"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/EUPL-1.1.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/EUPL-1.1.json",
- "referenceNumber": 618,
- "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/CERN-OHL-S-2.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/CERN-OHL-S-2.0.json",
- "referenceNumber": 619,
- "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/CC-BY-SA-2.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/CC-BY-SA-2.0.json",
- "referenceNumber": 620,
- "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/CAPEC-tou.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/CAPEC-tou.json",
- "referenceNumber": 621,
- "name": "Common Attack Pattern Enumeration and Classification License",
- "licenseId": "CAPEC-tou",
- "seeAlso": [
- "https://capec.mitre.org/about/termsofuse.html"
- ],
- "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": 622,
- "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/PolyForm-Noncommercial-1.0.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/PolyForm-Noncommercial-1.0.0.json",
- "referenceNumber": 623,
- "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/XFree86-1.1.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/XFree86-1.1.json",
- "referenceNumber": 624,
- "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/ParaType-Free-Font-1.3.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/ParaType-Free-Font-1.3.json",
- "referenceNumber": 625,
- "name": "ParaType Free Font Licensing Agreement v1.3",
- "licenseId": "ParaType-Free-Font-1.3",
- "seeAlso": [
- "https://web.archive.org/web/20161209023955/http://www.paratype.ru/public/pt_openlicense_eng.asp",
- "https://metadata.ftp-master.debian.org/changelogs//main/f/fonts-paratype/fonts-paratype_20181108-4_copyright"
- ],
- "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": 626,
- "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/ODbL-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/ODbL-1.0.json",
- "referenceNumber": 627,
- "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/SPL-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/SPL-1.0.json",
- "referenceNumber": 628,
- "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/Linux-man-pages-copyleft-var.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Linux-man-pages-copyleft-var.json",
- "referenceNumber": 629,
- "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/Widget-Workshop.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Widget-Workshop.json",
- "referenceNumber": 630,
- "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/Artistic-2.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Artistic-2.0.json",
- "referenceNumber": 631,
- "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/LiLiQ-R-1.1.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/LiLiQ-R-1.1.json",
- "referenceNumber": 632,
- "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",
- "https://forge.gouv.qc.ca/licence/liliq-p"
- ],
- "isOsiApproved": true
- },
- {
- "reference": "https://spdx.org/licenses/Parity-7.0.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Parity-7.0.0.json",
- "referenceNumber": 633,
- "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/xinetd.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/xinetd.json",
- "referenceNumber": 634,
- "name": "xinetd License",
- "licenseId": "xinetd",
- "seeAlso": [
- "https://fedoraproject.org/wiki/Licensing/Xinetd_License"
- ],
- "isOsiApproved": false,
- "isFsfLibre": true
- },
- {
- "reference": "https://spdx.org/licenses/AGPL-1.0.html",
- "isDeprecatedLicenseId": true,
- "detailsUrl": "https://spdx.org/licenses/AGPL-1.0.json",
- "referenceNumber": 635,
- "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/NPL-1.1.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/NPL-1.1.json",
- "referenceNumber": 636,
- "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/Gutmann.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Gutmann.json",
- "referenceNumber": 637,
- "name": "Gutmann License",
- "licenseId": "Gutmann",
- "seeAlso": [
- "https://www.cs.auckland.ac.nz/~pgut001/dumpasn1.c"
- ],
- "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": 638,
- "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/Linux-OpenIB.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Linux-OpenIB.json",
- "referenceNumber": 639,
- "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/CC-BY-4.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/CC-BY-4.0.json",
- "referenceNumber": 640,
- "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/SGMLUG-PM.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/SGMLUG-PM.json",
- "referenceNumber": 641,
- "name": "SGMLUG Parser Materials License",
- "licenseId": "SGMLUG-PM",
- "seeAlso": [
- "https://gitweb.gentoo.org/repo/gentoo.git/tree/licenses/SGMLUG?id=7d999af4a47bf55e53e54713d98d145f935935c1"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/Pixar.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Pixar.json",
- "referenceNumber": 642,
- "name": "Pixar License",
- "licenseId": "Pixar",
- "seeAlso": [
- "https://github.com/PixarAnimationStudios/OpenSubdiv/raw/v3_5_0/LICENSE.txt",
- "https://graphics.pixar.com/opensubdiv/docs/license.html",
- "https://github.com/PixarAnimationStudios/OpenSubdiv/blob/v3_5_0/opensubdiv/version.cpp#L2-L22"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/DocBook-Stylesheet.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/DocBook-Stylesheet.json",
- "referenceNumber": 643,
- "name": "DocBook Stylesheet License",
- "licenseId": "DocBook-Stylesheet",
- "seeAlso": [
- "http://www.docbook.org/xml/5.0/docbook-5.0.zip"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/IJG-short.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/IJG-short.json",
- "referenceNumber": 644,
- "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/AMDPLPA.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/AMDPLPA.json",
- "referenceNumber": 645,
- "name": "AMD's plpa_map.c License",
- "licenseId": "AMDPLPA",
- "seeAlso": [
- "https://fedoraproject.org/wiki/Licensing/AMD_plpa_map_License"
- ],
- "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": 646,
- "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/GFDL-1.3-no-invariants-only.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/GFDL-1.3-no-invariants-only.json",
- "referenceNumber": 647,
- "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/SCEA.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/SCEA.json",
- "referenceNumber": 648,
- "name": "SCEA Shared Source License",
- "licenseId": "SCEA",
- "seeAlso": [
- "http://research.scea.com/scea_shared_source_license.html"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/OGTSL.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/OGTSL.json",
- "referenceNumber": 649,
- "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/BSD-3-Clause-Tso.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-Tso.json",
- "referenceNumber": 650,
- "name": "BSD 3-Clause Tso variant",
- "licenseId": "BSD-3-Clause-Tso",
- "seeAlso": [
- "https://www.x.org/archive/current/doc/xorg-docs/License.html#Theodore_Tso"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/MIT-testregex.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/MIT-testregex.json",
- "referenceNumber": 651,
- "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/SL.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/SL.json",
- "referenceNumber": 652,
- "name": "SL License",
- "licenseId": "SL",
- "seeAlso": [
- "https://github.com/mtoyoda/sl/blob/master/LICENSE"
- ],
- "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": 653,
- "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/HPND-Pbmplus.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/HPND-Pbmplus.json",
- "referenceNumber": 654,
- "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/Imlib2.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Imlib2.json",
- "referenceNumber": 655,
- "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/UCAR.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/UCAR.json",
- "referenceNumber": 656,
- "name": "UCAR License",
- "licenseId": "UCAR",
- "seeAlso": [
- "https://github.com/Unidata/UDUNITS-2/blob/master/COPYRIGHT"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/Naumen.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Naumen.json",
- "referenceNumber": 657,
- "name": "Naumen Public License",
- "licenseId": "Naumen",
- "seeAlso": [
- "https://opensource.org/licenses/Naumen"
- ],
- "isOsiApproved": true
- },
- {
- "reference": "https://spdx.org/licenses/Unicode-TOU.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Unicode-TOU.json",
- "referenceNumber": 658,
- "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/lsof.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/lsof.json",
- "referenceNumber": 659,
- "name": "lsof License",
- "licenseId": "lsof",
- "seeAlso": [
- "https://github.com/lsof-org/lsof/blob/master/COPYING"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/AGPL-1.0-only.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/AGPL-1.0-only.json",
- "referenceNumber": 660,
- "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/TrustedQSL.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/TrustedQSL.json",
- "referenceNumber": 661,
- "name": "TrustedQSL License",
- "licenseId": "TrustedQSL",
- "seeAlso": [
- "https://sourceforge.net/p/trustedqsl/tqsl/ci/master/tree/LICENSE.txt"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/CDDL-1.1.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/CDDL-1.1.json",
- "referenceNumber": 662,
- "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/OLDAP-2.2.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/OLDAP-2.2.json",
- "referenceNumber": 663,
- "name": "Open LDAP Public License v2.2",
- "licenseId": "OLDAP-2.2",
- "seeAlso": [
- "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=470b0c18ec67621c85881b2733057fecf4a1acc3"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/Zlib.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Zlib.json",
- "referenceNumber": 664,
- "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/JasPer-2.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/JasPer-2.0.json",
- "referenceNumber": 665,
- "name": "JasPer License",
- "licenseId": "JasPer-2.0",
- "seeAlso": [
- "http://www.ece.uvic.ca/~mdadams/jasper/LICENSE"
- ],
- "isOsiApproved": false
- },
- {
- "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": 666,
- "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/NLOD-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/NLOD-1.0.json",
- "referenceNumber": 667,
- "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/HPND-sell-regexpr.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/HPND-sell-regexpr.json",
- "referenceNumber": 668,
- "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=heads#L245"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/PPL.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/PPL.json",
- "referenceNumber": 669,
- "name": "Peer Production License",
- "licenseId": "PPL",
- "seeAlso": [
- "https://wiki.p2pfoundation.net/Peer_Production_License",
- "http://www.networkcultures.org/_uploads/%233notebook_telekommunist.pdf"
- ],
- "isOsiApproved": false,
- "isFsfLibre": false
- },
- {
- "reference": "https://spdx.org/licenses/SGI-B-1.1.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/SGI-B-1.1.json",
- "referenceNumber": 670,
- "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/GFDL-1.2-or-later.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/GFDL-1.2-or-later.json",
- "referenceNumber": 671,
- "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/Graphics-Gems.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Graphics-Gems.json",
- "referenceNumber": 672,
- "name": "Graphics Gems License",
- "licenseId": "Graphics-Gems",
- "seeAlso": [
- "https://github.com/erich666/GraphicsGems/blob/master/LICENSE.md"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/OSL-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/OSL-1.0.json",
- "referenceNumber": 673,
- "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/Sendmail.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Sendmail.json",
- "referenceNumber": 674,
- "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/Kastrup.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Kastrup.json",
- "referenceNumber": 675,
- "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/OSL-2.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/OSL-2.0.json",
- "referenceNumber": 676,
- "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/StandardML-NJ.html",
- "isDeprecatedLicenseId": true,
- "detailsUrl": "https://spdx.org/licenses/StandardML-NJ.json",
- "referenceNumber": 677,
- "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/Ruby-pty.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Ruby-pty.json",
- "referenceNumber": 678,
- "name": "Ruby pty extension license",
- "licenseId": "Ruby-pty",
- "seeAlso": [
- "https://github.com/ruby/ruby/blob/9f6deaa6888a423720b4b127b5314f0ad26cc2e6/ext/pty/pty.c#L775-L786",
- "https://github.com/ruby/ruby/commit/0a64817fb80016030c03518fb9459f63c11605ea#diff-ef5fa30838d6d0cecad9e675cc50b24628cfe2cb277c346053fafcc36c91c204",
- "https://github.com/ruby/ruby/commit/0a64817fb80016030c03518fb9459f63c11605ea#diff-fedf217c1ce44bda01f0a678d3ff8b198bed478754d699c527a698ad933979a0"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/LPPL-1.3c.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/LPPL-1.3c.json",
- "referenceNumber": 679,
- "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/Bitstream-Vera.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Bitstream-Vera.json",
- "referenceNumber": 680,
- "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/CC-SA-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/CC-SA-1.0.json",
- "referenceNumber": 681,
- "name": "Creative Commons Share Alike 1.0 Generic",
- "licenseId": "CC-SA-1.0",
- "seeAlso": [
- "https://creativecommons.org/licenses/sa/1.0/legalcode"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/NetCDF.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/NetCDF.json",
- "referenceNumber": 682,
- "name": "NetCDF license",
- "licenseId": "NetCDF",
- "seeAlso": [
- "http://www.unidata.ucar.edu/software/netcdf/copyright.html"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/Apache-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Apache-1.0.json",
- "referenceNumber": 683,
- "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/Watcom-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Watcom-1.0.json",
- "referenceNumber": 684,
- "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/HPND-sell-variant-critical-systems.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/HPND-sell-variant-critical-systems.json",
- "referenceNumber": 685,
- "name": "HPND - sell variant with safety critical systems clause",
- "licenseId": "HPND-sell-variant-critical-systems",
- "seeAlso": [
- "https://gitlab.freedesktop.org/xorg/driver/xf86-video-voodoo/-/blob/68a5b6d98ae34749cca889f4373b4043d00bfe6a/src/voodoo_dga.c#L12-33"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/threeparttable.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/threeparttable.json",
- "referenceNumber": 686,
- "name": "threeparttable License",
- "licenseId": "threeparttable",
- "seeAlso": [
- "https://fedoraproject.org/wiki/Licensing/Threeparttable"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/AGPL-3.0-only.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/AGPL-3.0-only.json",
- "referenceNumber": 687,
- "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/eGenix.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/eGenix.json",
- "referenceNumber": 688,
- "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/OpenMDW-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/OpenMDW-1.0.json",
- "referenceNumber": 689,
- "name": "OpenMDW License Agreement v1.0",
- "licenseId": "OpenMDW-1.0",
- "seeAlso": [
- "https://raw.githubusercontent.com/OpenMDW/OpenMDW/refs/heads/main/1.0/LICENSE.openmdw",
- "https://openmdw.ai/license/"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/Furuseth.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Furuseth.json",
- "referenceNumber": 690,
- "name": "Furuseth License",
- "licenseId": "Furuseth",
- "seeAlso": [
- "https://git.openldap.org/openldap/openldap/-/blob/master/COPYRIGHT?ref_type=heads#L39-51"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/OLDAP-2.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/OLDAP-2.0.json",
- "referenceNumber": 691,
- "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=openldap.git;a=blob;f=LICENSE;hb=cbf50f4e1185a21abd4c0a54d3f4341fe28f36ea"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/ErlPL-1.1.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/ErlPL-1.1.json",
- "referenceNumber": 692,
- "name": "Erlang Public License v1.1",
- "licenseId": "ErlPL-1.1",
- "seeAlso": [
- "http://www.erlang.org/EPLICENSE"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/CFITSIO.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/CFITSIO.json",
- "referenceNumber": 693,
- "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/APSL-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/APSL-1.0.json",
- "referenceNumber": 694,
- "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/OLDAP-2.3.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/OLDAP-2.3.json",
- "referenceNumber": 695,
- "name": "Open LDAP Public License v2.3",
- "licenseId": "OLDAP-2.3",
- "seeAlso": [
- "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=d32cf54a32d581ab475d23c810b0a7fbaf8d63c3"
- ],
- "isOsiApproved": false,
- "isFsfLibre": true
- },
- {
- "reference": "https://spdx.org/licenses/NAIST-2003.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/NAIST-2003.json",
- "referenceNumber": 696,
- "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/CC-BY-2.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/CC-BY-2.0.json",
- "referenceNumber": 697,
- "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/Nunit.html",
- "isDeprecatedLicenseId": true,
- "detailsUrl": "https://spdx.org/licenses/Nunit.json",
- "referenceNumber": 698,
- "name": "Nunit License",
- "licenseId": "Nunit",
- "seeAlso": [
- "https://fedoraproject.org/wiki/Licensing/Nunit"
- ],
- "isOsiApproved": false,
- "isFsfLibre": true
- },
- {
- "reference": "https://spdx.org/licenses/HPND-UC.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/HPND-UC.json",
- "referenceNumber": 699,
- "name": "Historical Permission Notice and Disclaimer - University of California variant",
- "licenseId": "HPND-UC",
- "seeAlso": [
- "https://core.tcl-lang.org/tk/file?name=compat/unistd.h"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/Aladdin.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Aladdin.json",
- "referenceNumber": 700,
- "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/CC-BY-NC-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-1.0.json",
- "referenceNumber": 701,
- "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/DocBook-Schema.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/DocBook-Schema.json",
- "referenceNumber": 702,
- "name": "DocBook Schema License",
- "licenseId": "DocBook-Schema",
- "seeAlso": [
- "https://github.com/docbook/xslt10-stylesheets/blob/efd62655c11cc8773708df7a843613fa1e932bf8/xsl/assembly/schema/docbook51b7.rnc"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/PDDL-1.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/PDDL-1.0.json",
- "referenceNumber": 703,
- "name": "Open Data Commons Public Domain Dedication & 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/CryptoSwift.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/CryptoSwift.json",
- "referenceNumber": 704,
- "name": "CryptoSwift License",
- "licenseId": "CryptoSwift",
- "seeAlso": [
- "https://github.com/krzyzanowskim/CryptoSwift/blob/main/LICENSE"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/X11-distribute-modifications-variant.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/X11-distribute-modifications-variant.json",
- "referenceNumber": 705,
- "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/GPL-2.0-with-autoconf-exception.html",
- "isDeprecatedLicenseId": true,
- "detailsUrl": "https://spdx.org/licenses/GPL-2.0-with-autoconf-exception.json",
- "referenceNumber": 706,
- "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/BSD-2-Clause-NetBSD.html",
- "isDeprecatedLicenseId": true,
- "detailsUrl": "https://spdx.org/licenses/BSD-2-Clause-NetBSD.json",
- "referenceNumber": 707,
- "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/MulanPSL-2.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/MulanPSL-2.0.json",
- "referenceNumber": 708,
- "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/CC-BY-3.0-US.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/CC-BY-3.0-US.json",
- "referenceNumber": 709,
- "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/HPND-export-US.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/HPND-export-US.json",
- "referenceNumber": 710,
- "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/DRL-1.1.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/DRL-1.1.json",
- "referenceNumber": 711,
- "name": "Detection Rule License 1.1",
- "licenseId": "DRL-1.1",
- "seeAlso": [
- "https://github.com/SigmaHQ/Detection-Rule-License/blob/6ec7fbde6101d101b5b5d1fcb8f9b69fbc76c04a/LICENSE.Detection.Rules.md"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/GPL-1.0.html",
- "isDeprecatedLicenseId": true,
- "detailsUrl": "https://spdx.org/licenses/GPL-1.0.json",
- "referenceNumber": 712,
- "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/CECILL-2.0.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/CECILL-2.0.json",
- "referenceNumber": 713,
- "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/OLDAP-2.8.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/OLDAP-2.8.json",
- "referenceNumber": 714,
- "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/HPND-merchantability-variant.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/HPND-merchantability-variant.json",
- "referenceNumber": 715,
- "name": "Historical Permission Notice and Disclaimer - merchantability variant",
- "licenseId": "HPND-merchantability-variant",
- "seeAlso": [
- "https://sourceware.org/git/?p=newlib-cygwin.git;a=blob;f=newlib/libc/misc/fini.c;hb=HEAD"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/Glide.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Glide.json",
- "referenceNumber": 716,
- "name": "3dfx Glide License",
- "licenseId": "Glide",
- "seeAlso": [
- "http://www.users.on.net/~triforce/glidexp/COPYING.txt"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/PostgreSQL.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/PostgreSQL.json",
- "referenceNumber": 717,
- "name": "PostgreSQL License",
- "licenseId": "PostgreSQL",
- "seeAlso": [
- "http://www.postgresql.org/about/licence",
- "https://opensource.org/licenses/PostgreSQL"
- ],
- "isOsiApproved": true
- },
- {
- "reference": "https://spdx.org/licenses/BSD-1-Clause.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/BSD-1-Clause.json",
- "referenceNumber": 718,
- "name": "BSD 1-Clause License",
- "licenseId": "BSD-1-Clause",
- "seeAlso": [
- "https://svnweb.freebsd.org/base/head/include/ifaddrs.h?revision=326823"
- ],
- "isOsiApproved": true
- },
- {
- "reference": "https://spdx.org/licenses/Sendmail-Open-Source-1.1.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Sendmail-Open-Source-1.1.json",
- "referenceNumber": 719,
- "name": "Sendmail Open Source License v1.1",
- "licenseId": "Sendmail-Open-Source-1.1",
- "seeAlso": [
- "https://github.com/trusteddomainproject/OpenDMARC/blob/master/LICENSE.Sendmail"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/Crossword.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Crossword.json",
- "referenceNumber": 720,
- "name": "Crossword License",
- "licenseId": "Crossword",
- "seeAlso": [
- "https://fedoraproject.org/wiki/Licensing/Crossword"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/NASA-1.3.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/NASA-1.3.json",
- "referenceNumber": 721,
- "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/BSD-Source-beginning-file.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/BSD-Source-beginning-file.json",
- "referenceNumber": 722,
- "name": "BSD Source Code Attribution - beginning of file variant",
- "licenseId": "BSD-Source-beginning-file",
- "seeAlso": [
- "https://github.com/lattera/freebsd/blob/master/sys/cam/cam.c#L4"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/Mup.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/Mup.json",
- "referenceNumber": 723,
- "name": "Mup License",
- "licenseId": "Mup",
- "seeAlso": [
- "https://fedoraproject.org/wiki/Licensing/Mup"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/MIT-feh.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/MIT-feh.json",
- "referenceNumber": 724,
- "name": "feh License",
- "licenseId": "MIT-feh",
- "seeAlso": [
- "https://fedoraproject.org/wiki/Licensing/MIT#feh"
- ],
- "isOsiApproved": false
- },
- {
- "reference": "https://spdx.org/licenses/LGPL-3.0-only.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/LGPL-3.0-only.json",
- "referenceNumber": 725,
- "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/man2html.html",
- "isDeprecatedLicenseId": false,
- "detailsUrl": "https://spdx.org/licenses/man2html.json",
- "referenceNumber": 726,
- "name": "man2html License",
- "licenseId": "man2html",
- "seeAlso": [
- "http://primates.ximian.com/~flucifredi/man/man-1.6g.tar.gz",
- "https://github.com/hamano/man2html/blob/master/man2html.c",
- "https://docs.oracle.com/cd/E81115_01/html/E81116/licenses.html"
- ],
- "isOsiApproved": false
- }
- ],
- "releaseDate": "2026-02-20T00:00:00Z"
-}
\ No newline at end of file
From 35ede8bfd8f55c49eae92db4531c936a4b3ce730 Mon Sep 17 00:00:00 2001
From: sebastianMindee <130448732+sebastianMindee@users.noreply.github.com>
Date: Mon, 27 Jul 2026 21:41:24 +0200
Subject: [PATCH 5/5] fix license check
---
.config/dotnet-tools.json | 27 +++++++++++++++++++++++++++
.gitignore | 5 +++--
2 files changed, 30 insertions(+), 2 deletions(-)
create mode 100644 .config/dotnet-tools.json
diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json
new file mode 100644
index 000000000..4a824d642
--- /dev/null
+++ b/.config/dotnet-tools.json
@@ -0,0 +1,27 @@
+{
+ "version": 1,
+ "isRoot": true,
+ "tools": {
+ "mindee.cli": {
+ "version": "4.4.0",
+ "commands": [
+ "mindee"
+ ],
+ "rollForward": false
+ },
+ "dotnet-delice": {
+ "version": "2.1.0",
+ "commands": [
+ "dotnet-delice"
+ ],
+ "rollForward": false
+ },
+ "husky": {
+ "version": "0.9.1",
+ "commands": [
+ "husky"
+ ],
+ "rollForward": false
+ }
+ }
+}
\ No newline at end of file
diff --git a/.gitignore b/.gitignore
index ffc19a8d4..483449d25 100644
--- a/.gitignore
+++ b/.gitignore
@@ -371,5 +371,6 @@ _site
# StrongName files
*.snk
*.snk.b64
-# Local CLI publish.
-dotnet-tools.json
+
+# dotnet-delice output
+/licenses.json