diff --git a/src/license_expression/__init__.py b/src/license_expression/__init__.py index 800d316..4c9b239 100644 --- a/src/license_expression/__init__.py +++ b/src/license_expression/__init__.py @@ -19,6 +19,7 @@ """ import itertools +import json import re import string from collections import defaultdict @@ -27,6 +28,9 @@ from copy import copy from copy import deepcopy from functools import total_ordering +from os.path import abspath +from os.path import dirname +from os.path import join import boolean from boolean import Expression as LicenseExpression @@ -51,6 +55,12 @@ from license_expression._pyahocorasick import Trie as AdvancedTokenizer from license_expression._pyahocorasick import Token + +curr_dir = dirname(abspath(__file__)) +data_dir = join(curr_dir, 'data') +vendored_scancode_licensedb_index_location = join(data_dir, 'scancode-licensedb-index.json') + + # append new error codes to PARSE_ERRORS by monkey patching PARSE_EXPRESSION_NOT_UNICODE = 100 if PARSE_EXPRESSION_NOT_UNICODE not in PARSE_ERRORS: @@ -116,6 +126,50 @@ class ExpressionParseError(ParseError, ExpressionError): ).finditer +class ExpressionInfo: + """ + The ExpressionInfo class is returned by Licensing.validate() where it stores + information about a given license expression passed into + Licensing.validate(). + + The ExpressionInfo class has the following fields: + - original_expression: str. + - This is the license expression that was originally passed into Licensing.validate() + - normalized_expression: str. + - If a valid license expression has been passed into `validate()`, + then the license expression string will be set in this field. + - errors: list + - If there were errors validating a license expression, + the error messages will be appended here. + - invalid_symbols: list + - If the license expression that has been passed into `validate()` has + license keys that are invalid (either that they are unknown or not used + in the right context), or the syntax is incorrect because an invalid + symbol was used, then those symbols will be appended here. + """ + def __init__( + self, + original_expression, + normalized_expression=None, + errors=None, + invalid_symbols=None, + ): + self.original_expression = original_expression + self.normalized_expression = normalized_expression + self.errors = errors or [] + self.invalid_symbols = invalid_symbols or [] + + def __repr__(self): + return ( + 'ExpressionInfo(\n' + f' original_expression={self.original_expression!r},\n' + f' normalized_expression={self.normalized_expression!r},\n' + f' errors={self.errors!r},\n' + f' invalid_symbols={self.invalid_symbols!r}\n' + ')' + ) + + class Licensing(boolean.BooleanAlgebra): """ Licensing defines a mini language to parse, validate and compare license @@ -355,6 +409,12 @@ def unknown_license_keys(self, expression, unique=True, **kwargs): symbols = self.unknown_license_symbols(expression, unique=False, **kwargs) return self._keys(symbols, unique) + def validate_license_keys(self, expression): + unknown_keys = self.unknown_license_keys(expression, unique=True) + if unknown_keys: + msg = 'Unknown license key(s): {}'.format(', '.join(unknown_keys)) + raise ExpressionError(msg) + def parse(self, expression, validate=False, strict=False, simple=False, **kwargs): """ Return a new license LicenseExpression object by parsing a license @@ -422,10 +482,7 @@ def parse(self, expression, validate=False, strict=False, simple=False, **kwargs raise ExpressionError('expression must be a LicenseExpression once parsed.') if validate: - unknown_keys = self.unknown_license_keys(expression, unique=True) - if unknown_keys: - msg = 'Unknown license key(s): {}'.format(', '.join(unknown_keys)) - raise ExpressionError(msg) + self.validate_license_keys(expression) return expression @@ -617,6 +674,104 @@ def dedup(self, expression): raise Exception(f'Unknown expression type: {expression!r}') return deduped + def validate(self, expression, strict=True, **kwargs): + """ + Return a ExpressionInfo object that contains information about + the validation of an `expression` license expression string. + + If the syntax and license keys of `expression` is valid, then + `ExpressionInfo.normalized_license_expression` is set. + + If an error was encountered when validating `expression`, + `ExpressionInfo.errors` will be populated with strings containing the + error message that has occured. If an error has occured due to unknown + license keys or an invalid license symbol, the offending keys or symbols + will be present in `ExpressionInfo.invalid_symbols` + + If `strict` is True, validation error messages will be included if in a "WITH" + expression such as "XXX with ZZZ" if the XXX symbol has `is_exception` + set to True or the YYY symbol has `is_exception` set to False. This + checks that symbols are used strictly as intended. + """ + expression_info = ExpressionInfo( + original_expression=str(expression) + ) + + # Check `expression` type and syntax + try: + parsed_expression = self.parse(expression, strict=strict) + except ExpressionError as e: + expression_info.errors.append(str(e)) + expression_info.invalid_symbols.append(e.token_string) + return expression_info + + # Check `expression` keys (validate) + try: + self.validate_license_keys(expression) + except ExpressionError as e: + expression_info.errors.append(str(e)) + unknown_keys = self.unknown_license_keys(expression) + expression_info.invalid_symbols.extend(unknown_keys) + return expression_info + + # If we have not hit an exception, set `normalized_expression` in + # `expression_info` only if we did not encounter any errors + # along the way + if not expression_info.errors and not expression_info.invalid_symbols: + expression_info.normalized_expression = str(parsed_expression) + return expression_info + + +def get_license_index(license_index_location=vendored_scancode_licensedb_index_location): + """ + Return a list of dictionaries that contain license key information from + `license_index_location` + + The default value of `license_index_location` points to a vendored copy + of the license index from https://scancode-licensedb.aboutcode.org/ + """ + with open(license_index_location) as f: + return json.load(f) + + +def load_licensing_from_license_index(license_index): + """ + Return a Licensing object that has been loaded with license keys and + attributes from `license_index`. + """ + syms = [LicenseSymbol(**l) for l in license_index] + return Licensing(syms) + + +def build_licensing(license_index): + """ + Return a Licensing object that has been loaded with license keys. + """ + lics = [ + { + 'key': l.get('license_key', ''), + 'is_exception': l.get('is_exception', ''), + } for l in license_index if not l.get('is_deprecated', False) + ] + return load_licensing_from_license_index(lics) + + +def build_spdx_licensing(license_index): + """ + Return a Licensing object that has been loaded with SPDX license keys. + """ + # Massage data such that SPDX license key is the primary license key + lics = [ + { + 'key': l.get('spdx_license_key', ''), + 'aliases': l.get('other_spdx_license_keys', []), + 'is_exception': l.get('is_exception', ''), + } for l in license_index + if l.get('spdx_license_key') + and not l.get('is_deprecated', False) + ] + return load_licensing_from_license_index(lics) + def build_symbols_from_unknown_tokens(tokens): """ diff --git a/src/license_expression/data/cc-by-4.0.LICENSE b/src/license_expression/data/cc-by-4.0.LICENSE new file mode 100644 index 0000000..0fb847e --- /dev/null +++ b/src/license_expression/data/cc-by-4.0.LICENSE @@ -0,0 +1,395 @@ +Attribution 4.0 International + +======================================================================= + +Creative Commons Corporation ("Creative Commons") is not a law firm and +does not provide legal services or legal advice. Distribution of +Creative Commons public licenses does not create a lawyer-client or +other relationship. Creative Commons makes its licenses and related +information available on an "as-is" basis. Creative Commons gives no +warranties regarding its licenses, any material licensed under their +terms and conditions, or any related information. Creative Commons +disclaims all liability for damages resulting from their use to the +fullest extent possible. + +Using Creative Commons Public Licenses + +Creative Commons public licenses provide a standard set of terms and +conditions that creators and other rights holders may use to share +original works of authorship and other material subject to copyright +and certain other rights specified in the public license below. The +following considerations are for informational purposes only, are not +exhaustive, and do not form part of our licenses. + + Considerations for licensors: Our public licenses are + intended for use by those authorized to give the public + permission to use material in ways otherwise restricted by + copyright and certain other rights. Our licenses are + irrevocable. Licensors should read and understand the terms + and conditions of the license they choose before applying it. + Licensors should also secure all rights necessary before + applying our licenses so that the public can reuse the + material as expected. Licensors should clearly mark any + material not subject to the license. This includes other CC- + licensed material, or material used under an exception or + limitation to copyright. More considerations for licensors: + wiki.creativecommons.org/Considerations_for_licensors + + Considerations for the public: By using one of our public + licenses, a licensor grants the public permission to use the + licensed material under specified terms and conditions. If + the licensor's permission is not necessary for any reason--for + example, because of any applicable exception or limitation to + copyright--then that use is not regulated by the license. Our + licenses grant only permissions under copyright and certain + other rights that a licensor has authority to grant. Use of + the licensed material may still be restricted for other + reasons, including because others have copyright or other + rights in the material. A licensor may make special requests, + such as asking that all changes be marked or described. + Although not required by our licenses, you are encouraged to + respect those requests where reasonable. More considerations + for the public: + wiki.creativecommons.org/Considerations_for_licensees + +======================================================================= + +Creative Commons Attribution 4.0 International Public License + +By exercising the Licensed Rights (defined below), You accept and agree +to be bound by the terms and conditions of this Creative Commons +Attribution 4.0 International Public License ("Public License"). To the +extent this Public License may be interpreted as a contract, You are +granted the Licensed Rights in consideration of Your acceptance of +these terms and conditions, and the Licensor grants You such rights in +consideration of benefits the Licensor receives from making the +Licensed Material available under these terms and conditions. + + +Section 1 -- Definitions. + + a. Adapted Material means material subject to Copyright and Similar + Rights that is derived from or based upon the Licensed Material + and in which the Licensed Material is translated, altered, + arranged, transformed, or otherwise modified in a manner requiring + permission under the Copyright and Similar Rights held by the + Licensor. For purposes of this Public License, where the Licensed + Material is a musical work, performance, or sound recording, + Adapted Material is always produced where the Licensed Material is + synched in timed relation with a moving image. + + b. Adapter's License means the license You apply to Your Copyright + and Similar Rights in Your contributions to Adapted Material in + accordance with the terms and conditions of this Public License. + + c. Copyright and Similar Rights means copyright and/or similar rights + closely related to copyright including, without limitation, + performance, broadcast, sound recording, and Sui Generis Database + Rights, without regard to how the rights are labeled or + categorized. For purposes of this Public License, the rights + specified in Section 2(b)(1)-(2) are not Copyright and Similar + Rights. + + d. Effective Technological Measures means those measures that, in the + absence of proper authority, may not be circumvented under laws + fulfilling obligations under Article 11 of the WIPO Copyright + Treaty adopted on December 20, 1996, and/or similar international + agreements. + + e. Exceptions and Limitations means fair use, fair dealing, and/or + any other exception or limitation to Copyright and Similar Rights + that applies to Your use of the Licensed Material. + + f. Licensed Material means the artistic or literary work, database, + or other material to which the Licensor applied this Public + License. + + g. Licensed Rights means the rights granted to You subject to the + terms and conditions of this Public License, which are limited to + all Copyright and Similar Rights that apply to Your use of the + Licensed Material and that the Licensor has authority to license. + + h. Licensor means the individual(s) or entity(ies) granting rights + under this Public License. + + i. Share means to provide material to the public by any means or + process that requires permission under the Licensed Rights, such + as reproduction, public display, public performance, distribution, + dissemination, communication, or importation, and to make material + available to the public including in ways that members of the + public may access the material from a place and at a time + individually chosen by them. + + j. Sui Generis Database Rights means rights other than copyright + resulting from Directive 96/9/EC of the European Parliament and of + the Council of 11 March 1996 on the legal protection of databases, + as amended and/or succeeded, as well as other essentially + equivalent rights anywhere in the world. + + k. You means the individual or entity exercising the Licensed Rights + under this Public License. Your has a corresponding meaning. + + +Section 2 -- Scope. + + a. License grant. + + 1. Subject to the terms and conditions of this Public License, + the Licensor hereby grants You a worldwide, royalty-free, + non-sublicensable, non-exclusive, irrevocable license to + exercise the Licensed Rights in the Licensed Material to: + + a. reproduce and Share the Licensed Material, in whole or + in part; and + + b. produce, reproduce, and Share Adapted Material. + + 2. Exceptions and Limitations. For the avoidance of doubt, where + Exceptions and Limitations apply to Your use, this Public + License does not apply, and You do not need to comply with + its terms and conditions. + + 3. Term. The term of this Public License is specified in Section + 6(a). + + 4. Media and formats; technical modifications allowed. The + Licensor authorizes You to exercise the Licensed Rights in + all media and formats whether now known or hereafter created, + and to make technical modifications necessary to do so. The + Licensor waives and/or agrees not to assert any right or + authority to forbid You from making technical modifications + necessary to exercise the Licensed Rights, including + technical modifications necessary to circumvent Effective + Technological Measures. For purposes of this Public License, + simply making modifications authorized by this Section 2(a) + (4) never produces Adapted Material. + + 5. Downstream recipients. + + a. Offer from the Licensor -- Licensed Material. Every + recipient of the Licensed Material automatically + receives an offer from the Licensor to exercise the + Licensed Rights under the terms and conditions of this + Public License. + + b. No downstream restrictions. You may not offer or impose + any additional or different terms or conditions on, or + apply any Effective Technological Measures to, the + Licensed Material if doing so restricts exercise of the + Licensed Rights by any recipient of the Licensed + Material. + + 6. No endorsement. Nothing in this Public License constitutes or + may be construed as permission to assert or imply that You + are, or that Your use of the Licensed Material is, connected + with, or sponsored, endorsed, or granted official status by, + the Licensor or others designated to receive attribution as + provided in Section 3(a)(1)(A)(i). + + b. Other rights. + + 1. Moral rights, such as the right of integrity, are not + licensed under this Public License, nor are publicity, + privacy, and/or other similar personality rights; however, to + the extent possible, the Licensor waives and/or agrees not to + assert any such rights held by the Licensor to the limited + extent necessary to allow You to exercise the Licensed + Rights, but not otherwise. + + 2. Patent and trademark rights are not licensed under this + Public License. + + 3. To the extent possible, the Licensor waives any right to + collect royalties from You for the exercise of the Licensed + Rights, whether directly or through a collecting society + under any voluntary or waivable statutory or compulsory + licensing scheme. In all other cases the Licensor expressly + reserves any right to collect such royalties. + + +Section 3 -- License Conditions. + +Your exercise of the Licensed Rights is expressly made subject to the +following conditions. + + a. Attribution. + + 1. If You Share the Licensed Material (including in modified + form), You must: + + a. retain the following if it is supplied by the Licensor + with the Licensed Material: + + i. identification of the creator(s) of the Licensed + Material and any others designated to receive + attribution, in any reasonable manner requested by + the Licensor (including by pseudonym if + designated); + + ii. a copyright notice; + + iii. a notice that refers to this Public License; + + iv. a notice that refers to the disclaimer of + warranties; + + v. a URI or hyperlink to the Licensed Material to the + extent reasonably practicable; + + b. indicate if You modified the Licensed Material and + retain an indication of any previous modifications; and + + c. indicate the Licensed Material is licensed under this + Public License, and include the text of, or the URI or + hyperlink to, this Public License. + + 2. You may satisfy the conditions in Section 3(a)(1) in any + reasonable manner based on the medium, means, and context in + which You Share the Licensed Material. For example, it may be + reasonable to satisfy the conditions by providing a URI or + hyperlink to a resource that includes the required + information. + + 3. If requested by the Licensor, You must remove any of the + information required by Section 3(a)(1)(A) to the extent + reasonably practicable. + + 4. If You Share Adapted Material You produce, the Adapter's + License You apply must not prevent recipients of the Adapted + Material from complying with this Public License. + + +Section 4 -- Sui Generis Database Rights. + +Where the Licensed Rights include Sui Generis Database Rights that +apply to Your use of the Licensed Material: + + a. for the avoidance of doubt, Section 2(a)(1) grants You the right + to extract, reuse, reproduce, and Share all or a substantial + portion of the contents of the database; + + b. if You include all or a substantial portion of the database + contents in a database in which You have Sui Generis Database + Rights, then the database in which You have Sui Generis Database + Rights (but not its individual contents) is Adapted Material; and + + c. You must comply with the conditions in Section 3(a) if You Share + all or a substantial portion of the contents of the database. + +For the avoidance of doubt, this Section 4 supplements and does not +replace Your obligations under this Public License where the Licensed +Rights include other Copyright and Similar Rights. + + +Section 5 -- Disclaimer of Warranties and Limitation of Liability. + + a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE + EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS + AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF + ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, + IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, + WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR + PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, + ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT + KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT + ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. + + b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE + TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, + NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, + INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, + COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR + USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN + ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR + DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR + IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. + + c. The disclaimer of warranties and limitation of liability provided + above shall be interpreted in a manner that, to the extent + possible, most closely approximates an absolute disclaimer and + waiver of all liability. + + +Section 6 -- Term and Termination. + + a. This Public License applies for the term of the Copyright and + Similar Rights licensed here. However, if You fail to comply with + this Public License, then Your rights under this Public License + terminate automatically. + + b. Where Your right to use the Licensed Material has terminated under + Section 6(a), it reinstates: + + 1. automatically as of the date the violation is cured, provided + it is cured within 30 days of Your discovery of the + violation; or + + 2. upon express reinstatement by the Licensor. + + For the avoidance of doubt, this Section 6(b) does not affect any + right the Licensor may have to seek remedies for Your violations + of this Public License. + + c. For the avoidance of doubt, the Licensor may also offer the + Licensed Material under separate terms or conditions or stop + distributing the Licensed Material at any time; however, doing so + will not terminate this Public License. + + d. Sections 1, 5, 6, 7, and 8 survive termination of this Public + License. + + +Section 7 -- Other Terms and Conditions. + + a. The Licensor shall not be bound by any additional or different + terms or conditions communicated by You unless expressly agreed. + + b. Any arrangements, understandings, or agreements regarding the + Licensed Material not stated herein are separate from and + independent of the terms and conditions of this Public License. + + +Section 8 -- Interpretation. + + a. For the avoidance of doubt, this Public License does not, and + shall not be interpreted to, reduce, limit, restrict, or impose + conditions on any use of the Licensed Material that could lawfully + be made without permission under this Public License. + + b. To the extent possible, if any provision of this Public License is + deemed unenforceable, it shall be automatically reformed to the + minimum extent necessary to make it enforceable. If the provision + cannot be reformed, it shall be severed from this Public License + without affecting the enforceability of the remaining terms and + conditions. + + c. No term or condition of this Public License will be waived and no + failure to comply consented to unless expressly agreed to by the + Licensor. + + d. Nothing in this Public License constitutes or may be interpreted + as a limitation upon, or waiver of, any privileges and immunities + that apply to the Licensor or You, including from the legal + processes of any jurisdiction or authority. + + +======================================================================= + +Creative Commons is not a party to its public +licenses. Notwithstanding, Creative Commons may elect to apply one of +its public licenses to material it publishes and in those instances +will be considered the “Licensor.” The text of the Creative Commons +public licenses is dedicated to the public domain under the CC0 Public +Domain Dedication. Except for the limited purpose of indicating that +material is shared under a Creative Commons public license or as +otherwise permitted by the Creative Commons policies published at +creativecommons.org/policies, Creative Commons does not authorize the +use of the trademark "Creative Commons" or any other trademark or logo +of Creative Commons without its prior written consent including, +without limitation, in connection with any unauthorized modifications +to any of its public licenses or any other arrangements, +understandings, or agreements concerning use of licensed material. For +the avoidance of doubt, this paragraph does not form part of the +public licenses. + +Creative Commons may be contacted at creativecommons.org. diff --git a/src/license_expression/data/license_key_index.json.ABOUT b/src/license_expression/data/license_key_index.json.ABOUT new file mode 100644 index 0000000..5a515d6 --- /dev/null +++ b/src/license_expression/data/license_key_index.json.ABOUT @@ -0,0 +1,5 @@ +about_resource: scancode-licensedb-index.json +name: scancode-licensedb-index.json +license_expression: cc-by-4.0 +copyright: Copyright (c) nexB Inc. and others. +homepage_url: https://scancode-licensedb.aboutcode.org/ diff --git a/src/license_expression/data/scancode-licensedb-index.json b/src/license_expression/data/scancode-licensedb-index.json new file mode 100644 index 0000000..b56685e --- /dev/null +++ b/src/license_expression/data/scancode-licensedb-index.json @@ -0,0 +1,19588 @@ +[ + { + "license_key": "389-exception", + "spdx_license_key": "389-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "389-exception.json", + "yml": "389-exception.yml", + "html": "389-exception.html", + "text": "389-exception.LICENSE" + }, + { + "license_key": "3com-microcode", + "spdx_license_key": "LicenseRef-scancode-3com-microcode", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "3com-microcode.json", + "yml": "3com-microcode.yml", + "html": "3com-microcode.html", + "text": "3com-microcode.LICENSE" + }, + { + "license_key": "3dslicer-1.0", + "spdx_license_key": "LicenseRef-scancode-3dslicer-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "3dslicer-1.0.json", + "yml": "3dslicer-1.0.yml", + "html": "3dslicer-1.0.html", + "text": "3dslicer-1.0.LICENSE" + }, + { + "license_key": "4suite-1.1", + "spdx_license_key": "LicenseRef-scancode-4suite-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "4suite-1.1.json", + "yml": "4suite-1.1.yml", + "html": "4suite-1.1.html", + "text": "4suite-1.1.LICENSE" + }, + { + "license_key": "996-icu-1.0", + "spdx_license_key": "LicenseRef-scancode-996-icu-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "996-icu-1.0.json", + "yml": "996-icu-1.0.yml", + "html": "996-icu-1.0.html", + "text": "996-icu-1.0.LICENSE" + }, + { + "license_key": "abrms", + "spdx_license_key": "LicenseRef-scancode-abrms", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "abrms.json", + "yml": "abrms.yml", + "html": "abrms.html", + "text": "abrms.LICENSE" + }, + { + "license_key": "abstyles", + "spdx_license_key": "Abstyles", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "abstyles.json", + "yml": "abstyles.yml", + "html": "abstyles.html", + "text": "abstyles.LICENSE" + }, + { + "license_key": "ac3filter", + "spdx_license_key": "LicenseRef-scancode-ac3filter", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ac3filter.json", + "yml": "ac3filter.yml", + "html": "ac3filter.html", + "text": "ac3filter.LICENSE" + }, + { + "license_key": "acdl-1.0", + "spdx_license_key": "LicenseRef-scancode-acdl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "acdl-1.0.json", + "yml": "acdl-1.0.yml", + "html": "acdl-1.0.html", + "text": "acdl-1.0.LICENSE" + }, + { + "license_key": "ace-tao", + "spdx_license_key": "DOC", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ace-tao.json", + "yml": "ace-tao.yml", + "html": "ace-tao.html", + "text": "ace-tao.LICENSE" + }, + { + "license_key": "activestate-community-2012", + "spdx_license_key": "LicenseRef-scancode-activestate-community-2012", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "activestate-community-2012.json", + "yml": "activestate-community-2012.yml", + "html": "activestate-community-2012.html", + "text": "activestate-community-2012.LICENSE" + }, + { + "license_key": "activestate-community", + "spdx_license_key": "LicenseRef-scancode-activestate-community", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "activestate-community.json", + "yml": "activestate-community.yml", + "html": "activestate-community.html", + "text": "activestate-community.LICENSE" + }, + { + "license_key": "activestate-komodo-edit", + "spdx_license_key": "LicenseRef-scancode-activestate-komodo-edit", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "activestate-komodo-edit.json", + "yml": "activestate-komodo-edit.yml", + "html": "activestate-komodo-edit.html", + "text": "activestate-komodo-edit.LICENSE" + }, + { + "license_key": "actuate-birt-ihub-ftype-sla", + "spdx_license_key": "LicenseRef-scancode-actuate-birt-ihub-ftype-sla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "actuate-birt-ihub-ftype-sla.json", + "yml": "actuate-birt-ihub-ftype-sla.yml", + "html": "actuate-birt-ihub-ftype-sla.html", + "text": "actuate-birt-ihub-ftype-sla.LICENSE" + }, + { + "license_key": "ada-linking-exception", + "spdx_license_key": "LicenseRef-scancode-ada-linking-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "ada-linking-exception.json", + "yml": "ada-linking-exception.yml", + "html": "ada-linking-exception.html", + "text": "ada-linking-exception.LICENSE" + }, + { + "license_key": "adapt-1.0", + "spdx_license_key": "APL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adapt-1.0.json", + "yml": "adapt-1.0.yml", + "html": "adapt-1.0.html", + "text": "adapt-1.0.LICENSE" + }, + { + "license_key": "adaptec-downloadable", + "spdx_license_key": "LicenseRef-scancode-adaptec-downloadable", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adaptec-downloadable.json", + "yml": "adaptec-downloadable.yml", + "html": "adaptec-downloadable.html", + "text": "adaptec-downloadable.LICENSE" + }, + { + "license_key": "adaptec-eula", + "spdx_license_key": "LicenseRef-scancode-adaptec-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adaptec-eula.json", + "yml": "adaptec-eula.yml", + "html": "adaptec-eula.html", + "text": "adaptec-eula.LICENSE" + }, + { + "license_key": "addthis-mobile-sdk-1.0", + "spdx_license_key": "LicenseRef-scancode-addthis-mobile-sdk-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "addthis-mobile-sdk-1.0.json", + "yml": "addthis-mobile-sdk-1.0.yml", + "html": "addthis-mobile-sdk-1.0.html", + "text": "addthis-mobile-sdk-1.0.LICENSE" + }, + { + "license_key": "adi-bsd", + "spdx_license_key": "LicenseRef-scancode-adi-bsd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adi-bsd.json", + "yml": "adi-bsd.yml", + "html": "adi-bsd.html", + "text": "adi-bsd.LICENSE" + }, + { + "license_key": "adobe-acrobat-reader-eula", + "spdx_license_key": "LicenseRef-scancode-adobe-acrobat-reader-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adobe-acrobat-reader-eula.json", + "yml": "adobe-acrobat-reader-eula.yml", + "html": "adobe-acrobat-reader-eula.html", + "text": "adobe-acrobat-reader-eula.LICENSE" + }, + { + "license_key": "adobe-air-sdk-2014", + "spdx_license_key": "LicenseRef-scancode-adobe-air-sdk-2014", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adobe-air-sdk-2014.json", + "yml": "adobe-air-sdk-2014.yml", + "html": "adobe-air-sdk-2014.html", + "text": "adobe-air-sdk-2014.LICENSE" + }, + { + "license_key": "adobe-air-sdk", + "spdx_license_key": "LicenseRef-scancode-adobe-air-sdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adobe-air-sdk.json", + "yml": "adobe-air-sdk.yml", + "html": "adobe-air-sdk.html", + "text": "adobe-air-sdk.LICENSE" + }, + { + "license_key": "adobe-dng-sdk", + "spdx_license_key": "LicenseRef-scancode-adobe-dng-sdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adobe-dng-sdk.json", + "yml": "adobe-dng-sdk.yml", + "html": "adobe-dng-sdk.html", + "text": "adobe-dng-sdk.LICENSE" + }, + { + "license_key": "adobe-eula", + "spdx_license_key": "LicenseRef-scancode-adobe-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adobe-eula.json", + "yml": "adobe-eula.yml", + "html": "adobe-eula.html", + "text": "adobe-eula.LICENSE" + }, + { + "license_key": "adobe-flash-player-eula-21.0", + "spdx_license_key": "LicenseRef-scancode-adobe-flash-player-eula-21.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adobe-flash-player-eula-21.0.json", + "yml": "adobe-flash-player-eula-21.0.yml", + "html": "adobe-flash-player-eula-21.0.html", + "text": "adobe-flash-player-eula-21.0.LICENSE" + }, + { + "license_key": "adobe-flex-4-sdk", + "spdx_license_key": "LicenseRef-scancode-adobe-flex-4-sdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adobe-flex-4-sdk.json", + "yml": "adobe-flex-4-sdk.yml", + "html": "adobe-flex-4-sdk.html", + "text": "adobe-flex-4-sdk.LICENSE" + }, + { + "license_key": "adobe-flex-sdk", + "spdx_license_key": "LicenseRef-scancode-adobe-flex-sdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adobe-flex-sdk.json", + "yml": "adobe-flex-sdk.yml", + "html": "adobe-flex-sdk.html", + "text": "adobe-flex-sdk.LICENSE" + }, + { + "license_key": "adobe-general-tou", + "spdx_license_key": "LicenseRef-scancode-adobe-general-tou", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adobe-general-tou.json", + "yml": "adobe-general-tou.yml", + "html": "adobe-general-tou.html", + "text": "adobe-general-tou.LICENSE" + }, + { + "license_key": "adobe-glyph", + "spdx_license_key": "Adobe-Glyph", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adobe-glyph.json", + "yml": "adobe-glyph.yml", + "html": "adobe-glyph.html", + "text": "adobe-glyph.LICENSE" + }, + { + "license_key": "adobe-indesign-sdk", + "spdx_license_key": "LicenseRef-scancode-adobe-indesign-sdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adobe-indesign-sdk.json", + "yml": "adobe-indesign-sdk.yml", + "html": "adobe-indesign-sdk.html", + "text": "adobe-indesign-sdk.LICENSE" + }, + { + "license_key": "adobe-postscript", + "spdx_license_key": "LicenseRef-scancode-adobe-postscript", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adobe-postscript.json", + "yml": "adobe-postscript.yml", + "html": "adobe-postscript.html", + "text": "adobe-postscript.LICENSE" + }, + { + "license_key": "adobe-scl", + "spdx_license_key": "Adobe-2006", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adobe-scl.json", + "yml": "adobe-scl.yml", + "html": "adobe-scl.html", + "text": "adobe-scl.LICENSE" + }, + { + "license_key": "adrian", + "spdx_license_key": "LicenseRef-scancode-adrian", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adrian.json", + "yml": "adrian.yml", + "html": "adrian.html", + "text": "adrian.LICENSE" + }, + { + "license_key": "adsl", + "spdx_license_key": "ADSL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adsl.json", + "yml": "adsl.yml", + "html": "adsl.html", + "text": "adsl.LICENSE" + }, + { + "license_key": "aes-128-3.0", + "spdx_license_key": "LicenseRef-scancode-aes-128-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "aes-128-3.0.json", + "yml": "aes-128-3.0.yml", + "html": "aes-128-3.0.html", + "text": "aes-128-3.0.LICENSE" + }, + { + "license_key": "afl-1.1", + "spdx_license_key": "AFL-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "afl-1.1.json", + "yml": "afl-1.1.yml", + "html": "afl-1.1.html", + "text": "afl-1.1.LICENSE" + }, + { + "license_key": "afl-1.2", + "spdx_license_key": "AFL-1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "afl-1.2.json", + "yml": "afl-1.2.yml", + "html": "afl-1.2.html", + "text": "afl-1.2.LICENSE" + }, + { + "license_key": "afl-2.0", + "spdx_license_key": "AFL-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "afl-2.0.json", + "yml": "afl-2.0.yml", + "html": "afl-2.0.html", + "text": "afl-2.0.LICENSE" + }, + { + "license_key": "afl-2.1", + "spdx_license_key": "AFL-2.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "afl-2.1.json", + "yml": "afl-2.1.yml", + "html": "afl-2.1.html", + "text": "afl-2.1.LICENSE" + }, + { + "license_key": "afl-3.0", + "spdx_license_key": "AFL-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "afl-3.0.json", + "yml": "afl-3.0.yml", + "html": "afl-3.0.html", + "text": "afl-3.0.LICENSE" + }, + { + "license_key": "afmparse", + "spdx_license_key": "Afmparse", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "afmparse.json", + "yml": "afmparse.yml", + "html": "afmparse.html", + "text": "afmparse.LICENSE" + }, + { + "license_key": "afpl-8.0", + "spdx_license_key": "Aladdin", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "afpl-8.0.json", + "yml": "afpl-8.0.yml", + "html": "afpl-8.0.html", + "text": "afpl-8.0.LICENSE" + }, + { + "license_key": "afpl-9.0", + "spdx_license_key": "LicenseRef-scancode-afpl-9.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "afpl-9.0.json", + "yml": "afpl-9.0.yml", + "html": "afpl-9.0.html", + "text": "afpl-9.0.LICENSE" + }, + { + "license_key": "agentxpp", + "spdx_license_key": "LicenseRef-scancode-agentxpp", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "agentxpp.json", + "yml": "agentxpp.yml", + "html": "agentxpp.html", + "text": "agentxpp.LICENSE" + }, + { + "license_key": "agere-bsd", + "spdx_license_key": "LicenseRef-scancode-agere-bsd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "agere-bsd.json", + "yml": "agere-bsd.yml", + "html": "agere-bsd.html", + "text": "agere-bsd.LICENSE" + }, + { + "license_key": "agere-sla", + "spdx_license_key": "LicenseRef-scancode-agere-sla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "agere-sla.json", + "yml": "agere-sla.yml", + "html": "agere-sla.html", + "text": "agere-sla.LICENSE" + }, + { + "license_key": "agpl-1.0-plus", + "spdx_license_key": "AGPL-1.0-or-later", + "other_spdx_license_keys": [ + "AGPL-1.0+" + ], + "is_exception": false, + "is_deprecated": false, + "json": "agpl-1.0-plus.json", + "yml": "agpl-1.0-plus.yml", + "html": "agpl-1.0-plus.html", + "text": "agpl-1.0-plus.LICENSE" + }, + { + "license_key": "agpl-1.0", + "spdx_license_key": "AGPL-1.0-only", + "other_spdx_license_keys": [ + "AGPL-1.0" + ], + "is_exception": false, + "is_deprecated": false, + "json": "agpl-1.0.json", + "yml": "agpl-1.0.yml", + "html": "agpl-1.0.html", + "text": "agpl-1.0.LICENSE" + }, + { + "license_key": "agpl-2.0", + "spdx_license_key": "LicenseRef-scancode-agpl-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "agpl-2.0.json", + "yml": "agpl-2.0.yml", + "html": "agpl-2.0.html", + "text": "agpl-2.0.LICENSE" + }, + { + "license_key": "agpl-3.0-bacula", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "agpl-3.0-bacula.json", + "yml": "agpl-3.0-bacula.yml", + "html": "agpl-3.0-bacula.html", + "text": "agpl-3.0-bacula.LICENSE" + }, + { + "license_key": "agpl-3.0-linking-exception", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "agpl-3.0-linking-exception.json", + "yml": "agpl-3.0-linking-exception.yml", + "html": "agpl-3.0-linking-exception.html", + "text": "agpl-3.0-linking-exception.LICENSE" + }, + { + "license_key": "agpl-3.0-openssl", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "agpl-3.0-openssl.json", + "yml": "agpl-3.0-openssl.yml", + "html": "agpl-3.0-openssl.html", + "text": "agpl-3.0-openssl.LICENSE" + }, + { + "license_key": "agpl-3.0-plus", + "spdx_license_key": "AGPL-3.0-or-later", + "other_spdx_license_keys": [ + "AGPL-3.0+" + ], + "is_exception": false, + "is_deprecated": false, + "json": "agpl-3.0-plus.json", + "yml": "agpl-3.0-plus.yml", + "html": "agpl-3.0-plus.html", + "text": "agpl-3.0-plus.LICENSE" + }, + { + "license_key": "agpl-3.0", + "spdx_license_key": "AGPL-3.0-only", + "other_spdx_license_keys": [ + "AGPL-3.0" + ], + "is_exception": false, + "is_deprecated": false, + "json": "agpl-3.0.json", + "yml": "agpl-3.0.yml", + "html": "agpl-3.0.html", + "text": "agpl-3.0.LICENSE" + }, + { + "license_key": "agpl-generic-additional-terms", + "spdx_license_key": "LicenseRef-scancode-agpl-generic-additional-terms", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "agpl-generic-additional-terms.json", + "yml": "agpl-generic-additional-terms.yml", + "html": "agpl-generic-additional-terms.html", + "text": "agpl-generic-additional-terms.LICENSE" + }, + { + "license_key": "aladdin-md5", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "aladdin-md5.json", + "yml": "aladdin-md5.yml", + "html": "aladdin-md5.html", + "text": "aladdin-md5.LICENSE" + }, + { + "license_key": "alasir", + "spdx_license_key": "LicenseRef-scancode-alasir", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "alasir.json", + "yml": "alasir.yml", + "html": "alasir.html", + "text": "alasir.LICENSE" + }, + { + "license_key": "alexisisaac-freeware", + "spdx_license_key": "LicenseRef-scancode-alexisisaac-freeware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "alexisisaac-freeware.json", + "yml": "alexisisaac-freeware.yml", + "html": "alexisisaac-freeware.html", + "text": "alexisisaac-freeware.LICENSE" + }, + { + "license_key": "alfresco-exception-0.5", + "spdx_license_key": "LicenseRef-scancode-alfresco-exception-0.5", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "alfresco-exception-0.5.json", + "yml": "alfresco-exception-0.5.yml", + "html": "alfresco-exception-0.5.html", + "text": "alfresco-exception-0.5.LICENSE" + }, + { + "license_key": "allegro-4", + "spdx_license_key": "Giftware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "allegro-4.json", + "yml": "allegro-4.yml", + "html": "allegro-4.html", + "text": "allegro-4.LICENSE" + }, + { + "license_key": "altova-eula", + "spdx_license_key": "LicenseRef-scancode-altova-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "altova-eula.json", + "yml": "altova-eula.yml", + "html": "altova-eula.html", + "text": "altova-eula.LICENSE" + }, + { + "license_key": "amazon-redshift-jdbc", + "spdx_license_key": "LicenseRef-scancode-amazon-redshift-jdbc", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "amazon-redshift-jdbc.json", + "yml": "amazon-redshift-jdbc.yml", + "html": "amazon-redshift-jdbc.html", + "text": "amazon-redshift-jdbc.LICENSE" + }, + { + "license_key": "amazon-sl", + "spdx_license_key": "LicenseRef-scancode-amazon-sl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "amazon-sl.json", + "yml": "amazon-sl.yml", + "html": "amazon-sl.html", + "text": "amazon-sl.LICENSE" + }, + { + "license_key": "amd-historical", + "spdx_license_key": "LicenseRef-scancode-amd-historical", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "amd-historical.json", + "yml": "amd-historical.yml", + "html": "amd-historical.html", + "text": "amd-historical.LICENSE" + }, + { + "license_key": "amdplpa", + "spdx_license_key": "AMDPLPA", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "amdplpa.json", + "yml": "amdplpa.yml", + "html": "amdplpa.html", + "text": "amdplpa.LICENSE" + }, + { + "license_key": "aml", + "spdx_license_key": "AML", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "aml.json", + "yml": "aml.yml", + "html": "aml.html", + "text": "aml.LICENSE" + }, + { + "license_key": "ampas", + "spdx_license_key": "AMPAS", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ampas.json", + "yml": "ampas.yml", + "html": "ampas.html", + "text": "ampas.LICENSE" + }, + { + "license_key": "ams-fonts", + "spdx_license_key": "LicenseRef-scancode-ams-fonts", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ams-fonts.json", + "yml": "ams-fonts.yml", + "html": "ams-fonts.html", + "text": "ams-fonts.LICENSE" + }, + { + "license_key": "android-sdk-2009", + "spdx_license_key": "LicenseRef-scancode-android-sdk-2009", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "android-sdk-2009.json", + "yml": "android-sdk-2009.yml", + "html": "android-sdk-2009.html", + "text": "android-sdk-2009.LICENSE" + }, + { + "license_key": "android-sdk-2012", + "spdx_license_key": "LicenseRef-scancode-android-sdk-2012", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "android-sdk-2012.json", + "yml": "android-sdk-2012.yml", + "html": "android-sdk-2012.html", + "text": "android-sdk-2012.LICENSE" + }, + { + "license_key": "android-sdk-license", + "spdx_license_key": "LicenseRef-scancode-android-sdk-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "android-sdk-license.json", + "yml": "android-sdk-license.yml", + "html": "android-sdk-license.html", + "text": "android-sdk-license.LICENSE" + }, + { + "license_key": "android-sdk-preview-2015", + "spdx_license_key": "LicenseRef-scancode-android-sdk-preview-2015", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "android-sdk-preview-2015.json", + "yml": "android-sdk-preview-2015.yml", + "html": "android-sdk-preview-2015.html", + "text": "android-sdk-preview-2015.LICENSE" + }, + { + "license_key": "antlr-pd-fallback", + "spdx_license_key": "ANTLR-PD-fallback", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "antlr-pd-fallback.json", + "yml": "antlr-pd-fallback.yml", + "html": "antlr-pd-fallback.html", + "text": "antlr-pd-fallback.LICENSE" + }, + { + "license_key": "antlr-pd", + "spdx_license_key": "ANTLR-PD", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "antlr-pd.json", + "yml": "antlr-pd.yml", + "html": "antlr-pd.html", + "text": "antlr-pd.LICENSE" + }, + { + "license_key": "anu-license", + "spdx_license_key": "LicenseRef-scancode-anu-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "anu-license.json", + "yml": "anu-license.yml", + "html": "anu-license.html", + "text": "anu-license.LICENSE" + }, + { + "license_key": "aop-pd", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "aop-pd.json", + "yml": "aop-pd.yml", + "html": "aop-pd.html", + "text": "aop-pd.LICENSE" + }, + { + "license_key": "apache-1.0", + "spdx_license_key": "Apache-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "apache-1.0.json", + "yml": "apache-1.0.yml", + "html": "apache-1.0.html", + "text": "apache-1.0.LICENSE" + }, + { + "license_key": "apache-1.1", + "spdx_license_key": "Apache-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "apache-1.1.json", + "yml": "apache-1.1.yml", + "html": "apache-1.1.html", + "text": "apache-1.1.LICENSE" + }, + { + "license_key": "apache-2.0-linking-exception", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "apache-2.0-linking-exception.json", + "yml": "apache-2.0-linking-exception.yml", + "html": "apache-2.0-linking-exception.html", + "text": "apache-2.0-linking-exception.LICENSE" + }, + { + "license_key": "apache-2.0-runtime-library-exception", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "apache-2.0-runtime-library-exception.json", + "yml": "apache-2.0-runtime-library-exception.yml", + "html": "apache-2.0-runtime-library-exception.html", + "text": "apache-2.0-runtime-library-exception.LICENSE" + }, + { + "license_key": "apache-2.0", + "spdx_license_key": "Apache-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "apache-2.0.json", + "yml": "apache-2.0.yml", + "html": "apache-2.0.html", + "text": "apache-2.0.LICENSE" + }, + { + "license_key": "apache-due-credit", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "apache-due-credit.json", + "yml": "apache-due-credit.yml", + "html": "apache-due-credit.html", + "text": "apache-due-credit.LICENSE" + }, + { + "license_key": "apache-exception-llvm", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "apache-exception-llvm.json", + "yml": "apache-exception-llvm.yml", + "html": "apache-exception-llvm.html", + "text": "apache-exception-llvm.LICENSE" + }, + { + "license_key": "apafml", + "spdx_license_key": "APAFML", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "apafml.json", + "yml": "apafml.yml", + "html": "apafml.html", + "text": "apafml.LICENSE" + }, + { + "license_key": "appfire-eula", + "spdx_license_key": "LicenseRef-scancode-appfire-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "appfire-eula.json", + "yml": "appfire-eula.yml", + "html": "appfire-eula.html", + "text": "appfire-eula.LICENSE" + }, + { + "license_key": "apple-attribution-1997", + "spdx_license_key": "LicenseRef-scancode-apple-attribution-1997", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "apple-attribution-1997.json", + "yml": "apple-attribution-1997.yml", + "html": "apple-attribution-1997.html", + "text": "apple-attribution-1997.LICENSE" + }, + { + "license_key": "apple-attribution", + "spdx_license_key": "LicenseRef-scancode-apple-attribution", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "apple-attribution.json", + "yml": "apple-attribution.yml", + "html": "apple-attribution.html", + "text": "apple-attribution.LICENSE" + }, + { + "license_key": "apple-excl", + "spdx_license_key": "LicenseRef-scancode-apple-excl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "apple-excl.json", + "yml": "apple-excl.yml", + "html": "apple-excl.html", + "text": "apple-excl.LICENSE" + }, + { + "license_key": "apple-mpeg-4", + "spdx_license_key": "LicenseRef-scancode-apple-mpeg-4", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "apple-mpeg-4.json", + "yml": "apple-mpeg-4.yml", + "html": "apple-mpeg-4.html", + "text": "apple-mpeg-4.LICENSE" + }, + { + "license_key": "apple-runtime-library-exception", + "spdx_license_key": "Swift-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "apple-runtime-library-exception.json", + "yml": "apple-runtime-library-exception.yml", + "html": "apple-runtime-library-exception.html", + "text": "apple-runtime-library-exception.LICENSE" + }, + { + "license_key": "apple-sscl", + "spdx_license_key": "LicenseRef-scancode-apple-sscl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "apple-sscl.json", + "yml": "apple-sscl.yml", + "html": "apple-sscl.html", + "text": "apple-sscl.LICENSE" + }, + { + "license_key": "apsl-1.0", + "spdx_license_key": "APSL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "apsl-1.0.json", + "yml": "apsl-1.0.yml", + "html": "apsl-1.0.html", + "text": "apsl-1.0.LICENSE" + }, + { + "license_key": "apsl-1.1", + "spdx_license_key": "APSL-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "apsl-1.1.json", + "yml": "apsl-1.1.yml", + "html": "apsl-1.1.html", + "text": "apsl-1.1.LICENSE" + }, + { + "license_key": "apsl-1.2", + "spdx_license_key": "APSL-1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "apsl-1.2.json", + "yml": "apsl-1.2.yml", + "html": "apsl-1.2.html", + "text": "apsl-1.2.LICENSE" + }, + { + "license_key": "apsl-2.0", + "spdx_license_key": "APSL-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "apsl-2.0.json", + "yml": "apsl-2.0.yml", + "html": "apsl-2.0.html", + "text": "apsl-2.0.LICENSE" + }, + { + "license_key": "aptana-1.0", + "spdx_license_key": "LicenseRef-scancode-aptana-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "aptana-1.0.json", + "yml": "aptana-1.0.yml", + "html": "aptana-1.0.html", + "text": "aptana-1.0.LICENSE" + }, + { + "license_key": "aptana-exception-3.0", + "spdx_license_key": "LicenseRef-scancode-aptana-exception-3.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "aptana-exception-3.0.json", + "yml": "aptana-exception-3.0.yml", + "html": "aptana-exception-3.0.html", + "text": "aptana-exception-3.0.LICENSE" + }, + { + "license_key": "aravindan-premkumar", + "spdx_license_key": "LicenseRef-scancode-aravindan-premkumar", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "aravindan-premkumar.json", + "yml": "aravindan-premkumar.yml", + "html": "aravindan-premkumar.html", + "text": "aravindan-premkumar.LICENSE" + }, + { + "license_key": "argouml", + "spdx_license_key": "LicenseRef-scancode-argouml", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "argouml.json", + "yml": "argouml.yml", + "html": "argouml.html", + "text": "argouml.LICENSE" + }, + { + "license_key": "arm-cortex-mx", + "spdx_license_key": "LicenseRef-scancode-arm-cortex-mx", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "arm-cortex-mx.json", + "yml": "arm-cortex-mx.yml", + "html": "arm-cortex-mx.html", + "text": "arm-cortex-mx.LICENSE" + }, + { + "license_key": "arm-llvm-sga", + "spdx_license_key": "LicenseRef-scancode-arm-llvm-sga", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "arm-llvm-sga.json", + "yml": "arm-llvm-sga.yml", + "html": "arm-llvm-sga.html", + "text": "arm-llvm-sga.LICENSE" + }, + { + "license_key": "arphic-public", + "spdx_license_key": "LicenseRef-scancode-arphic-public", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "arphic-public.json", + "yml": "arphic-public.yml", + "html": "arphic-public.html", + "text": "arphic-public.LICENSE" + }, + { + "license_key": "array-input-method-pl", + "spdx_license_key": "LicenseRef-scancode-array-input-method-pl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "array-input-method-pl.json", + "yml": "array-input-method-pl.yml", + "html": "array-input-method-pl.html", + "text": "array-input-method-pl.LICENSE" + }, + { + "license_key": "artistic-1.0-cl8", + "spdx_license_key": "Artistic-1.0-cl8", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "artistic-1.0-cl8.json", + "yml": "artistic-1.0-cl8.yml", + "html": "artistic-1.0-cl8.html", + "text": "artistic-1.0-cl8.LICENSE" + }, + { + "license_key": "artistic-1.0", + "spdx_license_key": "Artistic-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "artistic-1.0.json", + "yml": "artistic-1.0.yml", + "html": "artistic-1.0.html", + "text": "artistic-1.0.LICENSE" + }, + { + "license_key": "artistic-2.0", + "spdx_license_key": "Artistic-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "artistic-2.0.json", + "yml": "artistic-2.0.yml", + "html": "artistic-2.0.html", + "text": "artistic-2.0.LICENSE" + }, + { + "license_key": "artistic-clarified", + "spdx_license_key": "ClArtistic", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "artistic-clarified.json", + "yml": "artistic-clarified.yml", + "html": "artistic-clarified.html", + "text": "artistic-clarified.LICENSE" + }, + { + "license_key": "artistic-dist-1.0", + "spdx_license_key": "LicenseRef-scancode-artistic-1988-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "artistic-dist-1.0.json", + "yml": "artistic-dist-1.0.yml", + "html": "artistic-dist-1.0.html", + "text": "artistic-dist-1.0.LICENSE" + }, + { + "license_key": "artistic-perl-1.0", + "spdx_license_key": "Artistic-1.0-Perl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "artistic-perl-1.0.json", + "yml": "artistic-perl-1.0.yml", + "html": "artistic-perl-1.0.html", + "text": "artistic-perl-1.0.LICENSE" + }, + { + "license_key": "aslp", + "spdx_license_key": "LicenseRef-scancode-aslp", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "aslp.json", + "yml": "aslp.yml", + "html": "aslp.html", + "text": "aslp.LICENSE" + }, + { + "license_key": "aslr", + "spdx_license_key": "LicenseRef-scancode-aslr", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "aslr.json", + "yml": "aslr.yml", + "html": "aslr.html", + "text": "aslr.LICENSE" + }, + { + "license_key": "asmus", + "spdx_license_key": "LicenseRef-scancode-asmus", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "asmus.json", + "yml": "asmus.yml", + "html": "asmus.html", + "text": "asmus.LICENSE" + }, + { + "license_key": "asn1", + "spdx_license_key": "LicenseRef-scancode-asn1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "asn1.json", + "yml": "asn1.yml", + "html": "asn1.html", + "text": "asn1.LICENSE" + }, + { + "license_key": "ati-eula", + "spdx_license_key": "LicenseRef-scancode-ati-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ati-eula.json", + "yml": "ati-eula.yml", + "html": "ati-eula.html", + "text": "ati-eula.LICENSE" + }, + { + "license_key": "atlassian-marketplace-tou", + "spdx_license_key": "LicenseRef-scancode-atlassian-marketplace-tou", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "atlassian-marketplace-tou.json", + "yml": "atlassian-marketplace-tou.yml", + "html": "atlassian-marketplace-tou.html", + "text": "atlassian-marketplace-tou.LICENSE" + }, + { + "license_key": "atmel-firmware", + "spdx_license_key": "LicenseRef-scancode-atmel-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "atmel-firmware.json", + "yml": "atmel-firmware.yml", + "html": "atmel-firmware.html", + "text": "atmel-firmware.LICENSE" + }, + { + "license_key": "atmosphere-0.4", + "spdx_license_key": "LicenseRef-scancode-atmosphere-0.4", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "atmosphere-0.4.json", + "yml": "atmosphere-0.4.yml", + "html": "atmosphere-0.4.html", + "text": "atmosphere-0.4.LICENSE" + }, + { + "license_key": "attribution", + "spdx_license_key": "AAL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "attribution.json", + "yml": "attribution.yml", + "html": "attribution.html", + "text": "attribution.LICENSE" + }, + { + "license_key": "autoconf-exception-2.0", + "spdx_license_key": "Autoconf-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "autoconf-exception-2.0.json", + "yml": "autoconf-exception-2.0.yml", + "html": "autoconf-exception-2.0.html", + "text": "autoconf-exception-2.0.LICENSE" + }, + { + "license_key": "autoconf-exception-3.0", + "spdx_license_key": "Autoconf-exception-3.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "autoconf-exception-3.0.json", + "yml": "autoconf-exception-3.0.yml", + "html": "autoconf-exception-3.0.html", + "text": "autoconf-exception-3.0.LICENSE" + }, + { + "license_key": "autoconf-macro-exception", + "spdx_license_key": "LicenseRef-scancode-autoconf-macro-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "autoconf-macro-exception.json", + "yml": "autoconf-macro-exception.yml", + "html": "autoconf-macro-exception.html", + "text": "autoconf-macro-exception.LICENSE" + }, + { + "license_key": "autoconf-simple-exception-2.0", + "spdx_license_key": "LicenseRef-scancode-autoconf-simple-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "autoconf-simple-exception-2.0.json", + "yml": "autoconf-simple-exception-2.0.yml", + "html": "autoconf-simple-exception-2.0.html", + "text": "autoconf-simple-exception-2.0.LICENSE" + }, + { + "license_key": "autoconf-simple-exception", + "spdx_license_key": "LicenseRef-scancode-autoconf-simple-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "autoconf-simple-exception.json", + "yml": "autoconf-simple-exception.yml", + "html": "autoconf-simple-exception.html", + "text": "autoconf-simple-exception.LICENSE" + }, + { + "license_key": "autoit-eula", + "spdx_license_key": "LicenseRef-scancode-autoit-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "autoit-eula.json", + "yml": "autoit-eula.yml", + "html": "autoit-eula.html", + "text": "autoit-eula.LICENSE" + }, + { + "license_key": "autoopts-exception-2.0", + "spdx_license_key": "LicenseRef-scancode-autoopts-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "autoopts-exception-2.0.json", + "yml": "autoopts-exception-2.0.yml", + "html": "autoopts-exception-2.0.html", + "text": "autoopts-exception-2.0.LICENSE" + }, + { + "license_key": "avisynth-c-interface-exception", + "spdx_license_key": "LicenseRef-scancode-avisynth-c-interface-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "avisynth-c-interface-exception.json", + "yml": "avisynth-c-interface-exception.yml", + "html": "avisynth-c-interface-exception.html", + "text": "avisynth-c-interface-exception.LICENSE" + }, + { + "license_key": "avisynth-linking-exception", + "spdx_license_key": "LicenseRef-scancode-avisynth-linking-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "avisynth-linking-exception.json", + "yml": "avisynth-linking-exception.yml", + "html": "avisynth-linking-exception.html", + "text": "avisynth-linking-exception.LICENSE" + }, + { + "license_key": "bacula-exception", + "spdx_license_key": "LicenseRef-scancode-bacula-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "bacula-exception.json", + "yml": "bacula-exception.yml", + "html": "bacula-exception.html", + "text": "bacula-exception.LICENSE" + }, + { + "license_key": "baekmuk-fonts", + "spdx_license_key": "LicenseRef-scancode-baekmuk-fonts", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "baekmuk-fonts.json", + "yml": "baekmuk-fonts.yml", + "html": "baekmuk-fonts.html", + "text": "baekmuk-fonts.LICENSE" + }, + { + "license_key": "bahyph", + "spdx_license_key": "Bahyph", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bahyph.json", + "yml": "bahyph.yml", + "html": "bahyph.html", + "text": "bahyph.LICENSE" + }, + { + "license_key": "bakoma-fonts-1995", + "spdx_license_key": "LicenseRef-scancode-bakoma-fonts-1995", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bakoma-fonts-1995.json", + "yml": "bakoma-fonts-1995.yml", + "html": "bakoma-fonts-1995.html", + "text": "bakoma-fonts-1995.LICENSE" + }, + { + "license_key": "barr-tex", + "spdx_license_key": "Barr", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "barr-tex.json", + "yml": "barr-tex.yml", + "html": "barr-tex.html", + "text": "barr-tex.LICENSE" + }, + { + "license_key": "bash-exception-gpl", + "spdx_license_key": "LicenseRef-scancode-bash-exception-gpl-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "bash-exception-gpl.json", + "yml": "bash-exception-gpl.yml", + "html": "bash-exception-gpl.html", + "text": "bash-exception-gpl.LICENSE" + }, + { + "license_key": "bea-2.1", + "spdx_license_key": "LicenseRef-scancode-bea-2.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bea-2.1.json", + "yml": "bea-2.1.yml", + "html": "bea-2.1.html", + "text": "bea-2.1.LICENSE" + }, + { + "license_key": "beal-screamer", + "spdx_license_key": "LicenseRef-scancode-beal-screamer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "beal-screamer.json", + "yml": "beal-screamer.yml", + "html": "beal-screamer.html", + "text": "beal-screamer.LICENSE" + }, + { + "license_key": "beerware", + "spdx_license_key": "Beerware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "beerware.json", + "yml": "beerware.yml", + "html": "beerware.html", + "text": "beerware.LICENSE" + }, + { + "license_key": "bigdigits", + "spdx_license_key": "LicenseRef-scancode-bigdigits", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bigdigits.json", + "yml": "bigdigits.yml", + "html": "bigdigits.html", + "text": "bigdigits.LICENSE" + }, + { + "license_key": "bigelow-holmes", + "spdx_license_key": "LicenseRef-scancode-bigelow-holmes", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bigelow-holmes.json", + "yml": "bigelow-holmes.yml", + "html": "bigelow-holmes.html", + "text": "bigelow-holmes.LICENSE" + }, + { + "license_key": "biopython", + "spdx_license_key": "LicenseRef-scancode-biopython", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "biopython.json", + "yml": "biopython.yml", + "html": "biopython.html", + "text": "biopython.LICENSE" + }, + { + "license_key": "biosl-4.0", + "spdx_license_key": "LicenseRef-scancode-biosl-4.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "biosl-4.0.json", + "yml": "biosl-4.0.yml", + "html": "biosl-4.0.html", + "text": "biosl-4.0.LICENSE" + }, + { + "license_key": "bison-exception-2.0", + "spdx_license_key": "LicenseRef-scancode-bison-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "bison-exception-2.0.json", + "yml": "bison-exception-2.0.yml", + "html": "bison-exception-2.0.html", + "text": "bison-exception-2.0.LICENSE" + }, + { + "license_key": "bison-exception-2.2", + "spdx_license_key": "Bison-exception-2.2", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "bison-exception-2.2.json", + "yml": "bison-exception-2.2.yml", + "html": "bison-exception-2.2.html", + "text": "bison-exception-2.2.LICENSE" + }, + { + "license_key": "bitstream", + "spdx_license_key": "LicenseRef-scancode-bitstream", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bitstream.json", + "yml": "bitstream.yml", + "html": "bitstream.html", + "text": "bitstream.LICENSE" + }, + { + "license_key": "bittorrent-1.0", + "spdx_license_key": "BitTorrent-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bittorrent-1.0.json", + "yml": "bittorrent-1.0.yml", + "html": "bittorrent-1.0.html", + "text": "bittorrent-1.0.LICENSE" + }, + { + "license_key": "bittorrent-1.1", + "spdx_license_key": "BitTorrent-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bittorrent-1.1.json", + "yml": "bittorrent-1.1.yml", + "html": "bittorrent-1.1.html", + "text": "bittorrent-1.1.LICENSE" + }, + { + "license_key": "bittorrent-1.2", + "spdx_license_key": "LicenseRef-scancode-bittorrent-1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bittorrent-1.2.json", + "yml": "bittorrent-1.2.yml", + "html": "bittorrent-1.2.html", + "text": "bittorrent-1.2.LICENSE" + }, + { + "license_key": "bittorrent-eula", + "spdx_license_key": "LicenseRef-scancode-bittorrent-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bittorrent-eula.json", + "yml": "bittorrent-eula.yml", + "html": "bittorrent-eula.html", + "text": "bittorrent-eula.LICENSE" + }, + { + "license_key": "bitwarden-1.0", + "spdx_license_key": "LicenseRef-scancode-bitwarden-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bitwarden-1.0.json", + "yml": "bitwarden-1.0.yml", + "html": "bitwarden-1.0.html", + "text": "bitwarden-1.0.LICENSE" + }, + { + "license_key": "bitzi-pd", + "spdx_license_key": "LicenseRef-scancode-bitzi-pd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bitzi-pd.json", + "yml": "bitzi-pd.yml", + "html": "bitzi-pd.html", + "text": "bitzi-pd.LICENSE" + }, + { + "license_key": "blas-2017", + "spdx_license_key": "LicenseRef-scancode-blas-2017", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "blas-2017.json", + "yml": "blas-2017.yml", + "html": "blas-2017.html", + "text": "blas-2017.LICENSE" + }, + { + "license_key": "blessing", + "spdx_license_key": "blessing", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "blessing.json", + "yml": "blessing.yml", + "html": "blessing.html", + "text": "blessing.LICENSE" + }, + { + "license_key": "blitz-artistic", + "spdx_license_key": "LicenseRef-scancode-blitz-artistic", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "blitz-artistic.json", + "yml": "blitz-artistic.yml", + "html": "blitz-artistic.html", + "text": "blitz-artistic.LICENSE" + }, + { + "license_key": "bloomberg-blpapi", + "spdx_license_key": "LicenseRef-scancode-bloomberg-blpapi", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bloomberg-blpapi.json", + "yml": "bloomberg-blpapi.yml", + "html": "bloomberg-blpapi.html", + "text": "bloomberg-blpapi.LICENSE" + }, + { + "license_key": "blueoak-1.0.0", + "spdx_license_key": "BlueOak-1.0.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "blueoak-1.0.0.json", + "yml": "blueoak-1.0.0.yml", + "html": "blueoak-1.0.0.html", + "text": "blueoak-1.0.0.LICENSE" + }, + { + "license_key": "boost-1.0", + "spdx_license_key": "BSL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "boost-1.0.json", + "yml": "boost-1.0.yml", + "html": "boost-1.0.html", + "text": "boost-1.0.LICENSE" + }, + { + "license_key": "boost-original", + "spdx_license_key": "LicenseRef-scancode-boost-original", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "boost-original.json", + "yml": "boost-original.yml", + "html": "boost-original.html", + "text": "boost-original.LICENSE" + }, + { + "license_key": "bootloader-exception", + "spdx_license_key": "Bootloader-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "bootloader-exception.json", + "yml": "bootloader-exception.yml", + "html": "bootloader-exception.html", + "text": "bootloader-exception.LICENSE" + }, + { + "license_key": "borceux", + "spdx_license_key": "Borceux", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "borceux.json", + "yml": "borceux.yml", + "html": "borceux.html", + "text": "borceux.LICENSE" + }, + { + "license_key": "bpel4ws-spec", + "spdx_license_key": "LicenseRef-scancode-bpel4ws-spec", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bpel4ws-spec.json", + "yml": "bpel4ws-spec.yml", + "html": "bpel4ws-spec.html", + "text": "bpel4ws-spec.LICENSE" + }, + { + "license_key": "bpmn-io", + "spdx_license_key": "LicenseRef-scancode-bpmn-io", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bpmn-io.json", + "yml": "bpmn-io.yml", + "html": "bpmn-io.html", + "text": "bpmn-io.LICENSE" + }, + { + "license_key": "brad-martinez-vb-32", + "spdx_license_key": "LicenseRef-scancode-brad-martinez-vb-32", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "brad-martinez-vb-32.json", + "yml": "brad-martinez-vb-32.yml", + "html": "brad-martinez-vb-32.html", + "text": "brad-martinez-vb-32.LICENSE" + }, + { + "license_key": "brent-corkum", + "spdx_license_key": "LicenseRef-scancode-brent-corkum", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "brent-corkum.json", + "yml": "brent-corkum.yml", + "html": "brent-corkum.html", + "text": "brent-corkum.LICENSE" + }, + { + "license_key": "brian-clapper", + "spdx_license_key": "LicenseRef-scancode-brian-clapper", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "brian-clapper.json", + "yml": "brian-clapper.yml", + "html": "brian-clapper.html", + "text": "brian-clapper.LICENSE" + }, + { + "license_key": "brian-gladman-3-clause", + "spdx_license_key": "LicenseRef-scancode-brian-gladman-3-clause", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "brian-gladman-3-clause.json", + "yml": "brian-gladman-3-clause.yml", + "html": "brian-gladman-3-clause.html", + "text": "brian-gladman-3-clause.LICENSE" + }, + { + "license_key": "brian-gladman-dual", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "brian-gladman-dual.json", + "yml": "brian-gladman-dual.yml", + "html": "brian-gladman-dual.html", + "text": "brian-gladman-dual.LICENSE" + }, + { + "license_key": "brian-gladman", + "spdx_license_key": "LicenseRef-scancode-brian-gladman", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "brian-gladman.json", + "yml": "brian-gladman.yml", + "html": "brian-gladman.html", + "text": "brian-gladman.LICENSE" + }, + { + "license_key": "broadcom-cfe", + "spdx_license_key": "LicenseRef-scancode-broadcom-cfe", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "broadcom-cfe.json", + "yml": "broadcom-cfe.yml", + "html": "broadcom-cfe.html", + "text": "broadcom-cfe.LICENSE" + }, + { + "license_key": "broadcom-commercial", + "spdx_license_key": "LicenseRef-scancode-broadcom-commercial", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "broadcom-commercial.json", + "yml": "broadcom-commercial.yml", + "html": "broadcom-commercial.html", + "text": "broadcom-commercial.LICENSE" + }, + { + "license_key": "broadcom-confidential", + "spdx_license_key": "LicenseRef-scancode-broadcom-confidential", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "broadcom-confidential.json", + "yml": "broadcom-confidential.yml", + "html": "broadcom-confidential.html", + "text": "broadcom-confidential.LICENSE" + }, + { + "license_key": "broadcom-dual", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "broadcom-dual.json", + "yml": "broadcom-dual.yml", + "html": "broadcom-dual.html", + "text": "broadcom-dual.LICENSE" + }, + { + "license_key": "broadcom-linking-exception-2.0", + "spdx_license_key": "LicenseRef-scancode-broadcom-linking-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "broadcom-linking-exception-2.0.json", + "yml": "broadcom-linking-exception-2.0.yml", + "html": "broadcom-linking-exception-2.0.html", + "text": "broadcom-linking-exception-2.0.LICENSE" + }, + { + "license_key": "broadcom-linking-unmodified", + "spdx_license_key": "LicenseRef-scancode-broadcom-linking-unmodified", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "broadcom-linking-unmodified.json", + "yml": "broadcom-linking-unmodified.yml", + "html": "broadcom-linking-unmodified.html", + "text": "broadcom-linking-unmodified.LICENSE" + }, + { + "license_key": "broadcom-linux-timer", + "spdx_license_key": "LicenseRef-scancode-broadcom-linux-timer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "broadcom-linux-timer.json", + "yml": "broadcom-linux-timer.yml", + "html": "broadcom-linux-timer.html", + "text": "broadcom-linux-timer.LICENSE" + }, + { + "license_key": "broadcom-proprietary", + "spdx_license_key": "LicenseRef-scancode-broadcom-proprietary", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "broadcom-proprietary.json", + "yml": "broadcom-proprietary.yml", + "html": "broadcom-proprietary.html", + "text": "broadcom-proprietary.LICENSE" + }, + { + "license_key": "broadcom-standard-terms", + "spdx_license_key": "LicenseRef-scancode-broadcom-standard-terms", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "broadcom-standard-terms.json", + "yml": "broadcom-standard-terms.yml", + "html": "broadcom-standard-terms.html", + "text": "broadcom-standard-terms.LICENSE" + }, + { + "license_key": "broadcom-unpublished-source", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "broadcom-unpublished-source.json", + "yml": "broadcom-unpublished-source.yml", + "html": "broadcom-unpublished-source.html", + "text": "broadcom-unpublished-source.LICENSE" + }, + { + "license_key": "broadcom-wiced", + "spdx_license_key": "LicenseRef-scancode-broadcom-wiced", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "broadcom-wiced.json", + "yml": "broadcom-wiced.yml", + "html": "broadcom-wiced.html", + "text": "broadcom-wiced.LICENSE" + }, + { + "license_key": "broadleaf-fair-use", + "spdx_license_key": "LicenseRef-scancode-broadleaf-fair-use", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "broadleaf-fair-use.json", + "yml": "broadleaf-fair-use.yml", + "html": "broadleaf-fair-use.html", + "text": "broadleaf-fair-use.LICENSE" + }, + { + "license_key": "brocade-firmware", + "spdx_license_key": "LicenseRef-scancode-brocade-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "brocade-firmware.json", + "yml": "brocade-firmware.yml", + "html": "brocade-firmware.html", + "text": "brocade-firmware.LICENSE" + }, + { + "license_key": "bruno-podetti", + "spdx_license_key": "LicenseRef-scancode-bruno-podetti", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bruno-podetti.json", + "yml": "bruno-podetti.yml", + "html": "bruno-podetti.html", + "text": "bruno-podetti.LICENSE" + }, + { + "license_key": "bsd-1-clause-build", + "spdx_license_key": "LicenseRef-scancode-bsd-1-clause-build", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-1-clause-build.json", + "yml": "bsd-1-clause-build.yml", + "html": "bsd-1-clause-build.html", + "text": "bsd-1-clause-build.LICENSE" + }, + { + "license_key": "bsd-1-clause", + "spdx_license_key": "BSD-1-Clause", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-1-clause.json", + "yml": "bsd-1-clause.yml", + "html": "bsd-1-clause.html", + "text": "bsd-1-clause.LICENSE" + }, + { + "license_key": "bsd-1988", + "spdx_license_key": "LicenseRef-scancode-bsd-1988", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-1988.json", + "yml": "bsd-1988.yml", + "html": "bsd-1988.html", + "text": "bsd-1988.LICENSE" + }, + { + "license_key": "bsd-2-clause-freebsd", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "bsd-2-clause-freebsd.json", + "yml": "bsd-2-clause-freebsd.yml", + "html": "bsd-2-clause-freebsd.html", + "text": "bsd-2-clause-freebsd.LICENSE" + }, + { + "license_key": "bsd-2-clause-netbsd", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "bsd-2-clause-netbsd.json", + "yml": "bsd-2-clause-netbsd.yml", + "html": "bsd-2-clause-netbsd.html", + "text": "bsd-2-clause-netbsd.LICENSE" + }, + { + "license_key": "bsd-2-clause-plus-advertizing", + "spdx_license_key": "LicenseRef-scancode-bsd-2-clause-plus-advertizing", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-2-clause-plus-advertizing.json", + "yml": "bsd-2-clause-plus-advertizing.yml", + "html": "bsd-2-clause-plus-advertizing.html", + "text": "bsd-2-clause-plus-advertizing.LICENSE" + }, + { + "license_key": "bsd-2-clause-views", + "spdx_license_key": "BSD-2-Clause-Views", + "other_spdx_license_keys": [ + "BSD-2-Clause-FreeBSD" + ], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-2-clause-views.json", + "yml": "bsd-2-clause-views.yml", + "html": "bsd-2-clause-views.html", + "text": "bsd-2-clause-views.LICENSE" + }, + { + "license_key": "bsd-3-clause-devine", + "spdx_license_key": "LicenseRef-scancode-bsd-3-clause-devine", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-3-clause-devine.json", + "yml": "bsd-3-clause-devine.yml", + "html": "bsd-3-clause-devine.html", + "text": "bsd-3-clause-devine.LICENSE" + }, + { + "license_key": "bsd-3-clause-fda", + "spdx_license_key": "LicenseRef-scancode-bsd-3-clause-fda", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-3-clause-fda.json", + "yml": "bsd-3-clause-fda.yml", + "html": "bsd-3-clause-fda.html", + "text": "bsd-3-clause-fda.LICENSE" + }, + { + "license_key": "bsd-3-clause-jtag", + "spdx_license_key": "LicenseRef-scancode-bsd-3-clause-jtag", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-3-clause-jtag.json", + "yml": "bsd-3-clause-jtag.yml", + "html": "bsd-3-clause-jtag.html", + "text": "bsd-3-clause-jtag.LICENSE" + }, + { + "license_key": "bsd-3-clause-no-change", + "spdx_license_key": "LicenseRef-scancode-bsd-3-clause-no-change", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-3-clause-no-change.json", + "yml": "bsd-3-clause-no-change.yml", + "html": "bsd-3-clause-no-change.html", + "text": "bsd-3-clause-no-change.LICENSE" + }, + { + "license_key": "bsd-3-clause-no-military", + "spdx_license_key": "LicenseRef-scancode-bsd-3-clause-no-military", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-3-clause-no-military.json", + "yml": "bsd-3-clause-no-military.yml", + "html": "bsd-3-clause-no-military.html", + "text": "bsd-3-clause-no-military.LICENSE" + }, + { + "license_key": "bsd-3-clause-no-nuclear-warranty", + "spdx_license_key": "BSD-3-Clause-No-Nuclear-Warranty", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-3-clause-no-nuclear-warranty.json", + "yml": "bsd-3-clause-no-nuclear-warranty.yml", + "html": "bsd-3-clause-no-nuclear-warranty.html", + "text": "bsd-3-clause-no-nuclear-warranty.LICENSE" + }, + { + "license_key": "bsd-3-clause-no-trademark", + "spdx_license_key": "LicenseRef-scancode-bsd-3-clause-no-trademark", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-3-clause-no-trademark.json", + "yml": "bsd-3-clause-no-trademark.yml", + "html": "bsd-3-clause-no-trademark.html", + "text": "bsd-3-clause-no-trademark.LICENSE" + }, + { + "license_key": "bsd-3-clause-open-mpi", + "spdx_license_key": "BSD-3-Clause-Open-MPI", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-3-clause-open-mpi.json", + "yml": "bsd-3-clause-open-mpi.yml", + "html": "bsd-3-clause-open-mpi.html", + "text": "bsd-3-clause-open-mpi.LICENSE" + }, + { + "license_key": "bsd-3-clause-sun", + "spdx_license_key": "LicenseRef-scancode-bsd-3-clause-sun", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-3-clause-sun.json", + "yml": "bsd-3-clause-sun.yml", + "html": "bsd-3-clause-sun.html", + "text": "bsd-3-clause-sun.LICENSE" + }, + { + "license_key": "bsd-4-clause-shortened", + "spdx_license_key": "BSD-4-Clause-Shortened", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-4-clause-shortened.json", + "yml": "bsd-4-clause-shortened.yml", + "html": "bsd-4-clause-shortened.html", + "text": "bsd-4-clause-shortened.LICENSE" + }, + { + "license_key": "bsd-ack-carrot2", + "spdx_license_key": "LicenseRef-scancode-bsd-ack-carrot2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-ack-carrot2.json", + "yml": "bsd-ack-carrot2.yml", + "html": "bsd-ack-carrot2.html", + "text": "bsd-ack-carrot2.LICENSE" + }, + { + "license_key": "bsd-ack", + "spdx_license_key": "BSD-3-Clause-Attribution", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-ack.json", + "yml": "bsd-ack.yml", + "html": "bsd-ack.html", + "text": "bsd-ack.LICENSE" + }, + { + "license_key": "bsd-artwork", + "spdx_license_key": "LicenseRef-scancode-bsd-artwork", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-artwork.json", + "yml": "bsd-artwork.yml", + "html": "bsd-artwork.html", + "text": "bsd-artwork.LICENSE" + }, + { + "license_key": "bsd-atmel", + "spdx_license_key": "LicenseRef-scancode-bsd-atmel", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-atmel.json", + "yml": "bsd-atmel.yml", + "html": "bsd-atmel.html", + "text": "bsd-atmel.LICENSE" + }, + { + "license_key": "bsd-axis-nomod", + "spdx_license_key": "LicenseRef-scancode-bsd-axis-nomod", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-axis-nomod.json", + "yml": "bsd-axis-nomod.yml", + "html": "bsd-axis-nomod.html", + "text": "bsd-axis-nomod.LICENSE" + }, + { + "license_key": "bsd-axis", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "bsd-axis.json", + "yml": "bsd-axis.yml", + "html": "bsd-axis.html", + "text": "bsd-axis.LICENSE" + }, + { + "license_key": "bsd-credit", + "spdx_license_key": "LicenseRef-scancode-bsd-credit", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-credit.json", + "yml": "bsd-credit.yml", + "html": "bsd-credit.html", + "text": "bsd-credit.LICENSE" + }, + { + "license_key": "bsd-dpt", + "spdx_license_key": "LicenseRef-scancode-bsd-dpt", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-dpt.json", + "yml": "bsd-dpt.yml", + "html": "bsd-dpt.html", + "text": "bsd-dpt.LICENSE" + }, + { + "license_key": "bsd-export", + "spdx_license_key": "LicenseRef-scancode-bsd-export", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-export.json", + "yml": "bsd-export.yml", + "html": "bsd-export.html", + "text": "bsd-export.LICENSE" + }, + { + "license_key": "bsd-innosys", + "spdx_license_key": "LicenseRef-scancode-bsd-innosys", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-innosys.json", + "yml": "bsd-innosys.yml", + "html": "bsd-innosys.html", + "text": "bsd-innosys.LICENSE" + }, + { + "license_key": "bsd-intel", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "bsd-intel.json", + "yml": "bsd-intel.yml", + "html": "bsd-intel.html", + "text": "bsd-intel.LICENSE" + }, + { + "license_key": "bsd-mylex", + "spdx_license_key": "LicenseRef-scancode-bsd-mylex", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-mylex.json", + "yml": "bsd-mylex.yml", + "html": "bsd-mylex.html", + "text": "bsd-mylex.LICENSE" + }, + { + "license_key": "bsd-new-derivative", + "spdx_license_key": "LicenseRef-scancode-bsd-new-derivative", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-new-derivative.json", + "yml": "bsd-new-derivative.yml", + "html": "bsd-new-derivative.html", + "text": "bsd-new-derivative.LICENSE" + }, + { + "license_key": "bsd-new-far-manager", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "bsd-new-far-manager.json", + "yml": "bsd-new-far-manager.yml", + "html": "bsd-new-far-manager.html", + "text": "bsd-new-far-manager.LICENSE" + }, + { + "license_key": "bsd-new-nomod", + "spdx_license_key": "LicenseRef-scancode-bsd-new-nomod", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-new-nomod.json", + "yml": "bsd-new-nomod.yml", + "html": "bsd-new-nomod.html", + "text": "bsd-new-nomod.LICENSE" + }, + { + "license_key": "bsd-new-tcpdump", + "spdx_license_key": "LicenseRef-scancode-bsd-new-tcpdump", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-new-tcpdump.json", + "yml": "bsd-new-tcpdump.yml", + "html": "bsd-new-tcpdump.html", + "text": "bsd-new-tcpdump.LICENSE" + }, + { + "license_key": "bsd-new", + "spdx_license_key": "BSD-3-Clause", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-new.json", + "yml": "bsd-new.yml", + "html": "bsd-new.html", + "text": "bsd-new.LICENSE" + }, + { + "license_key": "bsd-no-disclaimer-unmodified", + "spdx_license_key": "LicenseRef-scancode-bsd-no-disclaimer-unmodified", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-no-disclaimer-unmodified.json", + "yml": "bsd-no-disclaimer-unmodified.yml", + "html": "bsd-no-disclaimer-unmodified.html", + "text": "bsd-no-disclaimer-unmodified.LICENSE" + }, + { + "license_key": "bsd-no-disclaimer", + "spdx_license_key": "LicenseRef-scancode-bsd-no-disclaimer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-no-disclaimer.json", + "yml": "bsd-no-disclaimer.yml", + "html": "bsd-no-disclaimer.html", + "text": "bsd-no-disclaimer.LICENSE" + }, + { + "license_key": "bsd-no-mod", + "spdx_license_key": "LicenseRef-scancode-bsd-no-mod", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-no-mod.json", + "yml": "bsd-no-mod.yml", + "html": "bsd-no-mod.html", + "text": "bsd-no-mod.LICENSE" + }, + { + "license_key": "bsd-original-muscle", + "spdx_license_key": "LicenseRef-scancode-bsd-original-muscle", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-original-muscle.json", + "yml": "bsd-original-muscle.yml", + "html": "bsd-original-muscle.html", + "text": "bsd-original-muscle.LICENSE" + }, + { + "license_key": "bsd-original-uc-1986", + "spdx_license_key": "LicenseRef-scancode-bsd-original-uc-1986", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-original-uc-1986.json", + "yml": "bsd-original-uc-1986.yml", + "html": "bsd-original-uc-1986.html", + "text": "bsd-original-uc-1986.LICENSE" + }, + { + "license_key": "bsd-original-uc-1990", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "bsd-original-uc-1990.json", + "yml": "bsd-original-uc-1990.yml", + "html": "bsd-original-uc-1990.html", + "text": "bsd-original-uc-1990.LICENSE" + }, + { + "license_key": "bsd-original-uc", + "spdx_license_key": "BSD-4-Clause-UC", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-original-uc.json", + "yml": "bsd-original-uc.yml", + "html": "bsd-original-uc.html", + "text": "bsd-original-uc.LICENSE" + }, + { + "license_key": "bsd-original", + "spdx_license_key": "BSD-4-Clause", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-original.json", + "yml": "bsd-original.yml", + "html": "bsd-original.html", + "text": "bsd-original.LICENSE" + }, + { + "license_key": "bsd-plus-mod-notice", + "spdx_license_key": "LicenseRef-scancode-bsd-plus-mod-notice", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-plus-mod-notice.json", + "yml": "bsd-plus-mod-notice.yml", + "html": "bsd-plus-mod-notice.html", + "text": "bsd-plus-mod-notice.LICENSE" + }, + { + "license_key": "bsd-plus-patent", + "spdx_license_key": "BSD-2-Clause-Patent", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-plus-patent.json", + "yml": "bsd-plus-patent.yml", + "html": "bsd-plus-patent.html", + "text": "bsd-plus-patent.LICENSE" + }, + { + "license_key": "bsd-protection", + "spdx_license_key": "BSD-Protection", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-protection.json", + "yml": "bsd-protection.yml", + "html": "bsd-protection.html", + "text": "bsd-protection.LICENSE" + }, + { + "license_key": "bsd-simplified-darwin", + "spdx_license_key": "LicenseRef-scancode-bsd-simplified-darwin", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-simplified-darwin.json", + "yml": "bsd-simplified-darwin.yml", + "html": "bsd-simplified-darwin.html", + "text": "bsd-simplified-darwin.LICENSE" + }, + { + "license_key": "bsd-simplified-intel", + "spdx_license_key": "LicenseRef-scancode-bsd-simplified-intel", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-simplified-intel.json", + "yml": "bsd-simplified-intel.yml", + "html": "bsd-simplified-intel.html", + "text": "bsd-simplified-intel.LICENSE" + }, + { + "license_key": "bsd-simplified-source", + "spdx_license_key": "LicenseRef-scancode-bsd-simplified-source", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-simplified-source.json", + "yml": "bsd-simplified-source.yml", + "html": "bsd-simplified-source.html", + "text": "bsd-simplified-source.LICENSE" + }, + { + "license_key": "bsd-simplified", + "spdx_license_key": "BSD-2-Clause", + "other_spdx_license_keys": [ + "BSD-2-Clause-NetBSD", + "BSD-2" + ], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-simplified.json", + "yml": "bsd-simplified.yml", + "html": "bsd-simplified.html", + "text": "bsd-simplified.LICENSE" + }, + { + "license_key": "bsd-source-code", + "spdx_license_key": "BSD-Source-Code", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-source-code.json", + "yml": "bsd-source-code.yml", + "html": "bsd-source-code.html", + "text": "bsd-source-code.LICENSE" + }, + { + "license_key": "bsd-top-gpl-addition", + "spdx_license_key": "LicenseRef-scancode-bsd-top-gpl-addition", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-top-gpl-addition.json", + "yml": "bsd-top-gpl-addition.yml", + "html": "bsd-top-gpl-addition.html", + "text": "bsd-top-gpl-addition.LICENSE" + }, + { + "license_key": "bsd-top", + "spdx_license_key": "LicenseRef-scancode-bsd-top", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-top.json", + "yml": "bsd-top.yml", + "html": "bsd-top.html", + "text": "bsd-top.LICENSE" + }, + { + "license_key": "bsd-unchanged", + "spdx_license_key": "LicenseRef-scancode-bsd-unchanged", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-unchanged.json", + "yml": "bsd-unchanged.yml", + "html": "bsd-unchanged.html", + "text": "bsd-unchanged.LICENSE" + }, + { + "license_key": "bsd-unmodified", + "spdx_license_key": "LicenseRef-scancode-bsd-unmodified", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-unmodified.json", + "yml": "bsd-unmodified.yml", + "html": "bsd-unmodified.html", + "text": "bsd-unmodified.LICENSE" + }, + { + "license_key": "bsd-x11", + "spdx_license_key": "LicenseRef-scancode-bsd-x11", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-x11.json", + "yml": "bsd-x11.yml", + "html": "bsd-x11.html", + "text": "bsd-x11.LICENSE" + }, + { + "license_key": "bsd-zero", + "spdx_license_key": "0BSD", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-zero.json", + "yml": "bsd-zero.yml", + "html": "bsd-zero.html", + "text": "bsd-zero.LICENSE" + }, + { + "license_key": "bsl-1.0", + "spdx_license_key": "LicenseRef-scancode-bsl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsl-1.0.json", + "yml": "bsl-1.0.yml", + "html": "bsl-1.0.html", + "text": "bsl-1.0.LICENSE" + }, + { + "license_key": "bsl-1.1", + "spdx_license_key": "BUSL-1.1", + "other_spdx_license_keys": [ + "LicenseRef-scancode-bsl-1.1" + ], + "is_exception": false, + "is_deprecated": false, + "json": "bsl-1.1.json", + "yml": "bsl-1.1.yml", + "html": "bsl-1.1.html", + "text": "bsl-1.1.LICENSE" + }, + { + "license_key": "bsla", + "spdx_license_key": "LicenseRef-scancode-bsla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsla.json", + "yml": "bsla.yml", + "html": "bsla.html", + "text": "bsla.LICENSE" + }, + { + "license_key": "bugsense-sdk", + "spdx_license_key": "LicenseRef-scancode-bugsense-sdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bugsense-sdk.json", + "yml": "bugsense-sdk.yml", + "html": "bugsense-sdk.html", + "text": "bugsense-sdk.LICENSE" + }, + { + "license_key": "bytemark", + "spdx_license_key": "LicenseRef-scancode-bytemark", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bytemark.json", + "yml": "bytemark.yml", + "html": "bytemark.html", + "text": "bytemark.LICENSE" + }, + { + "license_key": "bzip2-libbzip-1.0.5", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "bzip2-libbzip-1.0.5.json", + "yml": "bzip2-libbzip-1.0.5.yml", + "html": "bzip2-libbzip-1.0.5.html", + "text": "bzip2-libbzip-1.0.5.LICENSE" + }, + { + "license_key": "bzip2-libbzip-2010", + "spdx_license_key": "bzip2-1.0.6", + "other_spdx_license_keys": [ + "bzip2-1.0.5" + ], + "is_exception": false, + "is_deprecated": false, + "json": "bzip2-libbzip-2010.json", + "yml": "bzip2-libbzip-2010.yml", + "html": "bzip2-libbzip-2010.html", + "text": "bzip2-libbzip-2010.LICENSE" + }, + { + "license_key": "c-fsl-1.1", + "spdx_license_key": "LicenseRef-scancode-c-fsl-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "c-fsl-1.1.json", + "yml": "c-fsl-1.1.yml", + "html": "c-fsl-1.1.html", + "text": "c-fsl-1.1.LICENSE" + }, + { + "license_key": "c-uda-1.0", + "spdx_license_key": "C-UDA-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "c-uda-1.0.json", + "yml": "c-uda-1.0.yml", + "html": "c-uda-1.0.html", + "text": "c-uda-1.0.LICENSE" + }, + { + "license_key": "ca-tosl-1.1", + "spdx_license_key": "CATOSL-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ca-tosl-1.1.json", + "yml": "ca-tosl-1.1.yml", + "html": "ca-tosl-1.1.html", + "text": "ca-tosl-1.1.LICENSE" + }, + { + "license_key": "cal-1.0-combined-work-exception", + "spdx_license_key": "CAL-1.0-Combined-Work-Exception", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cal-1.0-combined-work-exception.json", + "yml": "cal-1.0-combined-work-exception.yml", + "html": "cal-1.0-combined-work-exception.html", + "text": "cal-1.0-combined-work-exception.LICENSE" + }, + { + "license_key": "cal-1.0", + "spdx_license_key": "CAL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cal-1.0.json", + "yml": "cal-1.0.yml", + "html": "cal-1.0.html", + "text": "cal-1.0.LICENSE" + }, + { + "license_key": "caldera", + "spdx_license_key": "Caldera", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "caldera.json", + "yml": "caldera.yml", + "html": "caldera.html", + "text": "caldera.LICENSE" + }, + { + "license_key": "can-ogl-2.0-en", + "spdx_license_key": "OGL-Canada-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "can-ogl-2.0-en.json", + "yml": "can-ogl-2.0-en.yml", + "html": "can-ogl-2.0-en.html", + "text": "can-ogl-2.0-en.LICENSE" + }, + { + "license_key": "can-ogl-alberta-2.1", + "spdx_license_key": "LicenseRef-scancode-can-ogl-alberta-2.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "can-ogl-alberta-2.1.json", + "yml": "can-ogl-alberta-2.1.yml", + "html": "can-ogl-alberta-2.1.html", + "text": "can-ogl-alberta-2.1.LICENSE" + }, + { + "license_key": "can-ogl-british-columbia-2.0", + "spdx_license_key": "LicenseRef-scancode-can-ogl-british-columbia-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "can-ogl-british-columbia-2.0.json", + "yml": "can-ogl-british-columbia-2.0.yml", + "html": "can-ogl-british-columbia-2.0.html", + "text": "can-ogl-british-columbia-2.0.LICENSE" + }, + { + "license_key": "can-ogl-nova-scotia-1.0", + "spdx_license_key": "LicenseRef-scancode-can-ogl-nova-scotia-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "can-ogl-nova-scotia-1.0.json", + "yml": "can-ogl-nova-scotia-1.0.yml", + "html": "can-ogl-nova-scotia-1.0.html", + "text": "can-ogl-nova-scotia-1.0.LICENSE" + }, + { + "license_key": "can-ogl-ontario-1.0", + "spdx_license_key": "LicenseRef-scancode-can-ogl-ontario-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "can-ogl-ontario-1.0.json", + "yml": "can-ogl-ontario-1.0.yml", + "html": "can-ogl-ontario-1.0.html", + "text": "can-ogl-ontario-1.0.LICENSE" + }, + { + "license_key": "can-ogl-toronto-1.0", + "spdx_license_key": "LicenseRef-scancode-can-ogl-toronto-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "can-ogl-toronto-1.0.json", + "yml": "can-ogl-toronto-1.0.yml", + "html": "can-ogl-toronto-1.0.html", + "text": "can-ogl-toronto-1.0.LICENSE" + }, + { + "license_key": "careware", + "spdx_license_key": "LicenseRef-scancode-careware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "careware.json", + "yml": "careware.yml", + "html": "careware.html", + "text": "careware.LICENSE" + }, + { + "license_key": "carnegie-mellon-contributors", + "spdx_license_key": "LicenseRef-scancode-carnegie-mellon-contributors", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "carnegie-mellon-contributors.json", + "yml": "carnegie-mellon-contributors.yml", + "html": "carnegie-mellon-contributors.html", + "text": "carnegie-mellon-contributors.LICENSE" + }, + { + "license_key": "carnegie-mellon", + "spdx_license_key": "LicenseRef-scancode-carnegie-mellon", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "carnegie-mellon.json", + "yml": "carnegie-mellon.yml", + "html": "carnegie-mellon.html", + "text": "carnegie-mellon.LICENSE" + }, + { + "license_key": "cavium-malloc", + "spdx_license_key": "LicenseRef-scancode-cavium-malloc", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cavium-malloc.json", + "yml": "cavium-malloc.yml", + "html": "cavium-malloc.html", + "text": "cavium-malloc.LICENSE" + }, + { + "license_key": "cavium-targeted-hardware", + "spdx_license_key": "LicenseRef-scancode-cavium-targeted-hardware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cavium-targeted-hardware.json", + "yml": "cavium-targeted-hardware.yml", + "html": "cavium-targeted-hardware.html", + "text": "cavium-targeted-hardware.LICENSE" + }, + { + "license_key": "cc-by-1.0", + "spdx_license_key": "CC-BY-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-1.0.json", + "yml": "cc-by-1.0.yml", + "html": "cc-by-1.0.html", + "text": "cc-by-1.0.LICENSE" + }, + { + "license_key": "cc-by-2.0-uk", + "spdx_license_key": "LicenseRef-scancode-cc-by-2.0-uk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-2.0-uk.json", + "yml": "cc-by-2.0-uk.yml", + "html": "cc-by-2.0-uk.html", + "text": "cc-by-2.0-uk.LICENSE" + }, + { + "license_key": "cc-by-2.0", + "spdx_license_key": "CC-BY-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-2.0.json", + "yml": "cc-by-2.0.yml", + "html": "cc-by-2.0.html", + "text": "cc-by-2.0.LICENSE" + }, + { + "license_key": "cc-by-2.5", + "spdx_license_key": "CC-BY-2.5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-2.5.json", + "yml": "cc-by-2.5.yml", + "html": "cc-by-2.5.html", + "text": "cc-by-2.5.LICENSE" + }, + { + "license_key": "cc-by-3.0-us", + "spdx_license_key": "CC-BY-3.0-US", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-3.0-us.json", + "yml": "cc-by-3.0-us.yml", + "html": "cc-by-3.0-us.html", + "text": "cc-by-3.0-us.LICENSE" + }, + { + "license_key": "cc-by-3.0", + "spdx_license_key": "CC-BY-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-3.0.json", + "yml": "cc-by-3.0.yml", + "html": "cc-by-3.0.html", + "text": "cc-by-3.0.LICENSE" + }, + { + "license_key": "cc-by-4.0", + "spdx_license_key": "CC-BY-4.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-4.0.json", + "yml": "cc-by-4.0.yml", + "html": "cc-by-4.0.html", + "text": "cc-by-4.0.LICENSE" + }, + { + "license_key": "cc-by-nc-1.0", + "spdx_license_key": "CC-BY-NC-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-1.0.json", + "yml": "cc-by-nc-1.0.yml", + "html": "cc-by-nc-1.0.html", + "text": "cc-by-nc-1.0.LICENSE" + }, + { + "license_key": "cc-by-nc-2.0", + "spdx_license_key": "CC-BY-NC-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-2.0.json", + "yml": "cc-by-nc-2.0.yml", + "html": "cc-by-nc-2.0.html", + "text": "cc-by-nc-2.0.LICENSE" + }, + { + "license_key": "cc-by-nc-2.5", + "spdx_license_key": "CC-BY-NC-2.5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-2.5.json", + "yml": "cc-by-nc-2.5.yml", + "html": "cc-by-nc-2.5.html", + "text": "cc-by-nc-2.5.LICENSE" + }, + { + "license_key": "cc-by-nc-3.0", + "spdx_license_key": "CC-BY-NC-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-3.0.json", + "yml": "cc-by-nc-3.0.yml", + "html": "cc-by-nc-3.0.html", + "text": "cc-by-nc-3.0.LICENSE" + }, + { + "license_key": "cc-by-nc-4.0", + "spdx_license_key": "CC-BY-NC-4.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-4.0.json", + "yml": "cc-by-nc-4.0.yml", + "html": "cc-by-nc-4.0.html", + "text": "cc-by-nc-4.0.LICENSE" + }, + { + "license_key": "cc-by-nc-nd-1.0", + "spdx_license_key": "CC-BY-NC-ND-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-nd-1.0.json", + "yml": "cc-by-nc-nd-1.0.yml", + "html": "cc-by-nc-nd-1.0.html", + "text": "cc-by-nc-nd-1.0.LICENSE" + }, + { + "license_key": "cc-by-nc-nd-2.0-au", + "spdx_license_key": "LicenseRef-scancode-cc-by-nc-nd-2.0-au", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-nd-2.0-au.json", + "yml": "cc-by-nc-nd-2.0-au.yml", + "html": "cc-by-nc-nd-2.0-au.html", + "text": "cc-by-nc-nd-2.0-au.LICENSE" + }, + { + "license_key": "cc-by-nc-nd-2.0", + "spdx_license_key": "CC-BY-NC-ND-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-nd-2.0.json", + "yml": "cc-by-nc-nd-2.0.yml", + "html": "cc-by-nc-nd-2.0.html", + "text": "cc-by-nc-nd-2.0.LICENSE" + }, + { + "license_key": "cc-by-nc-nd-2.5", + "spdx_license_key": "CC-BY-NC-ND-2.5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-nd-2.5.json", + "yml": "cc-by-nc-nd-2.5.yml", + "html": "cc-by-nc-nd-2.5.html", + "text": "cc-by-nc-nd-2.5.LICENSE" + }, + { + "license_key": "cc-by-nc-nd-3.0-igo", + "spdx_license_key": "CC-BY-NC-ND-3.0-IGO", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-nd-3.0-igo.json", + "yml": "cc-by-nc-nd-3.0-igo.yml", + "html": "cc-by-nc-nd-3.0-igo.html", + "text": "cc-by-nc-nd-3.0-igo.LICENSE" + }, + { + "license_key": "cc-by-nc-nd-3.0", + "spdx_license_key": "CC-BY-NC-ND-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-nd-3.0.json", + "yml": "cc-by-nc-nd-3.0.yml", + "html": "cc-by-nc-nd-3.0.html", + "text": "cc-by-nc-nd-3.0.LICENSE" + }, + { + "license_key": "cc-by-nc-nd-4.0", + "spdx_license_key": "CC-BY-NC-ND-4.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-nd-4.0.json", + "yml": "cc-by-nc-nd-4.0.yml", + "html": "cc-by-nc-nd-4.0.html", + "text": "cc-by-nc-nd-4.0.LICENSE" + }, + { + "license_key": "cc-by-nc-sa-1.0", + "spdx_license_key": "CC-BY-NC-SA-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-sa-1.0.json", + "yml": "cc-by-nc-sa-1.0.yml", + "html": "cc-by-nc-sa-1.0.html", + "text": "cc-by-nc-sa-1.0.LICENSE" + }, + { + "license_key": "cc-by-nc-sa-2.0", + "spdx_license_key": "CC-BY-NC-SA-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-sa-2.0.json", + "yml": "cc-by-nc-sa-2.0.yml", + "html": "cc-by-nc-sa-2.0.html", + "text": "cc-by-nc-sa-2.0.LICENSE" + }, + { + "license_key": "cc-by-nc-sa-2.5", + "spdx_license_key": "CC-BY-NC-SA-2.5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-sa-2.5.json", + "yml": "cc-by-nc-sa-2.5.yml", + "html": "cc-by-nc-sa-2.5.html", + "text": "cc-by-nc-sa-2.5.LICENSE" + }, + { + "license_key": "cc-by-nc-sa-3.0-us", + "spdx_license_key": "LicenseRef-scancode-cc-by-nc-sa-3.0-us", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-sa-3.0-us.json", + "yml": "cc-by-nc-sa-3.0-us.yml", + "html": "cc-by-nc-sa-3.0-us.html", + "text": "cc-by-nc-sa-3.0-us.LICENSE" + }, + { + "license_key": "cc-by-nc-sa-3.0", + "spdx_license_key": "CC-BY-NC-SA-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-sa-3.0.json", + "yml": "cc-by-nc-sa-3.0.yml", + "html": "cc-by-nc-sa-3.0.html", + "text": "cc-by-nc-sa-3.0.LICENSE" + }, + { + "license_key": "cc-by-nc-sa-4.0", + "spdx_license_key": "CC-BY-NC-SA-4.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-sa-4.0.json", + "yml": "cc-by-nc-sa-4.0.yml", + "html": "cc-by-nc-sa-4.0.html", + "text": "cc-by-nc-sa-4.0.LICENSE" + }, + { + "license_key": "cc-by-nd-1.0", + "spdx_license_key": "CC-BY-ND-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nd-1.0.json", + "yml": "cc-by-nd-1.0.yml", + "html": "cc-by-nd-1.0.html", + "text": "cc-by-nd-1.0.LICENSE" + }, + { + "license_key": "cc-by-nd-2.0", + "spdx_license_key": "CC-BY-ND-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nd-2.0.json", + "yml": "cc-by-nd-2.0.yml", + "html": "cc-by-nd-2.0.html", + "text": "cc-by-nd-2.0.LICENSE" + }, + { + "license_key": "cc-by-nd-2.5", + "spdx_license_key": "CC-BY-ND-2.5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nd-2.5.json", + "yml": "cc-by-nd-2.5.yml", + "html": "cc-by-nd-2.5.html", + "text": "cc-by-nd-2.5.LICENSE" + }, + { + "license_key": "cc-by-nd-3.0", + "spdx_license_key": "CC-BY-ND-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nd-3.0.json", + "yml": "cc-by-nd-3.0.yml", + "html": "cc-by-nd-3.0.html", + "text": "cc-by-nd-3.0.LICENSE" + }, + { + "license_key": "cc-by-nd-4.0", + "spdx_license_key": "CC-BY-ND-4.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nd-4.0.json", + "yml": "cc-by-nd-4.0.yml", + "html": "cc-by-nd-4.0.html", + "text": "cc-by-nd-4.0.LICENSE" + }, + { + "license_key": "cc-by-sa-1.0", + "spdx_license_key": "CC-BY-SA-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-sa-1.0.json", + "yml": "cc-by-sa-1.0.yml", + "html": "cc-by-sa-1.0.html", + "text": "cc-by-sa-1.0.LICENSE" + }, + { + "license_key": "cc-by-sa-2.0-uk", + "spdx_license_key": "CC-BY-SA-2.0-UK", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-sa-2.0-uk.json", + "yml": "cc-by-sa-2.0-uk.yml", + "html": "cc-by-sa-2.0-uk.html", + "text": "cc-by-sa-2.0-uk.LICENSE" + }, + { + "license_key": "cc-by-sa-2.0", + "spdx_license_key": "CC-BY-SA-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-sa-2.0.json", + "yml": "cc-by-sa-2.0.yml", + "html": "cc-by-sa-2.0.html", + "text": "cc-by-sa-2.0.LICENSE" + }, + { + "license_key": "cc-by-sa-2.5", + "spdx_license_key": "CC-BY-SA-2.5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-sa-2.5.json", + "yml": "cc-by-sa-2.5.yml", + "html": "cc-by-sa-2.5.html", + "text": "cc-by-sa-2.5.LICENSE" + }, + { + "license_key": "cc-by-sa-3.0", + "spdx_license_key": "CC-BY-SA-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-sa-3.0.json", + "yml": "cc-by-sa-3.0.yml", + "html": "cc-by-sa-3.0.html", + "text": "cc-by-sa-3.0.LICENSE" + }, + { + "license_key": "cc-by-sa-4.0", + "spdx_license_key": "CC-BY-SA-4.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-sa-4.0.json", + "yml": "cc-by-sa-4.0.yml", + "html": "cc-by-sa-4.0.html", + "text": "cc-by-sa-4.0.LICENSE" + }, + { + "license_key": "cc-devnations-2.0", + "spdx_license_key": "LicenseRef-scancode-cc-devnations-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-devnations-2.0.json", + "yml": "cc-devnations-2.0.yml", + "html": "cc-devnations-2.0.html", + "text": "cc-devnations-2.0.LICENSE" + }, + { + "license_key": "cc-nc-sampling-plus-1.0", + "spdx_license_key": "LicenseRef-scancode-cc-nc-sampling-plus-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-nc-sampling-plus-1.0.json", + "yml": "cc-nc-sampling-plus-1.0.yml", + "html": "cc-nc-sampling-plus-1.0.html", + "text": "cc-nc-sampling-plus-1.0.LICENSE" + }, + { + "license_key": "cc-pd", + "spdx_license_key": "CC-PDDC", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-pd.json", + "yml": "cc-pd.yml", + "html": "cc-pd.html", + "text": "cc-pd.LICENSE" + }, + { + "license_key": "cc-pdm-1.0", + "spdx_license_key": "LicenseRef-scancode-cc-pdm-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-pdm-1.0.json", + "yml": "cc-pdm-1.0.yml", + "html": "cc-pdm-1.0.html", + "text": "cc-pdm-1.0.LICENSE" + }, + { + "license_key": "cc-sampling-1.0", + "spdx_license_key": "LicenseRef-scancode-cc-sampling-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-sampling-1.0.json", + "yml": "cc-sampling-1.0.yml", + "html": "cc-sampling-1.0.html", + "text": "cc-sampling-1.0.LICENSE" + }, + { + "license_key": "cc-sampling-plus-1.0", + "spdx_license_key": "LicenseRef-scancode-cc-sampling-plus-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-sampling-plus-1.0.json", + "yml": "cc-sampling-plus-1.0.yml", + "html": "cc-sampling-plus-1.0.html", + "text": "cc-sampling-plus-1.0.LICENSE" + }, + { + "license_key": "cc0-1.0", + "spdx_license_key": "CC0-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc0-1.0.json", + "yml": "cc0-1.0.yml", + "html": "cc0-1.0.html", + "text": "cc0-1.0.LICENSE" + }, + { + "license_key": "ccrc-1.0", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "ccrc-1.0.json", + "yml": "ccrc-1.0.yml", + "html": "ccrc-1.0.html", + "text": "ccrc-1.0.LICENSE" + }, + { + "license_key": "cddl-1.0", + "spdx_license_key": "CDDL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cddl-1.0.json", + "yml": "cddl-1.0.yml", + "html": "cddl-1.0.html", + "text": "cddl-1.0.LICENSE" + }, + { + "license_key": "cddl-1.1", + "spdx_license_key": "CDDL-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cddl-1.1.json", + "yml": "cddl-1.1.yml", + "html": "cddl-1.1.html", + "text": "cddl-1.1.LICENSE" + }, + { + "license_key": "cdla-permissive-1.0", + "spdx_license_key": "CDLA-Permissive-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cdla-permissive-1.0.json", + "yml": "cdla-permissive-1.0.yml", + "html": "cdla-permissive-1.0.html", + "text": "cdla-permissive-1.0.LICENSE" + }, + { + "license_key": "cdla-sharing-1.0", + "spdx_license_key": "CDLA-Sharing-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cdla-sharing-1.0.json", + "yml": "cdla-sharing-1.0.yml", + "html": "cdla-sharing-1.0.html", + "text": "cdla-sharing-1.0.LICENSE" + }, + { + "license_key": "cecill-1.0", + "spdx_license_key": "CECILL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cecill-1.0.json", + "yml": "cecill-1.0.yml", + "html": "cecill-1.0.html", + "text": "cecill-1.0.LICENSE" + }, + { + "license_key": "cecill-1.1", + "spdx_license_key": "CECILL-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cecill-1.1.json", + "yml": "cecill-1.1.yml", + "html": "cecill-1.1.html", + "text": "cecill-1.1.LICENSE" + }, + { + "license_key": "cecill-2.0", + "spdx_license_key": "CECILL-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cecill-2.0.json", + "yml": "cecill-2.0.yml", + "html": "cecill-2.0.html", + "text": "cecill-2.0.LICENSE" + }, + { + "license_key": "cecill-2.1", + "spdx_license_key": "CECILL-2.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cecill-2.1.json", + "yml": "cecill-2.1.yml", + "html": "cecill-2.1.html", + "text": "cecill-2.1.LICENSE" + }, + { + "license_key": "cecill-b", + "spdx_license_key": "CECILL-B", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cecill-b.json", + "yml": "cecill-b.yml", + "html": "cecill-b.html", + "text": "cecill-b.LICENSE" + }, + { + "license_key": "cecill-c", + "spdx_license_key": "CECILL-C", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cecill-c.json", + "yml": "cecill-c.yml", + "html": "cecill-c.html", + "text": "cecill-c.LICENSE" + }, + { + "license_key": "cern-ohl-1.1", + "spdx_license_key": "CERN-OHL-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cern-ohl-1.1.json", + "yml": "cern-ohl-1.1.yml", + "html": "cern-ohl-1.1.html", + "text": "cern-ohl-1.1.LICENSE" + }, + { + "license_key": "cern-ohl-1.2", + "spdx_license_key": "CERN-OHL-1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cern-ohl-1.2.json", + "yml": "cern-ohl-1.2.yml", + "html": "cern-ohl-1.2.html", + "text": "cern-ohl-1.2.LICENSE" + }, + { + "license_key": "cern-ohl-p-2.0", + "spdx_license_key": "CERN-OHL-P-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cern-ohl-p-2.0.json", + "yml": "cern-ohl-p-2.0.yml", + "html": "cern-ohl-p-2.0.html", + "text": "cern-ohl-p-2.0.LICENSE" + }, + { + "license_key": "cern-ohl-s-2.0", + "spdx_license_key": "CERN-OHL-S-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cern-ohl-s-2.0.json", + "yml": "cern-ohl-s-2.0.yml", + "html": "cern-ohl-s-2.0.html", + "text": "cern-ohl-s-2.0.LICENSE" + }, + { + "license_key": "cern-ohl-w-2.0", + "spdx_license_key": "CERN-OHL-W-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cern-ohl-w-2.0.json", + "yml": "cern-ohl-w-2.0.yml", + "html": "cern-ohl-w-2.0.html", + "text": "cern-ohl-w-2.0.LICENSE" + }, + { + "license_key": "cgic", + "spdx_license_key": "LicenseRef-scancode-cgic", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cgic.json", + "yml": "cgic.yml", + "html": "cgic.html", + "text": "cgic.LICENSE" + }, + { + "license_key": "chartdirector-6.0", + "spdx_license_key": "LicenseRef-scancode-chartdirector-6.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "chartdirector-6.0.json", + "yml": "chartdirector-6.0.yml", + "html": "chartdirector-6.0.html", + "text": "chartdirector-6.0.LICENSE" + }, + { + "license_key": "chicken-dl-0.2", + "spdx_license_key": "LicenseRef-scancode-chicken-dl-0.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "chicken-dl-0.2.json", + "yml": "chicken-dl-0.2.yml", + "html": "chicken-dl-0.2.html", + "text": "chicken-dl-0.2.LICENSE" + }, + { + "license_key": "chris-maunder", + "spdx_license_key": "LicenseRef-scancode-chris-maunder", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "chris-maunder.json", + "yml": "chris-maunder.yml", + "html": "chris-maunder.html", + "text": "chris-maunder.LICENSE" + }, + { + "license_key": "chris-stoy", + "spdx_license_key": "LicenseRef-scancode-chris-stoy", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "chris-stoy.json", + "yml": "chris-stoy.yml", + "html": "chris-stoy.html", + "text": "chris-stoy.LICENSE" + }, + { + "license_key": "christopher-velazquez", + "spdx_license_key": "LicenseRef-scancode-christopher-velazquez", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "christopher-velazquez.json", + "yml": "christopher-velazquez.yml", + "html": "christopher-velazquez.html", + "text": "christopher-velazquez.LICENSE" + }, + { + "license_key": "classic-vb", + "spdx_license_key": "LicenseRef-scancode-classic-vb", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "classic-vb.json", + "yml": "classic-vb.yml", + "html": "classic-vb.html", + "text": "classic-vb.LICENSE" + }, + { + "license_key": "classpath-exception-2.0", + "spdx_license_key": "Classpath-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "classpath-exception-2.0.json", + "yml": "classpath-exception-2.0.yml", + "html": "classpath-exception-2.0.html", + "text": "classpath-exception-2.0.LICENSE" + }, + { + "license_key": "classworlds", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "classworlds.json", + "yml": "classworlds.yml", + "html": "classworlds.html", + "text": "classworlds.LICENSE" + }, + { + "license_key": "clause-6-exception-lgpl-2.1", + "spdx_license_key": "LicenseRef-scancode-clause-6-exception-lgpl-2.1", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "clause-6-exception-lgpl-2.1.json", + "yml": "clause-6-exception-lgpl-2.1.yml", + "html": "clause-6-exception-lgpl-2.1.html", + "text": "clause-6-exception-lgpl-2.1.LICENSE" + }, + { + "license_key": "clear-bsd-1-clause", + "spdx_license_key": "LicenseRef-scancode-clear-bsd-1-clause", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "clear-bsd-1-clause.json", + "yml": "clear-bsd-1-clause.yml", + "html": "clear-bsd-1-clause.html", + "text": "clear-bsd-1-clause.LICENSE" + }, + { + "license_key": "clear-bsd", + "spdx_license_key": "BSD-3-Clause-Clear", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "clear-bsd.json", + "yml": "clear-bsd.yml", + "html": "clear-bsd.html", + "text": "clear-bsd.LICENSE" + }, + { + "license_key": "click-license", + "spdx_license_key": "LicenseRef-scancode-click-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "click-license.json", + "yml": "click-license.yml", + "html": "click-license.html", + "text": "click-license.LICENSE" + }, + { + "license_key": "clisp-exception-2.0", + "spdx_license_key": "CLISP-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "clisp-exception-2.0.json", + "yml": "clisp-exception-2.0.yml", + "html": "clisp-exception-2.0.html", + "text": "clisp-exception-2.0.LICENSE" + }, + { + "license_key": "cloudera-express", + "spdx_license_key": "LicenseRef-scancode-cloudera-express", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cloudera-express.json", + "yml": "cloudera-express.yml", + "html": "cloudera-express.html", + "text": "cloudera-express.LICENSE" + }, + { + "license_key": "cmigemo", + "spdx_license_key": "LicenseRef-scancode-cmigemo", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cmigemo.json", + "yml": "cmigemo.yml", + "html": "cmigemo.html", + "text": "cmigemo.LICENSE" + }, + { + "license_key": "cmr-no", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "cmr-no.json", + "yml": "cmr-no.yml", + "html": "cmr-no.html", + "text": "cmr-no.LICENSE" + }, + { + "license_key": "cmu-computing-services", + "spdx_license_key": "LicenseRef-scancode-cmu-computing-services", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cmu-computing-services.json", + "yml": "cmu-computing-services.yml", + "html": "cmu-computing-services.html", + "text": "cmu-computing-services.LICENSE" + }, + { + "license_key": "cmu-mit", + "spdx_license_key": "LicenseRef-scancode-cmu-mit", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cmu-mit.json", + "yml": "cmu-mit.yml", + "html": "cmu-mit.html", + "text": "cmu-mit.LICENSE" + }, + { + "license_key": "cmu-simple", + "spdx_license_key": "LicenseRef-scancode-cmu-simple", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cmu-simple.json", + "yml": "cmu-simple.yml", + "html": "cmu-simple.html", + "text": "cmu-simple.LICENSE" + }, + { + "license_key": "cmu-template", + "spdx_license_key": "LicenseRef-scancode-cmu-template", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cmu-template.json", + "yml": "cmu-template.yml", + "html": "cmu-template.html", + "text": "cmu-template.LICENSE" + }, + { + "license_key": "cmu-uc", + "spdx_license_key": "MIT-CMU", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cmu-uc.json", + "yml": "cmu-uc.yml", + "html": "cmu-uc.html", + "text": "cmu-uc.LICENSE" + }, + { + "license_key": "cnri-jython", + "spdx_license_key": "CNRI-Jython", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cnri-jython.json", + "yml": "cnri-jython.yml", + "html": "cnri-jython.html", + "text": "cnri-jython.LICENSE" + }, + { + "license_key": "cnri-python-1.6.1", + "spdx_license_key": "CNRI-Python-GPL-Compatible", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cnri-python-1.6.1.json", + "yml": "cnri-python-1.6.1.yml", + "html": "cnri-python-1.6.1.html", + "text": "cnri-python-1.6.1.LICENSE" + }, + { + "license_key": "cnri-python-1.6", + "spdx_license_key": "CNRI-Python", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cnri-python-1.6.json", + "yml": "cnri-python-1.6.yml", + "html": "cnri-python-1.6.html", + "text": "cnri-python-1.6.LICENSE" + }, + { + "license_key": "cockroach", + "spdx_license_key": "LicenseRef-scancode-cockroach", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cockroach.json", + "yml": "cockroach.yml", + "html": "cockroach.html", + "text": "cockroach.LICENSE" + }, + { + "license_key": "cockroachdb-use-grant-for-bsl-1.1", + "spdx_license_key": "LicenseRef-scancode-cockroachdb-use-grant-for-bsl-1.1", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "cockroachdb-use-grant-for-bsl-1.1.json", + "yml": "cockroachdb-use-grant-for-bsl-1.1.yml", + "html": "cockroachdb-use-grant-for-bsl-1.1.html", + "text": "cockroachdb-use-grant-for-bsl-1.1.LICENSE" + }, + { + "license_key": "codeguru-permissions", + "spdx_license_key": "LicenseRef-scancode-codeguru-permissions", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "codeguru-permissions.json", + "yml": "codeguru-permissions.yml", + "html": "codeguru-permissions.html", + "text": "codeguru-permissions.LICENSE" + }, + { + "license_key": "codexia", + "spdx_license_key": "LicenseRef-scancode-codexia", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "codexia.json", + "yml": "codexia.yml", + "html": "codexia.html", + "text": "codexia.LICENSE" + }, + { + "license_key": "cognitive-web-osl-1.1", + "spdx_license_key": "LicenseRef-scancode-cognitive-web-osl-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cognitive-web-osl-1.1.json", + "yml": "cognitive-web-osl-1.1.yml", + "html": "cognitive-web-osl-1.1.html", + "text": "cognitive-web-osl-1.1.LICENSE" + }, + { + "license_key": "colt", + "spdx_license_key": "LicenseRef-scancode-colt", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "colt.json", + "yml": "colt.yml", + "html": "colt.html", + "text": "colt.LICENSE" + }, + { + "license_key": "com-oreilly-servlet", + "spdx_license_key": "LicenseRef-scancode-com-oreilly-servlet", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "com-oreilly-servlet.json", + "yml": "com-oreilly-servlet.yml", + "html": "com-oreilly-servlet.html", + "text": "com-oreilly-servlet.LICENSE" + }, + { + "license_key": "commercial-license", + "spdx_license_key": "LicenseRef-scancode-commercial-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "commercial-license.json", + "yml": "commercial-license.yml", + "html": "commercial-license.html", + "text": "commercial-license.LICENSE" + }, + { + "license_key": "commercial-option", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "commercial-option.json", + "yml": "commercial-option.yml", + "html": "commercial-option.html", + "text": "commercial-option.LICENSE" + }, + { + "license_key": "commonj-timer", + "spdx_license_key": "LicenseRef-scancode-commonj-timer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "commonj-timer.json", + "yml": "commonj-timer.yml", + "html": "commonj-timer.html", + "text": "commonj-timer.LICENSE" + }, + { + "license_key": "commons-clause", + "spdx_license_key": "LicenseRef-scancode-commons-clause", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "commons-clause.json", + "yml": "commons-clause.yml", + "html": "commons-clause.html", + "text": "commons-clause.LICENSE" + }, + { + "license_key": "compass", + "spdx_license_key": "LicenseRef-scancode-compass", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "compass.json", + "yml": "compass.yml", + "html": "compass.html", + "text": "compass.LICENSE" + }, + { + "license_key": "componentace-jcraft", + "spdx_license_key": "LicenseRef-scancode-componentace-jcraft", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "componentace-jcraft.json", + "yml": "componentace-jcraft.yml", + "html": "componentace-jcraft.html", + "text": "componentace-jcraft.LICENSE" + }, + { + "license_key": "compuphase-linking-exception", + "spdx_license_key": "LicenseRef-scancode-compuphase-linking-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "compuphase-linking-exception.json", + "yml": "compuphase-linking-exception.yml", + "html": "compuphase-linking-exception.html", + "text": "compuphase-linking-exception.LICENSE" + }, + { + "license_key": "concursive-pl-1.0", + "spdx_license_key": "LicenseRef-scancode-concursive-pl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "concursive-pl-1.0.json", + "yml": "concursive-pl-1.0.yml", + "html": "concursive-pl-1.0.html", + "text": "concursive-pl-1.0.LICENSE" + }, + { + "license_key": "condor-1.1", + "spdx_license_key": "Condor-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "condor-1.1.json", + "yml": "condor-1.1.yml", + "html": "condor-1.1.html", + "text": "condor-1.1.LICENSE" + }, + { + "license_key": "confluent-community-1.0", + "spdx_license_key": "LicenseRef-scancode-confluent-community-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "confluent-community-1.0.json", + "yml": "confluent-community-1.0.yml", + "html": "confluent-community-1.0.html", + "text": "confluent-community-1.0.LICENSE" + }, + { + "license_key": "cooperative-non-violent-4.0", + "spdx_license_key": "LicenseRef-scancode-cooperative-non-violent-4.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cooperative-non-violent-4.0.json", + "yml": "cooperative-non-violent-4.0.yml", + "html": "cooperative-non-violent-4.0.html", + "text": "cooperative-non-violent-4.0.LICENSE" + }, + { + "license_key": "copyheart", + "spdx_license_key": "LicenseRef-scancode-copyheart", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "copyheart.json", + "yml": "copyheart.yml", + "html": "copyheart.html", + "text": "copyheart.LICENSE" + }, + { + "license_key": "copyleft-next-0.3.0", + "spdx_license_key": "copyleft-next-0.3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "copyleft-next-0.3.0.json", + "yml": "copyleft-next-0.3.0.yml", + "html": "copyleft-next-0.3.0.html", + "text": "copyleft-next-0.3.0.LICENSE" + }, + { + "license_key": "copyleft-next-0.3.1", + "spdx_license_key": "copyleft-next-0.3.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "copyleft-next-0.3.1.json", + "yml": "copyleft-next-0.3.1.yml", + "html": "copyleft-next-0.3.1.html", + "text": "copyleft-next-0.3.1.LICENSE" + }, + { + "license_key": "corporate-accountability-1.1", + "spdx_license_key": "LicenseRef-scancode-corporate-accountability-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "corporate-accountability-1.1.json", + "yml": "corporate-accountability-1.1.yml", + "html": "corporate-accountability-1.1.html", + "text": "corporate-accountability-1.1.LICENSE" + }, + { + "license_key": "corporate-accountability-commercial-1.1", + "spdx_license_key": "LicenseRef-scancode-corporate-accountability-commercial-1.1", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "corporate-accountability-commercial-1.1.json", + "yml": "corporate-accountability-commercial-1.1.yml", + "html": "corporate-accountability-commercial-1.1.html", + "text": "corporate-accountability-commercial-1.1.LICENSE" + }, + { + "license_key": "cosl", + "spdx_license_key": "LicenseRef-scancode-cosl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cosl.json", + "yml": "cosl.yml", + "html": "cosl.html", + "text": "cosl.LICENSE" + }, + { + "license_key": "cosli", + "spdx_license_key": "LicenseRef-scancode-cosli", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cosli.json", + "yml": "cosli.yml", + "html": "cosli.html", + "text": "cosli.LICENSE" + }, + { + "license_key": "couchbase-community", + "spdx_license_key": "LicenseRef-scancode-couchbase-community", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "couchbase-community.json", + "yml": "couchbase-community.yml", + "html": "couchbase-community.html", + "text": "couchbase-community.LICENSE" + }, + { + "license_key": "couchbase-enterprise", + "spdx_license_key": "LicenseRef-scancode-couchbase-enterprise", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "couchbase-enterprise.json", + "yml": "couchbase-enterprise.yml", + "html": "couchbase-enterprise.html", + "text": "couchbase-enterprise.LICENSE" + }, + { + "license_key": "cpal-1.0", + "spdx_license_key": "CPAL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cpal-1.0.json", + "yml": "cpal-1.0.yml", + "html": "cpal-1.0.html", + "text": "cpal-1.0.LICENSE" + }, + { + "license_key": "cpl-0.5", + "spdx_license_key": "LicenseRef-scancode-cpl-0.5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cpl-0.5.json", + "yml": "cpl-0.5.yml", + "html": "cpl-0.5.html", + "text": "cpl-0.5.LICENSE" + }, + { + "license_key": "cpl-1.0", + "spdx_license_key": "CPL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cpl-1.0.json", + "yml": "cpl-1.0.yml", + "html": "cpl-1.0.html", + "text": "cpl-1.0.LICENSE" + }, + { + "license_key": "cpol-1.02", + "spdx_license_key": "CPOL-1.02", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cpol-1.02.json", + "yml": "cpol-1.02.yml", + "html": "cpol-1.02.html", + "text": "cpol-1.02.LICENSE" + }, + { + "license_key": "cpp-core-guidelines", + "spdx_license_key": "LicenseRef-scancode-cpp-core-guidelines", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cpp-core-guidelines.json", + "yml": "cpp-core-guidelines.yml", + "html": "cpp-core-guidelines.html", + "text": "cpp-core-guidelines.LICENSE" + }, + { + "license_key": "crapl-0.1", + "spdx_license_key": "LicenseRef-scancode-crapl-0.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "crapl-0.1.json", + "yml": "crapl-0.1.yml", + "html": "crapl-0.1.html", + "text": "crapl-0.1.LICENSE" + }, + { + "license_key": "crashlytics-agreement-2018", + "spdx_license_key": "LicenseRef-scancode-crashlytics-agreement-2018", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "crashlytics-agreement-2018.json", + "yml": "crashlytics-agreement-2018.yml", + "html": "crashlytics-agreement-2018.html", + "text": "crashlytics-agreement-2018.LICENSE" + }, + { + "license_key": "crcalc", + "spdx_license_key": "LicenseRef-scancode-crcalc", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "crcalc.json", + "yml": "crcalc.yml", + "html": "crcalc.html", + "text": "crcalc.LICENSE" + }, + { + "license_key": "crossword", + "spdx_license_key": "Crossword", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "crossword.json", + "yml": "crossword.yml", + "html": "crossword.html", + "text": "crossword.LICENSE" + }, + { + "license_key": "crypto-keys-redistribution", + "spdx_license_key": "LicenseRef-scancode-crypto-keys-redistribution", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "crypto-keys-redistribution.json", + "yml": "crypto-keys-redistribution.yml", + "html": "crypto-keys-redistribution.html", + "text": "crypto-keys-redistribution.LICENSE" + }, + { + "license_key": "cryptopp", + "spdx_license_key": "LicenseRef-scancode-cryptopp", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cryptopp.json", + "yml": "cryptopp.yml", + "html": "cryptopp.html", + "text": "cryptopp.LICENSE" + }, + { + "license_key": "crystal-stacker", + "spdx_license_key": "CrystalStacker", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "crystal-stacker.json", + "yml": "crystal-stacker.yml", + "html": "crystal-stacker.html", + "text": "crystal-stacker.LICENSE" + }, + { + "license_key": "csla", + "spdx_license_key": "LicenseRef-scancode-csla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "csla.json", + "yml": "csla.yml", + "html": "csla.html", + "text": "csla.LICENSE" + }, + { + "license_key": "csprng", + "spdx_license_key": "LicenseRef-scancode-csprng", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "csprng.json", + "yml": "csprng.yml", + "html": "csprng.html", + "text": "csprng.LICENSE" + }, + { + "license_key": "cua-opl-1.0", + "spdx_license_key": "CUA-OPL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cua-opl-1.0.json", + "yml": "cua-opl-1.0.yml", + "html": "cua-opl-1.0.html", + "text": "cua-opl-1.0.LICENSE" + }, + { + "license_key": "cube", + "spdx_license_key": "Cube", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cube.json", + "yml": "cube.yml", + "html": "cube.html", + "text": "cube.LICENSE" + }, + { + "license_key": "cubiware-software-1.0", + "spdx_license_key": "LicenseRef-scancode-cubiware-software-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cubiware-software-1.0.json", + "yml": "cubiware-software-1.0.yml", + "html": "cubiware-software-1.0.html", + "text": "cubiware-software-1.0.LICENSE" + }, + { + "license_key": "cups", + "spdx_license_key": "LicenseRef-scancode-cups", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cups.json", + "yml": "cups.yml", + "html": "cups.html", + "text": "cups.LICENSE" + }, + { + "license_key": "curl", + "spdx_license_key": "curl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "curl.json", + "yml": "curl.yml", + "html": "curl.html", + "text": "curl.LICENSE" + }, + { + "license_key": "cve-tou", + "spdx_license_key": "LicenseRef-scancode-cve-tou", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cve-tou.json", + "yml": "cve-tou.yml", + "html": "cve-tou.html", + "text": "cve-tou.LICENSE" + }, + { + "license_key": "cvwl", + "spdx_license_key": "LicenseRef-scancode-cvwl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cvwl.json", + "yml": "cvwl.yml", + "html": "cvwl.html", + "text": "cvwl.LICENSE" + }, + { + "license_key": "cwe-tou", + "spdx_license_key": "LicenseRef-scancode-cwe-tou", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cwe-tou.json", + "yml": "cwe-tou.yml", + "html": "cwe-tou.html", + "text": "cwe-tou.LICENSE" + }, + { + "license_key": "cximage", + "spdx_license_key": "LicenseRef-scancode-cximage", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cximage.json", + "yml": "cximage.yml", + "html": "cximage.html", + "text": "cximage.LICENSE" + }, + { + "license_key": "cygwin-exception-2.0", + "spdx_license_key": "LicenseRef-scancode-cygwin-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "cygwin-exception-2.0.json", + "yml": "cygwin-exception-2.0.yml", + "html": "cygwin-exception-2.0.html", + "text": "cygwin-exception-2.0.LICENSE" + }, + { + "license_key": "cygwin-exception-3.0", + "spdx_license_key": "LicenseRef-scancode-cygwin-exception-3.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "cygwin-exception-3.0.json", + "yml": "cygwin-exception-3.0.yml", + "html": "cygwin-exception-3.0.html", + "text": "cygwin-exception-3.0.LICENSE" + }, + { + "license_key": "cygwin-exception-lgpl-3.0-plus", + "spdx_license_key": "LicenseRef-scancode-cygwin-exception-lgpl-3.0-plus", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "cygwin-exception-lgpl-3.0-plus.json", + "yml": "cygwin-exception-lgpl-3.0-plus.yml", + "html": "cygwin-exception-lgpl-3.0-plus.html", + "text": "cygwin-exception-lgpl-3.0-plus.LICENSE" + }, + { + "license_key": "d-fsl-1.0-en", + "spdx_license_key": "LicenseRef-scancode-d-fsl-1.0-en", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "d-fsl-1.0-en.json", + "yml": "d-fsl-1.0-en.yml", + "html": "d-fsl-1.0-en.html", + "text": "d-fsl-1.0-en.LICENSE" + }, + { + "license_key": "d-zlib", + "spdx_license_key": "LicenseRef-scancode-d-zlib", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "d-zlib.json", + "yml": "d-zlib.yml", + "html": "d-zlib.html", + "text": "d-zlib.LICENSE" + }, + { + "license_key": "damail", + "spdx_license_key": "LicenseRef-scancode-damail", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "damail.json", + "yml": "damail.yml", + "html": "damail.html", + "text": "damail.LICENSE" + }, + { + "license_key": "dante-treglia", + "spdx_license_key": "LicenseRef-scancode-dante-treglia", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dante-treglia.json", + "yml": "dante-treglia.yml", + "html": "dante-treglia.html", + "text": "dante-treglia.LICENSE" + }, + { + "license_key": "day-spec", + "spdx_license_key": "LicenseRef-scancode-day-spec", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "day-spec.json", + "yml": "day-spec.yml", + "html": "day-spec.html", + "text": "day-spec.LICENSE" + }, + { + "license_key": "dbad-1.1", + "spdx_license_key": "LicenseRef-scancode-dbad-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dbad-1.1.json", + "yml": "dbad-1.1.yml", + "html": "dbad-1.1.html", + "text": "dbad-1.1.LICENSE" + }, + { + "license_key": "dbad", + "spdx_license_key": "LicenseRef-scancode-dbad", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dbad.json", + "yml": "dbad.yml", + "html": "dbad.html", + "text": "dbad.LICENSE" + }, + { + "license_key": "dbcl-1.0", + "spdx_license_key": "LicenseRef-scancode-dbcl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dbcl-1.0.json", + "yml": "dbcl-1.0.yml", + "html": "dbcl-1.0.html", + "text": "dbcl-1.0.LICENSE" + }, + { + "license_key": "dco-1.1", + "spdx_license_key": "LicenseRef-scancode-dco-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dco-1.1.json", + "yml": "dco-1.1.yml", + "html": "dco-1.1.html", + "text": "dco-1.1.LICENSE" + }, + { + "license_key": "dejavu-font", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "dejavu-font.json", + "yml": "dejavu-font.yml", + "html": "dejavu-font.html", + "text": "dejavu-font.LICENSE" + }, + { + "license_key": "delorie-historical", + "spdx_license_key": "LicenseRef-scancode-delorie-historical", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "delorie-historical.json", + "yml": "delorie-historical.yml", + "html": "delorie-historical.html", + "text": "delorie-historical.LICENSE" + }, + { + "license_key": "dennis-ferguson", + "spdx_license_key": "LicenseRef-scancode-dennis-ferguson", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dennis-ferguson.json", + "yml": "dennis-ferguson.yml", + "html": "dennis-ferguson.html", + "text": "dennis-ferguson.LICENSE" + }, + { + "license_key": "devblocks-1.0", + "spdx_license_key": "LicenseRef-scancode-devblocks-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "devblocks-1.0.json", + "yml": "devblocks-1.0.yml", + "html": "devblocks-1.0.html", + "text": "devblocks-1.0.LICENSE" + }, + { + "license_key": "dgraph-cla", + "spdx_license_key": "LicenseRef-scancode-dgraph-cla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dgraph-cla.json", + "yml": "dgraph-cla.yml", + "html": "dgraph-cla.html", + "text": "dgraph-cla.LICENSE" + }, + { + "license_key": "dhtmlab-public", + "spdx_license_key": "LicenseRef-scancode-dhtmlab-public", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dhtmlab-public.json", + "yml": "dhtmlab-public.yml", + "html": "dhtmlab-public.html", + "text": "dhtmlab-public.LICENSE" + }, + { + "license_key": "diffmark", + "spdx_license_key": "diffmark", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "diffmark.json", + "yml": "diffmark.yml", + "html": "diffmark.html", + "text": "diffmark.LICENSE" + }, + { + "license_key": "digia-qt-commercial", + "spdx_license_key": "LicenseRef-scancode-digia-qt-commercial", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "digia-qt-commercial.json", + "yml": "digia-qt-commercial.yml", + "html": "digia-qt-commercial.html", + "text": "digia-qt-commercial.LICENSE" + }, + { + "license_key": "digia-qt-exception-lgpl-2.1", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "digia-qt-exception-lgpl-2.1.json", + "yml": "digia-qt-exception-lgpl-2.1.yml", + "html": "digia-qt-exception-lgpl-2.1.html", + "text": "digia-qt-exception-lgpl-2.1.LICENSE" + }, + { + "license_key": "digia-qt-preview", + "spdx_license_key": "LicenseRef-scancode-digia-qt-preview", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "digia-qt-preview.json", + "yml": "digia-qt-preview.yml", + "html": "digia-qt-preview.html", + "text": "digia-qt-preview.LICENSE" + }, + { + "license_key": "digirule-foss-exception", + "spdx_license_key": "DigiRule-FOSS-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "digirule-foss-exception.json", + "yml": "digirule-foss-exception.yml", + "html": "digirule-foss-exception.html", + "text": "digirule-foss-exception.LICENSE" + }, + { + "license_key": "divx-open-1.0", + "spdx_license_key": "LicenseRef-scancode-divx-open-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "divx-open-1.0.json", + "yml": "divx-open-1.0.yml", + "html": "divx-open-1.0.html", + "text": "divx-open-1.0.LICENSE" + }, + { + "license_key": "divx-open-2.1", + "spdx_license_key": "LicenseRef-scancode-divx-open-2.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "divx-open-2.1.json", + "yml": "divx-open-2.1.yml", + "html": "divx-open-2.1.html", + "text": "divx-open-2.1.LICENSE" + }, + { + "license_key": "dl-de-by-1-0-en", + "spdx_license_key": "LicenseRef-scancode-dl-de-by-1-0-en", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dl-de-by-1-0-en.json", + "yml": "dl-de-by-1-0-en.yml", + "html": "dl-de-by-1-0-en.html", + "text": "dl-de-by-1-0-en.LICENSE" + }, + { + "license_key": "dl-de-by-2-0-en", + "spdx_license_key": "LicenseRef-scancode-dl-de-by-2-0-en", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dl-de-by-2-0-en.json", + "yml": "dl-de-by-2-0-en.yml", + "html": "dl-de-by-2-0-en.html", + "text": "dl-de-by-2-0-en.LICENSE" + }, + { + "license_key": "dl-de-by-nc-1-0-en", + "spdx_license_key": "LicenseRef-scancode-dl-de-by-nc-1-0-en", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dl-de-by-nc-1-0-en.json", + "yml": "dl-de-by-nc-1-0-en.yml", + "html": "dl-de-by-nc-1-0-en.html", + "text": "dl-de-by-nc-1-0-en.LICENSE" + }, + { + "license_key": "dmalloc", + "spdx_license_key": "LicenseRef-scancode-dmalloc", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dmalloc.json", + "yml": "dmalloc.yml", + "html": "dmalloc.html", + "text": "dmalloc.LICENSE" + }, + { + "license_key": "do-no-harm-0.1", + "spdx_license_key": "LicenseRef-scancode-do-no-harm-0.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "do-no-harm-0.1.json", + "yml": "do-no-harm-0.1.yml", + "html": "do-no-harm-0.1.html", + "text": "do-no-harm-0.1.LICENSE" + }, + { + "license_key": "docbook", + "spdx_license_key": "LicenseRef-scancode-docbook", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "docbook.json", + "yml": "docbook.yml", + "html": "docbook.html", + "text": "docbook.LICENSE" + }, + { + "license_key": "dom4j", + "spdx_license_key": "Plexus", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dom4j.json", + "yml": "dom4j.yml", + "html": "dom4j.html", + "text": "dom4j.LICENSE" + }, + { + "license_key": "dotseqn", + "spdx_license_key": "Dotseqn", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dotseqn.json", + "yml": "dotseqn.yml", + "html": "dotseqn.html", + "text": "dotseqn.LICENSE" + }, + { + "license_key": "doug-lea", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "doug-lea.json", + "yml": "doug-lea.yml", + "html": "doug-lea.html", + "text": "doug-lea.LICENSE" + }, + { + "license_key": "douglas-young", + "spdx_license_key": "LicenseRef-scancode-douglas-young", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "douglas-young.json", + "yml": "douglas-young.yml", + "html": "douglas-young.html", + "text": "douglas-young.LICENSE" + }, + { + "license_key": "dpl-1.1", + "spdx_license_key": "LicenseRef-scancode-dpl-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dpl-1.1.json", + "yml": "dpl-1.1.yml", + "html": "dpl-1.1.html", + "text": "dpl-1.1.LICENSE" + }, + { + "license_key": "dr-john-maddock", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "dr-john-maddock.json", + "yml": "dr-john-maddock.yml", + "html": "dr-john-maddock.html", + "text": "dr-john-maddock.LICENSE" + }, + { + "license_key": "drl-1.0", + "spdx_license_key": "DRL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "drl-1.0.json", + "yml": "drl-1.0.yml", + "html": "drl-1.0.html", + "text": "drl-1.0.LICENSE" + }, + { + "license_key": "dropbear-2016", + "spdx_license_key": "LicenseRef-scancode-dropbear-2016", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dropbear-2016.json", + "yml": "dropbear-2016.yml", + "html": "dropbear-2016.html", + "text": "dropbear-2016.LICENSE" + }, + { + "license_key": "dropbear", + "spdx_license_key": "LicenseRef-scancode-dropbear", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dropbear.json", + "yml": "dropbear.yml", + "html": "dropbear.html", + "text": "dropbear.LICENSE" + }, + { + "license_key": "dsdp", + "spdx_license_key": "DSDP", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dsdp.json", + "yml": "dsdp.yml", + "html": "dsdp.html", + "text": "dsdp.LICENSE" + }, + { + "license_key": "dtree", + "spdx_license_key": "LicenseRef-scancode-dtree", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dtree.json", + "yml": "dtree.yml", + "html": "dtree.html", + "text": "dtree.LICENSE" + }, + { + "license_key": "dual-bsd-gpl", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "dual-bsd-gpl.json", + "yml": "dual-bsd-gpl.yml", + "html": "dual-bsd-gpl.html", + "text": "dual-bsd-gpl.LICENSE" + }, + { + "license_key": "dune-exception", + "spdx_license_key": "LicenseRef-scancode-dune-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "dune-exception.json", + "yml": "dune-exception.yml", + "html": "dune-exception.html", + "text": "dune-exception.LICENSE" + }, + { + "license_key": "dvipdfm", + "spdx_license_key": "dvipdfm", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dvipdfm.json", + "yml": "dvipdfm.yml", + "html": "dvipdfm.html", + "text": "dvipdfm.LICENSE" + }, + { + "license_key": "dwtfnmfpl-3.0", + "spdx_license_key": "LicenseRef-scancode-dwtfnmfpl-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dwtfnmfpl-3.0.json", + "yml": "dwtfnmfpl-3.0.yml", + "html": "dwtfnmfpl-3.0.html", + "text": "dwtfnmfpl-3.0.LICENSE" + }, + { + "license_key": "dynamic-drive-tou", + "spdx_license_key": "LicenseRef-scancode-dynamic-drive-tou", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dynamic-drive-tou.json", + "yml": "dynamic-drive-tou.yml", + "html": "dynamic-drive-tou.html", + "text": "dynamic-drive-tou.LICENSE" + }, + { + "license_key": "dynarch-developer", + "spdx_license_key": "LicenseRef-scancode-dynarch-developer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dynarch-developer.json", + "yml": "dynarch-developer.yml", + "html": "dynarch-developer.html", + "text": "dynarch-developer.LICENSE" + }, + { + "license_key": "dynarch-linkware", + "spdx_license_key": "LicenseRef-scancode-dynarch-linkware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dynarch-linkware.json", + "yml": "dynarch-linkware.yml", + "html": "dynarch-linkware.html", + "text": "dynarch-linkware.LICENSE" + }, + { + "license_key": "ecfonts-1.0", + "spdx_license_key": "LicenseRef-scancode-ecfonts-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ecfonts-1.0.json", + "yml": "ecfonts-1.0.yml", + "html": "ecfonts-1.0.html", + "text": "ecfonts-1.0.LICENSE" + }, + { + "license_key": "ecl-1.0", + "spdx_license_key": "ECL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ecl-1.0.json", + "yml": "ecl-1.0.yml", + "html": "ecl-1.0.html", + "text": "ecl-1.0.LICENSE" + }, + { + "license_key": "ecl-2.0", + "spdx_license_key": "ECL-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ecl-2.0.json", + "yml": "ecl-2.0.yml", + "html": "ecl-2.0.html", + "text": "ecl-2.0.LICENSE" + }, + { + "license_key": "eclipse-sua-2001", + "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2001", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "eclipse-sua-2001.json", + "yml": "eclipse-sua-2001.yml", + "html": "eclipse-sua-2001.html", + "text": "eclipse-sua-2001.LICENSE" + }, + { + "license_key": "eclipse-sua-2002", + "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2002", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "eclipse-sua-2002.json", + "yml": "eclipse-sua-2002.yml", + "html": "eclipse-sua-2002.html", + "text": "eclipse-sua-2002.LICENSE" + }, + { + "license_key": "eclipse-sua-2003", + "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2003", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "eclipse-sua-2003.json", + "yml": "eclipse-sua-2003.yml", + "html": "eclipse-sua-2003.html", + "text": "eclipse-sua-2003.LICENSE" + }, + { + "license_key": "eclipse-sua-2004", + "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2004", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "eclipse-sua-2004.json", + "yml": "eclipse-sua-2004.yml", + "html": "eclipse-sua-2004.html", + "text": "eclipse-sua-2004.LICENSE" + }, + { + "license_key": "eclipse-sua-2005", + "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2005", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "eclipse-sua-2005.json", + "yml": "eclipse-sua-2005.yml", + "html": "eclipse-sua-2005.html", + "text": "eclipse-sua-2005.LICENSE" + }, + { + "license_key": "eclipse-sua-2010", + "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2010", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "eclipse-sua-2010.json", + "yml": "eclipse-sua-2010.yml", + "html": "eclipse-sua-2010.html", + "text": "eclipse-sua-2010.LICENSE" + }, + { + "license_key": "eclipse-sua-2011", + "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2011", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "eclipse-sua-2011.json", + "yml": "eclipse-sua-2011.yml", + "html": "eclipse-sua-2011.html", + "text": "eclipse-sua-2011.LICENSE" + }, + { + "license_key": "eclipse-sua-2014-11", + "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2014-11", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "eclipse-sua-2014-11.json", + "yml": "eclipse-sua-2014-11.yml", + "html": "eclipse-sua-2014-11.html", + "text": "eclipse-sua-2014-11.LICENSE" + }, + { + "license_key": "eclipse-sua-2014", + "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2014", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "eclipse-sua-2014.json", + "yml": "eclipse-sua-2014.yml", + "html": "eclipse-sua-2014.html", + "text": "eclipse-sua-2014.LICENSE" + }, + { + "license_key": "eclipse-sua-2017", + "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2017", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "eclipse-sua-2017.json", + "yml": "eclipse-sua-2017.yml", + "html": "eclipse-sua-2017.html", + "text": "eclipse-sua-2017.LICENSE" + }, + { + "license_key": "ecma-documentation", + "spdx_license_key": "LicenseRef-scancode-ecma-documentation", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ecma-documentation.json", + "yml": "ecma-documentation.yml", + "html": "ecma-documentation.html", + "text": "ecma-documentation.LICENSE" + }, + { + "license_key": "ecma-no-patent", + "spdx_license_key": "LicenseRef-scancode-ecma-no-patent", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "ecma-no-patent.json", + "yml": "ecma-no-patent.yml", + "html": "ecma-no-patent.html", + "text": "ecma-no-patent.LICENSE" + }, + { + "license_key": "ecma-patent-coc-0", + "spdx_license_key": "LicenseRef-scancode-ecma-patent-coc-0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ecma-patent-coc-0.json", + "yml": "ecma-patent-coc-0.yml", + "html": "ecma-patent-coc-0.html", + "text": "ecma-patent-coc-0.LICENSE" + }, + { + "license_key": "ecma-patent-coc-1", + "spdx_license_key": "LicenseRef-scancode-ecma-patent-coc-1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ecma-patent-coc-1.json", + "yml": "ecma-patent-coc-1.yml", + "html": "ecma-patent-coc-1.html", + "text": "ecma-patent-coc-1.LICENSE" + }, + { + "license_key": "ecma-patent-coc-2", + "spdx_license_key": "LicenseRef-scancode-ecma-patent-coc-2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ecma-patent-coc-2.json", + "yml": "ecma-patent-coc-2.yml", + "html": "ecma-patent-coc-2.html", + "text": "ecma-patent-coc-2.LICENSE" + }, + { + "license_key": "ecos-exception-2.0", + "spdx_license_key": "eCos-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "ecos-exception-2.0.json", + "yml": "ecos-exception-2.0.yml", + "html": "ecos-exception-2.0.html", + "text": "ecos-exception-2.0.LICENSE" + }, + { + "license_key": "ecos", + "spdx_license_key": "eCos-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "ecos.json", + "yml": "ecos.yml", + "html": "ecos.html", + "text": "ecos.LICENSE" + }, + { + "license_key": "ecosrh-1.0", + "spdx_license_key": "LicenseRef-scancode-ecosrh-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ecosrh-1.0.json", + "yml": "ecosrh-1.0.yml", + "html": "ecosrh-1.0.html", + "text": "ecosrh-1.0.LICENSE" + }, + { + "license_key": "ecosrh-1.1", + "spdx_license_key": "RHeCos-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ecosrh-1.1.json", + "yml": "ecosrh-1.1.yml", + "html": "ecosrh-1.1.html", + "text": "ecosrh-1.1.LICENSE" + }, + { + "license_key": "efl-1.0", + "spdx_license_key": "EFL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "efl-1.0.json", + "yml": "efl-1.0.yml", + "html": "efl-1.0.html", + "text": "efl-1.0.LICENSE" + }, + { + "license_key": "efl-2.0", + "spdx_license_key": "EFL-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "efl-2.0.json", + "yml": "efl-2.0.yml", + "html": "efl-2.0.html", + "text": "efl-2.0.LICENSE" + }, + { + "license_key": "efsl-1.0", + "spdx_license_key": "LicenseRef-scancode-efsl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "efsl-1.0.json", + "yml": "efsl-1.0.yml", + "html": "efsl-1.0.html", + "text": "efsl-1.0.LICENSE" + }, + { + "license_key": "egenix-1.0.0", + "spdx_license_key": "LicenseRef-scancode-egenix-1.0.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "egenix-1.0.0.json", + "yml": "egenix-1.0.0.yml", + "html": "egenix-1.0.0.html", + "text": "egenix-1.0.0.LICENSE" + }, + { + "license_key": "egenix-1.1.0", + "spdx_license_key": "eGenix", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "egenix-1.1.0.json", + "yml": "egenix-1.1.0.yml", + "html": "egenix-1.1.0.html", + "text": "egenix-1.1.0.LICENSE" + }, + { + "license_key": "egrappler", + "spdx_license_key": "LicenseRef-scancode-egrappler", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "egrappler.json", + "yml": "egrappler.yml", + "html": "egrappler.html", + "text": "egrappler.LICENSE" + }, + { + "license_key": "ej-technologies-eula", + "spdx_license_key": "LicenseRef-scancode-ej-technologies-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ej-technologies-eula.json", + "yml": "ej-technologies-eula.yml", + "html": "ej-technologies-eula.html", + "text": "ej-technologies-eula.LICENSE" + }, + { + "license_key": "ekiga-exception-2.0-plus", + "spdx_license_key": "LicenseRef-scancode-ekiga-exception-2.0-plus", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "ekiga-exception-2.0-plus.json", + "yml": "ekiga-exception-2.0-plus.yml", + "html": "ekiga-exception-2.0-plus.html", + "text": "ekiga-exception-2.0-plus.LICENSE" + }, + { + "license_key": "ekioh", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "ekioh.json", + "yml": "ekioh.yml", + "html": "ekioh.html", + "text": "ekioh.LICENSE" + }, + { + "license_key": "elastic-license-2018", + "spdx_license_key": "LicenseRef-scancode-elastic-license-2018", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "elastic-license-2018.json", + "yml": "elastic-license-2018.yml", + "html": "elastic-license-2018.html", + "text": "elastic-license-2018.LICENSE" + }, + { + "license_key": "elastic-license-v2", + "spdx_license_key": "LicenseRef-scancode-elastic-license-v2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "elastic-license-v2.json", + "yml": "elastic-license-v2.yml", + "html": "elastic-license-v2.html", + "text": "elastic-license-v2.LICENSE" + }, + { + "license_key": "elib-gpl", + "spdx_license_key": "LicenseRef-scancode-elib-gpl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "elib-gpl.json", + "yml": "elib-gpl.yml", + "html": "elib-gpl.html", + "text": "elib-gpl.LICENSE" + }, + { + "license_key": "ellis-lab", + "spdx_license_key": "LicenseRef-scancode-ellis-lab", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ellis-lab.json", + "yml": "ellis-lab.yml", + "html": "ellis-lab.html", + "text": "ellis-lab.LICENSE" + }, + { + "license_key": "emit", + "spdx_license_key": "LicenseRef-scancode-emit", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "emit.json", + "yml": "emit.yml", + "html": "emit.html", + "text": "emit.LICENSE" + }, + { + "license_key": "emx-library", + "spdx_license_key": "LicenseRef-scancode-emx-library", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "emx-library.json", + "yml": "emx-library.yml", + "html": "emx-library.html", + "text": "emx-library.LICENSE" + }, + { + "license_key": "energyplus-bsd", + "spdx_license_key": "LicenseRef-scancode-energyplus-bsd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "energyplus-bsd.json", + "yml": "energyplus-bsd.yml", + "html": "energyplus-bsd.html", + "text": "energyplus-bsd.LICENSE" + }, + { + "license_key": "enhydra-1.1", + "spdx_license_key": "LicenseRef-scancode-enhydra-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "enhydra-1.1.json", + "yml": "enhydra-1.1.yml", + "html": "enhydra-1.1.html", + "text": "enhydra-1.1.LICENSE" + }, + { + "license_key": "enlightenment", + "spdx_license_key": "MIT-advertising", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "enlightenment.json", + "yml": "enlightenment.yml", + "html": "enlightenment.html", + "text": "enlightenment.LICENSE" + }, + { + "license_key": "enna", + "spdx_license_key": "MIT-enna", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "enna.json", + "yml": "enna.yml", + "html": "enna.html", + "text": "enna.LICENSE" + }, + { + "license_key": "entessa-1.0", + "spdx_license_key": "Entessa", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "entessa-1.0.json", + "yml": "entessa-1.0.yml", + "html": "entessa-1.0.html", + "text": "entessa-1.0.LICENSE" + }, + { + "license_key": "epaperpress", + "spdx_license_key": "LicenseRef-scancode-epaperpress", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "epaperpress.json", + "yml": "epaperpress.yml", + "html": "epaperpress.html", + "text": "epaperpress.LICENSE" + }, + { + "license_key": "epics", + "spdx_license_key": "EPICS", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "epics.json", + "yml": "epics.yml", + "html": "epics.html", + "text": "epics.LICENSE" + }, + { + "license_key": "epl-1.0", + "spdx_license_key": "EPL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "epl-1.0.json", + "yml": "epl-1.0.yml", + "html": "epl-1.0.html", + "text": "epl-1.0.LICENSE" + }, + { + "license_key": "epl-2.0", + "spdx_license_key": "EPL-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "epl-2.0.json", + "yml": "epl-2.0.yml", + "html": "epl-2.0.html", + "text": "epl-2.0.LICENSE" + }, + { + "license_key": "epo-osl-2005.1", + "spdx_license_key": "LicenseRef-scancode-epo-osl-2005.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "epo-osl-2005.1.json", + "yml": "epo-osl-2005.1.yml", + "html": "epo-osl-2005.1.html", + "text": "epo-osl-2005.1.LICENSE" + }, + { + "license_key": "erlangpl-1.1", + "spdx_license_key": "ErlPL-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "erlangpl-1.1.json", + "yml": "erlangpl-1.1.yml", + "html": "erlangpl-1.1.html", + "text": "erlangpl-1.1.LICENSE" + }, + { + "license_key": "errbot-exception", + "spdx_license_key": "LicenseRef-scancode-errbot-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "errbot-exception.json", + "yml": "errbot-exception.yml", + "html": "errbot-exception.html", + "text": "errbot-exception.LICENSE" + }, + { + "license_key": "esri-devkit", + "spdx_license_key": "LicenseRef-scancode-esri-devkit", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "esri-devkit.json", + "yml": "esri-devkit.yml", + "html": "esri-devkit.html", + "text": "esri-devkit.LICENSE" + }, + { + "license_key": "esri", + "spdx_license_key": "LicenseRef-scancode-esri", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "esri.json", + "yml": "esri.yml", + "html": "esri.html", + "text": "esri.LICENSE" + }, + { + "license_key": "etalab-2.0", + "spdx_license_key": "etalab-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "etalab-2.0.json", + "yml": "etalab-2.0.yml", + "html": "etalab-2.0.html", + "text": "etalab-2.0.LICENSE" + }, + { + "license_key": "eu-datagrid", + "spdx_license_key": "EUDatagrid", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "eu-datagrid.json", + "yml": "eu-datagrid.yml", + "html": "eu-datagrid.html", + "text": "eu-datagrid.LICENSE" + }, + { + "license_key": "eupl-1.0", + "spdx_license_key": "EUPL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "eupl-1.0.json", + "yml": "eupl-1.0.yml", + "html": "eupl-1.0.html", + "text": "eupl-1.0.LICENSE" + }, + { + "license_key": "eupl-1.1", + "spdx_license_key": "EUPL-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "eupl-1.1.json", + "yml": "eupl-1.1.yml", + "html": "eupl-1.1.html", + "text": "eupl-1.1.LICENSE" + }, + { + "license_key": "eupl-1.2", + "spdx_license_key": "EUPL-1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "eupl-1.2.json", + "yml": "eupl-1.2.yml", + "html": "eupl-1.2.html", + "text": "eupl-1.2.LICENSE" + }, + { + "license_key": "eurosym", + "spdx_license_key": "Eurosym", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "eurosym.json", + "yml": "eurosym.yml", + "html": "eurosym.html", + "text": "eurosym.LICENSE" + }, + { + "license_key": "examdiff", + "spdx_license_key": "LicenseRef-scancode-examdiff", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "examdiff.json", + "yml": "examdiff.yml", + "html": "examdiff.html", + "text": "examdiff.LICENSE" + }, + { + "license_key": "excelsior-jet-runtime", + "spdx_license_key": "LicenseRef-scancode-excelsior-jet-runtime", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "excelsior-jet-runtime.json", + "yml": "excelsior-jet-runtime.yml", + "html": "excelsior-jet-runtime.html", + "text": "excelsior-jet-runtime.LICENSE" + }, + { + "license_key": "fabien-tassin", + "spdx_license_key": "LicenseRef-scancode-fabien-tassin", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "fabien-tassin.json", + "yml": "fabien-tassin.yml", + "html": "fabien-tassin.html", + "text": "fabien-tassin.LICENSE" + }, + { + "license_key": "fabric-agreement-2017", + "spdx_license_key": "LicenseRef-scancode-fabric-agreement-2017", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "fabric-agreement-2017.json", + "yml": "fabric-agreement-2017.yml", + "html": "fabric-agreement-2017.html", + "text": "fabric-agreement-2017.LICENSE" + }, + { + "license_key": "facebook-nuclide", + "spdx_license_key": "LicenseRef-scancode-facebook-nuclide", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "facebook-nuclide.json", + "yml": "facebook-nuclide.yml", + "html": "facebook-nuclide.html", + "text": "facebook-nuclide.LICENSE" + }, + { + "license_key": "facebook-patent-rights-2", + "spdx_license_key": "LicenseRef-scancode-facebook-patent-rights-2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "facebook-patent-rights-2.json", + "yml": "facebook-patent-rights-2.yml", + "html": "facebook-patent-rights-2.html", + "text": "facebook-patent-rights-2.LICENSE" + }, + { + "license_key": "facebook-software-license", + "spdx_license_key": "LicenseRef-scancode-facebook-software-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "facebook-software-license.json", + "yml": "facebook-software-license.yml", + "html": "facebook-software-license.html", + "text": "facebook-software-license.LICENSE" + }, + { + "license_key": "fair-source-0.9", + "spdx_license_key": "LicenseRef-scancode-fair-source-0.9", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "fair-source-0.9.json", + "yml": "fair-source-0.9.yml", + "html": "fair-source-0.9.html", + "text": "fair-source-0.9.LICENSE" + }, + { + "license_key": "fair", + "spdx_license_key": "Fair", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "fair.json", + "yml": "fair.yml", + "html": "fair.html", + "text": "fair.LICENSE" + }, + { + "license_key": "fancyzoom", + "spdx_license_key": "LicenseRef-scancode-fancyzoom", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "fancyzoom.json", + "yml": "fancyzoom.yml", + "html": "fancyzoom.html", + "text": "fancyzoom.LICENSE" + }, + { + "license_key": "far-manager-exception", + "spdx_license_key": "LicenseRef-scancode-far-manager-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "far-manager-exception.json", + "yml": "far-manager-exception.yml", + "html": "far-manager-exception.html", + "text": "far-manager-exception.LICENSE" + }, + { + "license_key": "fastbuild-2012-2020", + "spdx_license_key": "LicenseRef-scancode-fastbuild-2012-2020", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "fastbuild-2012-2020.json", + "yml": "fastbuild-2012-2020.yml", + "html": "fastbuild-2012-2020.html", + "text": "fastbuild-2012-2020.LICENSE" + }, + { + "license_key": "fastcgi-devkit", + "spdx_license_key": "OML", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "fastcgi-devkit.json", + "yml": "fastcgi-devkit.yml", + "html": "fastcgi-devkit.html", + "text": "fastcgi-devkit.LICENSE" + }, + { + "license_key": "fawkes-runtime-exception", + "spdx_license_key": "Fawkes-Runtime-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "fawkes-runtime-exception.json", + "yml": "fawkes-runtime-exception.yml", + "html": "fawkes-runtime-exception.html", + "text": "fawkes-runtime-exception.LICENSE" + }, + { + "license_key": "fftpack-2004", + "spdx_license_key": "LicenseRef-scancode-fftpack-2004", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "fftpack-2004.json", + "yml": "fftpack-2004.yml", + "html": "fftpack-2004.html", + "text": "fftpack-2004.LICENSE" + }, + { + "license_key": "filament-group-mit", + "spdx_license_key": "LicenseRef-scancode-filament-group-mit", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "filament-group-mit.json", + "yml": "filament-group-mit.yml", + "html": "filament-group-mit.html", + "text": "filament-group-mit.LICENSE" + }, + { + "license_key": "first-works-appreciative-1.2", + "spdx_license_key": "LicenseRef-scancode-first-works-appreciative-1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "first-works-appreciative-1.2.json", + "yml": "first-works-appreciative-1.2.yml", + "html": "first-works-appreciative-1.2.html", + "text": "first-works-appreciative-1.2.LICENSE" + }, + { + "license_key": "flex-2.5", + "spdx_license_key": "LicenseRef-scancode-flex-2.5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "flex-2.5.json", + "yml": "flex-2.5.yml", + "html": "flex-2.5.html", + "text": "flex-2.5.LICENSE" + }, + { + "license_key": "flex2sdk", + "spdx_license_key": "LicenseRef-scancode-flex2sdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "flex2sdk.json", + "yml": "flex2sdk.yml", + "html": "flex2sdk.html", + "text": "flex2sdk.LICENSE" + }, + { + "license_key": "flora-1.1", + "spdx_license_key": "LicenseRef-scancode-flora-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "flora-1.1.json", + "yml": "flora-1.1.yml", + "html": "flora-1.1.html", + "text": "flora-1.1.LICENSE" + }, + { + "license_key": "flowplayer-gpl-3.0", + "spdx_license_key": "LicenseRef-scancode-flowplayer-gpl-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "flowplayer-gpl-3.0.json", + "yml": "flowplayer-gpl-3.0.yml", + "html": "flowplayer-gpl-3.0.html", + "text": "flowplayer-gpl-3.0.LICENSE" + }, + { + "license_key": "fltk-exception-lgpl-2.0", + "spdx_license_key": "FLTK-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "fltk-exception-lgpl-2.0.json", + "yml": "fltk-exception-lgpl-2.0.yml", + "html": "fltk-exception-lgpl-2.0.html", + "text": "fltk-exception-lgpl-2.0.LICENSE" + }, + { + "license_key": "font-alias", + "spdx_license_key": "LicenseRef-scancode-font-alias", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "font-alias.json", + "yml": "font-alias.yml", + "html": "font-alias.html", + "text": "font-alias.LICENSE" + }, + { + "license_key": "font-exception-gpl", + "spdx_license_key": "Font-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "font-exception-gpl.json", + "yml": "font-exception-gpl.yml", + "html": "font-exception-gpl.html", + "text": "font-exception-gpl.LICENSE" + }, + { + "license_key": "foobar2000", + "spdx_license_key": "LicenseRef-scancode-foobar2000", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "foobar2000.json", + "yml": "foobar2000.yml", + "html": "foobar2000.html", + "text": "foobar2000.LICENSE" + }, + { + "license_key": "fpl", + "spdx_license_key": "LicenseRef-scancode-fpl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "fpl.json", + "yml": "fpl.yml", + "html": "fpl.html", + "text": "fpl.LICENSE" + }, + { + "license_key": "fplot", + "spdx_license_key": "LicenseRef-scancode-fplot", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "fplot.json", + "yml": "fplot.yml", + "html": "fplot.html", + "text": "fplot.LICENSE" + }, + { + "license_key": "frameworx-1.0", + "spdx_license_key": "Frameworx-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "frameworx-1.0.json", + "yml": "frameworx-1.0.yml", + "html": "frameworx-1.0.html", + "text": "frameworx-1.0.LICENSE" + }, + { + "license_key": "fraunhofer-fdk-aac-codec", + "spdx_license_key": "LicenseRef-scancode-fraunhofer-fdk-aac-codec", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "fraunhofer-fdk-aac-codec.json", + "yml": "fraunhofer-fdk-aac-codec.yml", + "html": "fraunhofer-fdk-aac-codec.html", + "text": "fraunhofer-fdk-aac-codec.LICENSE" + }, + { + "license_key": "fraunhofer-iso-14496-10", + "spdx_license_key": "LicenseRef-scancode-fraunhofer-iso-14496-10", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "fraunhofer-iso-14496-10.json", + "yml": "fraunhofer-iso-14496-10.yml", + "html": "fraunhofer-iso-14496-10.html", + "text": "fraunhofer-iso-14496-10.LICENSE" + }, + { + "license_key": "free-art-1.3", + "spdx_license_key": "LicenseRef-scancode-free-art-1.3", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "free-art-1.3.json", + "yml": "free-art-1.3.yml", + "html": "free-art-1.3.html", + "text": "free-art-1.3.LICENSE" + }, + { + "license_key": "free-fork", + "spdx_license_key": "LicenseRef-scancode-free-fork", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "free-fork.json", + "yml": "free-fork.yml", + "html": "free-fork.html", + "text": "free-fork.LICENSE" + }, + { + "license_key": "free-unknown", + "spdx_license_key": "LicenseRef-scancode-free-unknown", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "free-unknown.json", + "yml": "free-unknown.yml", + "html": "free-unknown.html", + "text": "free-unknown.LICENSE" + }, + { + "license_key": "freebsd-boot", + "spdx_license_key": "LicenseRef-scancode-freebsd-boot", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "freebsd-boot.json", + "yml": "freebsd-boot.yml", + "html": "freebsd-boot.html", + "text": "freebsd-boot.LICENSE" + }, + { + "license_key": "freebsd-doc", + "spdx_license_key": "FreeBSD-DOC", + "other_spdx_license_keys": [ + "LicenseRef-scancode-freebsd-doc" + ], + "is_exception": false, + "is_deprecated": false, + "json": "freebsd-doc.json", + "yml": "freebsd-doc.yml", + "html": "freebsd-doc.html", + "text": "freebsd-doc.LICENSE" + }, + { + "license_key": "freebsd-first", + "spdx_license_key": "LicenseRef-scancode-freebsd-first", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "freebsd-first.json", + "yml": "freebsd-first.yml", + "html": "freebsd-first.html", + "text": "freebsd-first.LICENSE" + }, + { + "license_key": "freeimage-1.0", + "spdx_license_key": "FreeImage", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "freeimage-1.0.json", + "yml": "freeimage-1.0.yml", + "html": "freeimage-1.0.html", + "text": "freeimage-1.0.LICENSE" + }, + { + "license_key": "freemarker", + "spdx_license_key": "LicenseRef-scancode-freemarker", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "freemarker.json", + "yml": "freemarker.yml", + "html": "freemarker.html", + "text": "freemarker.LICENSE" + }, + { + "license_key": "freertos-exception-2.0", + "spdx_license_key": "freertos-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "freertos-exception-2.0.json", + "yml": "freertos-exception-2.0.yml", + "html": "freertos-exception-2.0.html", + "text": "freertos-exception-2.0.LICENSE" + }, + { + "license_key": "freetts", + "spdx_license_key": "LicenseRef-scancode-freetts", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "freetts.json", + "yml": "freetts.yml", + "html": "freetts.html", + "text": "freetts.LICENSE" + }, + { + "license_key": "freetype-patent", + "spdx_license_key": "LicenseRef-scancode-freetype-patent", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "freetype-patent.json", + "yml": "freetype-patent.yml", + "html": "freetype-patent.html", + "text": "freetype-patent.LICENSE" + }, + { + "license_key": "freetype", + "spdx_license_key": "FTL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "freetype.json", + "yml": "freetype.yml", + "html": "freetype.html", + "text": "freetype.LICENSE" + }, + { + "license_key": "froala-owdl-1.0", + "spdx_license_key": "LicenseRef-scancode-froala-owdl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "froala-owdl-1.0.json", + "yml": "froala-owdl-1.0.yml", + "html": "froala-owdl-1.0.html", + "text": "froala-owdl-1.0.LICENSE" + }, + { + "license_key": "frontier-1.0", + "spdx_license_key": "LicenseRef-scancode-frontier-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "frontier-1.0.json", + "yml": "frontier-1.0.yml", + "html": "frontier-1.0.html", + "text": "frontier-1.0.LICENSE" + }, + { + "license_key": "fsf-ap", + "spdx_license_key": "FSFAP", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "fsf-ap.json", + "yml": "fsf-ap.yml", + "html": "fsf-ap.html", + "text": "fsf-ap.LICENSE" + }, + { + "license_key": "fsf-free", + "spdx_license_key": "FSFUL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "fsf-free.json", + "yml": "fsf-free.yml", + "html": "fsf-free.html", + "text": "fsf-free.LICENSE" + }, + { + "license_key": "fsf-notice", + "spdx_license_key": "LicenseRef-scancode-fsf-notice", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "fsf-notice.json", + "yml": "fsf-notice.yml", + "html": "fsf-notice.html", + "text": "fsf-notice.LICENSE" + }, + { + "license_key": "fsf-unlimited-no-warranty", + "spdx_license_key": "LicenseRef-scancode-fsf-unlimited-no-warranty", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "fsf-unlimited-no-warranty.json", + "yml": "fsf-unlimited-no-warranty.yml", + "html": "fsf-unlimited-no-warranty.html", + "text": "fsf-unlimited-no-warranty.LICENSE" + }, + { + "license_key": "fsf-unlimited", + "spdx_license_key": "FSFULLR", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "fsf-unlimited.json", + "yml": "fsf-unlimited.yml", + "html": "fsf-unlimited.html", + "text": "fsf-unlimited.LICENSE" + }, + { + "license_key": "ftdi", + "spdx_license_key": "LicenseRef-scancode-ftdi", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ftdi.json", + "yml": "ftdi.yml", + "html": "ftdi.html", + "text": "ftdi.LICENSE" + }, + { + "license_key": "ftpbean", + "spdx_license_key": "LicenseRef-scancode-ftpbean", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ftpbean.json", + "yml": "ftpbean.yml", + "html": "ftpbean.html", + "text": "ftpbean.LICENSE" + }, + { + "license_key": "gareth-mccaughan", + "spdx_license_key": "LicenseRef-scancode-gareth-mccaughan", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gareth-mccaughan.json", + "yml": "gareth-mccaughan.yml", + "html": "gareth-mccaughan.html", + "text": "gareth-mccaughan.LICENSE" + }, + { + "license_key": "gary-s-brown", + "spdx_license_key": "LicenseRef-scancode-gary-s-brown", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gary-s-brown.json", + "yml": "gary-s-brown.yml", + "html": "gary-s-brown.html", + "text": "gary-s-brown.LICENSE" + }, + { + "license_key": "gcc-compiler-exception-2.0", + "spdx_license_key": "LicenseRef-scancode-gcc-compiler-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "gcc-compiler-exception-2.0.json", + "yml": "gcc-compiler-exception-2.0.yml", + "html": "gcc-compiler-exception-2.0.html", + "text": "gcc-compiler-exception-2.0.LICENSE" + }, + { + "license_key": "gcc-exception-3.1", + "spdx_license_key": "GCC-exception-3.1", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "gcc-exception-3.1.json", + "yml": "gcc-exception-3.1.yml", + "html": "gcc-exception-3.1.html", + "text": "gcc-exception-3.1.LICENSE" + }, + { + "license_key": "gcc-linking-exception-2.0", + "spdx_license_key": "GCC-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "gcc-linking-exception-2.0.json", + "yml": "gcc-linking-exception-2.0.yml", + "html": "gcc-linking-exception-2.0.html", + "text": "gcc-linking-exception-2.0.LICENSE" + }, + { + "license_key": "gdcl", + "spdx_license_key": "LicenseRef-scancode-gdcl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gdcl.json", + "yml": "gdcl.yml", + "html": "gdcl.html", + "text": "gdcl.LICENSE" + }, + { + "license_key": "generic-cla", + "spdx_license_key": "LicenseRef-scancode-generic-cla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "generic-cla.json", + "yml": "generic-cla.yml", + "html": "generic-cla.html", + "text": "generic-cla.LICENSE" + }, + { + "license_key": "generic-exception", + "spdx_license_key": "LicenseRef-scancode-generic-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "generic-exception.json", + "yml": "generic-exception.yml", + "html": "generic-exception.html", + "text": "generic-exception.LICENSE" + }, + { + "license_key": "generic-export-compliance", + "spdx_license_key": "LicenseRef-scancode-generic-export-compliance", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "generic-export-compliance.json", + "yml": "generic-export-compliance.yml", + "html": "generic-export-compliance.html", + "text": "generic-export-compliance.LICENSE" + }, + { + "license_key": "generic-tos", + "spdx_license_key": "LicenseRef-scancode-generic-tos", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "generic-tos.json", + "yml": "generic-tos.yml", + "html": "generic-tos.html", + "text": "generic-tos.LICENSE" + }, + { + "license_key": "generic-trademark", + "spdx_license_key": "LicenseRef-scancode-generic-trademark", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "generic-trademark.json", + "yml": "generic-trademark.yml", + "html": "generic-trademark.html", + "text": "generic-trademark.LICENSE" + }, + { + "license_key": "genivia-gsoap", + "spdx_license_key": "LicenseRef-scancode-genivia-gsoap", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "genivia-gsoap.json", + "yml": "genivia-gsoap.yml", + "html": "genivia-gsoap.html", + "text": "genivia-gsoap.LICENSE" + }, + { + "license_key": "genode-agpl-3.0-exception", + "spdx_license_key": "LicenseRef-scancode-genode-agpl-3.0-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "genode-agpl-3.0-exception.json", + "yml": "genode-agpl-3.0-exception.yml", + "html": "genode-agpl-3.0-exception.html", + "text": "genode-agpl-3.0-exception.LICENSE" + }, + { + "license_key": "geoff-kuenning-1993", + "spdx_license_key": "LicenseRef-scancode-geoff-kuenning-1993", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "geoff-kuenning-1993.json", + "yml": "geoff-kuenning-1993.yml", + "html": "geoff-kuenning-1993.html", + "text": "geoff-kuenning-1993.LICENSE" + }, + { + "license_key": "geoserver-exception-2.0-plus", + "spdx_license_key": "LicenseRef-scancode-geoserver-exception-2.0-plus", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "geoserver-exception-2.0-plus.json", + "yml": "geoserver-exception-2.0-plus.yml", + "html": "geoserver-exception-2.0-plus.html", + "text": "geoserver-exception-2.0-plus.LICENSE" + }, + { + "license_key": "gfdl-1.1-invariants-only", + "spdx_license_key": "GFDL-1.1-invariants-only", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gfdl-1.1-invariants-only.json", + "yml": "gfdl-1.1-invariants-only.yml", + "html": "gfdl-1.1-invariants-only.html", + "text": "gfdl-1.1-invariants-only.LICENSE" + }, + { + "license_key": "gfdl-1.1-invariants-or-later", + "spdx_license_key": "GFDL-1.1-invariants-or-later", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gfdl-1.1-invariants-or-later.json", + "yml": "gfdl-1.1-invariants-or-later.yml", + "html": "gfdl-1.1-invariants-or-later.html", + "text": "gfdl-1.1-invariants-or-later.LICENSE" + }, + { + "license_key": "gfdl-1.1-no-invariants-only", + "spdx_license_key": "GFDL-1.1-no-invariants-only", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gfdl-1.1-no-invariants-only.json", + "yml": "gfdl-1.1-no-invariants-only.yml", + "html": "gfdl-1.1-no-invariants-only.html", + "text": "gfdl-1.1-no-invariants-only.LICENSE" + }, + { + "license_key": "gfdl-1.1-no-invariants-or-later", + "spdx_license_key": "GFDL-1.1-no-invariants-or-later", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gfdl-1.1-no-invariants-or-later.json", + "yml": "gfdl-1.1-no-invariants-or-later.yml", + "html": "gfdl-1.1-no-invariants-or-later.html", + "text": "gfdl-1.1-no-invariants-or-later.LICENSE" + }, + { + "license_key": "gfdl-1.1-plus", + "spdx_license_key": "GFDL-1.1-or-later", + "other_spdx_license_keys": [ + "GFDL-1.1+" + ], + "is_exception": false, + "is_deprecated": false, + "json": "gfdl-1.1-plus.json", + "yml": "gfdl-1.1-plus.yml", + "html": "gfdl-1.1-plus.html", + "text": "gfdl-1.1-plus.LICENSE" + }, + { + "license_key": "gfdl-1.1", + "spdx_license_key": "GFDL-1.1-only", + "other_spdx_license_keys": [ + "GFDL-1.1" + ], + "is_exception": false, + "is_deprecated": false, + "json": "gfdl-1.1.json", + "yml": "gfdl-1.1.yml", + "html": "gfdl-1.1.html", + "text": "gfdl-1.1.LICENSE" + }, + { + "license_key": "gfdl-1.2-invariants-only", + "spdx_license_key": "GFDL-1.2-invariants-only", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gfdl-1.2-invariants-only.json", + "yml": "gfdl-1.2-invariants-only.yml", + "html": "gfdl-1.2-invariants-only.html", + "text": "gfdl-1.2-invariants-only.LICENSE" + }, + { + "license_key": "gfdl-1.2-invariants-or-later", + "spdx_license_key": "GFDL-1.2-invariants-or-later", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gfdl-1.2-invariants-or-later.json", + "yml": "gfdl-1.2-invariants-or-later.yml", + "html": "gfdl-1.2-invariants-or-later.html", + "text": "gfdl-1.2-invariants-or-later.LICENSE" + }, + { + "license_key": "gfdl-1.2-no-invariants-only", + "spdx_license_key": "GFDL-1.2-no-invariants-only", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gfdl-1.2-no-invariants-only.json", + "yml": "gfdl-1.2-no-invariants-only.yml", + "html": "gfdl-1.2-no-invariants-only.html", + "text": "gfdl-1.2-no-invariants-only.LICENSE" + }, + { + "license_key": "gfdl-1.2-no-invariants-or-later", + "spdx_license_key": "GFDL-1.2-no-invariants-or-later", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gfdl-1.2-no-invariants-or-later.json", + "yml": "gfdl-1.2-no-invariants-or-later.yml", + "html": "gfdl-1.2-no-invariants-or-later.html", + "text": "gfdl-1.2-no-invariants-or-later.LICENSE" + }, + { + "license_key": "gfdl-1.2-plus", + "spdx_license_key": "GFDL-1.2-or-later", + "other_spdx_license_keys": [ + "GFDL-1.2+" + ], + "is_exception": false, + "is_deprecated": false, + "json": "gfdl-1.2-plus.json", + "yml": "gfdl-1.2-plus.yml", + "html": "gfdl-1.2-plus.html", + "text": "gfdl-1.2-plus.LICENSE" + }, + { + "license_key": "gfdl-1.2", + "spdx_license_key": "GFDL-1.2-only", + "other_spdx_license_keys": [ + "GFDL-1.2" + ], + "is_exception": false, + "is_deprecated": false, + "json": "gfdl-1.2.json", + "yml": "gfdl-1.2.yml", + "html": "gfdl-1.2.html", + "text": "gfdl-1.2.LICENSE" + }, + { + "license_key": "gfdl-1.3-invariants-only", + "spdx_license_key": "GFDL-1.3-invariants-only", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gfdl-1.3-invariants-only.json", + "yml": "gfdl-1.3-invariants-only.yml", + "html": "gfdl-1.3-invariants-only.html", + "text": "gfdl-1.3-invariants-only.LICENSE" + }, + { + "license_key": "gfdl-1.3-invariants-or-later", + "spdx_license_key": "GFDL-1.3-invariants-or-later", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gfdl-1.3-invariants-or-later.json", + "yml": "gfdl-1.3-invariants-or-later.yml", + "html": "gfdl-1.3-invariants-or-later.html", + "text": "gfdl-1.3-invariants-or-later.LICENSE" + }, + { + "license_key": "gfdl-1.3-no-invariants-only", + "spdx_license_key": "GFDL-1.3-no-invariants-only", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gfdl-1.3-no-invariants-only.json", + "yml": "gfdl-1.3-no-invariants-only.yml", + "html": "gfdl-1.3-no-invariants-only.html", + "text": "gfdl-1.3-no-invariants-only.LICENSE" + }, + { + "license_key": "gfdl-1.3-no-invariants-or-later", + "spdx_license_key": "GFDL-1.3-no-invariants-or-later", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gfdl-1.3-no-invariants-or-later.json", + "yml": "gfdl-1.3-no-invariants-or-later.yml", + "html": "gfdl-1.3-no-invariants-or-later.html", + "text": "gfdl-1.3-no-invariants-or-later.LICENSE" + }, + { + "license_key": "gfdl-1.3-plus", + "spdx_license_key": "GFDL-1.3-or-later", + "other_spdx_license_keys": [ + "GFDL-1.3+" + ], + "is_exception": false, + "is_deprecated": false, + "json": "gfdl-1.3-plus.json", + "yml": "gfdl-1.3-plus.yml", + "html": "gfdl-1.3-plus.html", + "text": "gfdl-1.3-plus.LICENSE" + }, + { + "license_key": "gfdl-1.3", + "spdx_license_key": "GFDL-1.3-only", + "other_spdx_license_keys": [ + "GFDL-1.3" + ], + "is_exception": false, + "is_deprecated": false, + "json": "gfdl-1.3.json", + "yml": "gfdl-1.3.yml", + "html": "gfdl-1.3.html", + "text": "gfdl-1.3.LICENSE" + }, + { + "license_key": "ghostscript-1988", + "spdx_license_key": "LicenseRef-scancode-ghostscript-1988", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ghostscript-1988.json", + "yml": "ghostscript-1988.yml", + "html": "ghostscript-1988.html", + "text": "ghostscript-1988.LICENSE" + }, + { + "license_key": "gl2ps", + "spdx_license_key": "GL2PS", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gl2ps.json", + "yml": "gl2ps.yml", + "html": "gl2ps.html", + "text": "gl2ps.LICENSE" + }, + { + "license_key": "glide", + "spdx_license_key": "Glide", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "glide.json", + "yml": "glide.yml", + "html": "glide.html", + "text": "glide.LICENSE" + }, + { + "license_key": "glulxe", + "spdx_license_key": "Glulxe", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "glulxe.json", + "yml": "glulxe.yml", + "html": "glulxe.html", + "text": "glulxe.LICENSE" + }, + { + "license_key": "glut", + "spdx_license_key": "LicenseRef-scancode-glut", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "glut.json", + "yml": "glut.yml", + "html": "glut.html", + "text": "glut.LICENSE" + }, + { + "license_key": "glwtpl", + "spdx_license_key": "GLWTPL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "glwtpl.json", + "yml": "glwtpl.yml", + "html": "glwtpl.html", + "text": "glwtpl.LICENSE" + }, + { + "license_key": "gnu-javamail-exception", + "spdx_license_key": "gnu-javamail-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "gnu-javamail-exception.json", + "yml": "gnu-javamail-exception.yml", + "html": "gnu-javamail-exception.html", + "text": "gnu-javamail-exception.LICENSE" + }, + { + "license_key": "gnuplot", + "spdx_license_key": "gnuplot", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gnuplot.json", + "yml": "gnuplot.yml", + "html": "gnuplot.html", + "text": "gnuplot.LICENSE" + }, + { + "license_key": "goahead", + "spdx_license_key": "LicenseRef-scancode-goahead", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "goahead.json", + "yml": "goahead.yml", + "html": "goahead.html", + "text": "goahead.LICENSE" + }, + { + "license_key": "google-analytics-tos-2015", + "spdx_license_key": "LicenseRef-scancode-google-analytics-tos-2015", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-analytics-tos-2015.json", + "yml": "google-analytics-tos-2015.yml", + "html": "google-analytics-tos-2015.html", + "text": "google-analytics-tos-2015.LICENSE" + }, + { + "license_key": "google-analytics-tos-2016", + "spdx_license_key": "LicenseRef-scancode-google-analytics-tos-2016", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-analytics-tos-2016.json", + "yml": "google-analytics-tos-2016.yml", + "html": "google-analytics-tos-2016.html", + "text": "google-analytics-tos-2016.LICENSE" + }, + { + "license_key": "google-analytics-tos", + "spdx_license_key": "LicenseRef-scancode-google-analytics-tos", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-analytics-tos.json", + "yml": "google-analytics-tos.yml", + "html": "google-analytics-tos.html", + "text": "google-analytics-tos.LICENSE" + }, + { + "license_key": "google-patent-license-fuchsia", + "spdx_license_key": "LicenseRef-scancode-google-patent-license-fuchsia", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-patent-license-fuchsia.json", + "yml": "google-patent-license-fuchsia.yml", + "html": "google-patent-license-fuchsia.html", + "text": "google-patent-license-fuchsia.LICENSE" + }, + { + "license_key": "google-patent-license-fuschia", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "google-patent-license-fuschia.json", + "yml": "google-patent-license-fuschia.yml", + "html": "google-patent-license-fuschia.html", + "text": "google-patent-license-fuschia.LICENSE" + }, + { + "license_key": "google-patent-license-golang", + "spdx_license_key": "LicenseRef-scancode-google-patent-license-golang", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-patent-license-golang.json", + "yml": "google-patent-license-golang.yml", + "html": "google-patent-license-golang.html", + "text": "google-patent-license-golang.LICENSE" + }, + { + "license_key": "google-patent-license-webm", + "spdx_license_key": "LicenseRef-scancode-google-patent-license-webm", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-patent-license-webm.json", + "yml": "google-patent-license-webm.yml", + "html": "google-patent-license-webm.html", + "text": "google-patent-license-webm.LICENSE" + }, + { + "license_key": "google-patent-license-webrtc", + "spdx_license_key": "LicenseRef-scancode-google-patent-license-webrtc", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-patent-license-webrtc.json", + "yml": "google-patent-license-webrtc.yml", + "html": "google-patent-license-webrtc.html", + "text": "google-patent-license-webrtc.LICENSE" + }, + { + "license_key": "google-patent-license", + "spdx_license_key": "LicenseRef-scancode-google-patent-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-patent-license.json", + "yml": "google-patent-license.yml", + "html": "google-patent-license.html", + "text": "google-patent-license.LICENSE" + }, + { + "license_key": "google-tos-2013", + "spdx_license_key": "LicenseRef-scancode-google-tos-2013", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-tos-2013.json", + "yml": "google-tos-2013.yml", + "html": "google-tos-2013.html", + "text": "google-tos-2013.LICENSE" + }, + { + "license_key": "gpl-1.0-plus", + "spdx_license_key": "GPL-1.0-or-later", + "other_spdx_license_keys": [ + "GPL-1.0+" + ], + "is_exception": false, + "is_deprecated": false, + "json": "gpl-1.0-plus.json", + "yml": "gpl-1.0-plus.yml", + "html": "gpl-1.0-plus.html", + "text": "gpl-1.0-plus.LICENSE" + }, + { + "license_key": "gpl-1.0", + "spdx_license_key": "GPL-1.0-only", + "other_spdx_license_keys": [ + "GPL-1.0" + ], + "is_exception": false, + "is_deprecated": false, + "json": "gpl-1.0.json", + "yml": "gpl-1.0.yml", + "html": "gpl-1.0.html", + "text": "gpl-1.0.LICENSE" + }, + { + "license_key": "gpl-2.0-adaptec", + "spdx_license_key": "LicenseRef-scancode-gpl-2.0-adaptec", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gpl-2.0-adaptec.json", + "yml": "gpl-2.0-adaptec.yml", + "html": "gpl-2.0-adaptec.html", + "text": "gpl-2.0-adaptec.LICENSE" + }, + { + "license_key": "gpl-2.0-autoconf", + "spdx_license_key": "GPL-2.0-with-autoconf-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-autoconf.json", + "yml": "gpl-2.0-autoconf.yml", + "html": "gpl-2.0-autoconf.html", + "text": "gpl-2.0-autoconf.LICENSE" + }, + { + "license_key": "gpl-2.0-autoopts", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-autoopts.json", + "yml": "gpl-2.0-autoopts.yml", + "html": "gpl-2.0-autoopts.html", + "text": "gpl-2.0-autoopts.LICENSE" + }, + { + "license_key": "gpl-2.0-bison-2.2", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-bison-2.2.json", + "yml": "gpl-2.0-bison-2.2.yml", + "html": "gpl-2.0-bison-2.2.html", + "text": "gpl-2.0-bison-2.2.LICENSE" + }, + { + "license_key": "gpl-2.0-bison", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-bison.json", + "yml": "gpl-2.0-bison.yml", + "html": "gpl-2.0-bison.html", + "text": "gpl-2.0-bison.LICENSE" + }, + { + "license_key": "gpl-2.0-broadcom-linking", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-broadcom-linking.json", + "yml": "gpl-2.0-broadcom-linking.yml", + "html": "gpl-2.0-broadcom-linking.html", + "text": "gpl-2.0-broadcom-linking.LICENSE" + }, + { + "license_key": "gpl-2.0-classpath", + "spdx_license_key": "GPL-2.0-with-classpath-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-classpath.json", + "yml": "gpl-2.0-classpath.yml", + "html": "gpl-2.0-classpath.html", + "text": "gpl-2.0-classpath.LICENSE" + }, + { + "license_key": "gpl-2.0-cygwin", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-cygwin.json", + "yml": "gpl-2.0-cygwin.yml", + "html": "gpl-2.0-cygwin.html", + "text": "gpl-2.0-cygwin.LICENSE" + }, + { + "license_key": "gpl-2.0-djvu", + "spdx_license_key": "LicenseRef-scancode-gpl-2.0-djvu", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gpl-2.0-djvu.json", + "yml": "gpl-2.0-djvu.yml", + "html": "gpl-2.0-djvu.html", + "text": "gpl-2.0-djvu.LICENSE" + }, + { + "license_key": "gpl-2.0-font", + "spdx_license_key": "GPL-2.0-with-font-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-font.json", + "yml": "gpl-2.0-font.yml", + "html": "gpl-2.0-font.html", + "text": "gpl-2.0-font.LICENSE" + }, + { + "license_key": "gpl-2.0-freertos", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-freertos.json", + "yml": "gpl-2.0-freertos.yml", + "html": "gpl-2.0-freertos.html", + "text": "gpl-2.0-freertos.LICENSE" + }, + { + "license_key": "gpl-2.0-gcc-compiler-exception", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-gcc-compiler-exception.json", + "yml": "gpl-2.0-gcc-compiler-exception.yml", + "html": "gpl-2.0-gcc-compiler-exception.html", + "text": "gpl-2.0-gcc-compiler-exception.LICENSE" + }, + { + "license_key": "gpl-2.0-gcc", + "spdx_license_key": "GPL-2.0-with-GCC-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-gcc.json", + "yml": "gpl-2.0-gcc.yml", + "html": "gpl-2.0-gcc.html", + "text": "gpl-2.0-gcc.LICENSE" + }, + { + "license_key": "gpl-2.0-glibc", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-glibc.json", + "yml": "gpl-2.0-glibc.yml", + "html": "gpl-2.0-glibc.html", + "text": "gpl-2.0-glibc.LICENSE" + }, + { + "license_key": "gpl-2.0-guile", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-guile.json", + "yml": "gpl-2.0-guile.yml", + "html": "gpl-2.0-guile.html", + "text": "gpl-2.0-guile.LICENSE" + }, + { + "license_key": "gpl-2.0-ice", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-ice.json", + "yml": "gpl-2.0-ice.yml", + "html": "gpl-2.0-ice.html", + "text": "gpl-2.0-ice.LICENSE" + }, + { + "license_key": "gpl-2.0-independent-module-linking", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-independent-module-linking.json", + "yml": "gpl-2.0-independent-module-linking.yml", + "html": "gpl-2.0-independent-module-linking.html", + "text": "gpl-2.0-independent-module-linking.LICENSE" + }, + { + "license_key": "gpl-2.0-iolib", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-iolib.json", + "yml": "gpl-2.0-iolib.yml", + "html": "gpl-2.0-iolib.html", + "text": "gpl-2.0-iolib.LICENSE" + }, + { + "license_key": "gpl-2.0-iso-cpp", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-iso-cpp.json", + "yml": "gpl-2.0-iso-cpp.yml", + "html": "gpl-2.0-iso-cpp.html", + "text": "gpl-2.0-iso-cpp.LICENSE" + }, + { + "license_key": "gpl-2.0-javascript", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-javascript.json", + "yml": "gpl-2.0-javascript.yml", + "html": "gpl-2.0-javascript.html", + "text": "gpl-2.0-javascript.LICENSE" + }, + { + "license_key": "gpl-2.0-kernel", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-kernel.json", + "yml": "gpl-2.0-kernel.yml", + "html": "gpl-2.0-kernel.html", + "text": "gpl-2.0-kernel.LICENSE" + }, + { + "license_key": "gpl-2.0-koterov", + "spdx_license_key": "LicenseRef-scancode-gpl-2.0-koterov", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gpl-2.0-koterov.json", + "yml": "gpl-2.0-koterov.yml", + "html": "gpl-2.0-koterov.html", + "text": "gpl-2.0-koterov.LICENSE" + }, + { + "license_key": "gpl-2.0-libgit2", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-libgit2.json", + "yml": "gpl-2.0-libgit2.yml", + "html": "gpl-2.0-libgit2.html", + "text": "gpl-2.0-libgit2.LICENSE" + }, + { + "license_key": "gpl-2.0-library", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-library.json", + "yml": "gpl-2.0-library.yml", + "html": "gpl-2.0-library.html", + "text": "gpl-2.0-library.LICENSE" + }, + { + "license_key": "gpl-2.0-libtool", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-libtool.json", + "yml": "gpl-2.0-libtool.yml", + "html": "gpl-2.0-libtool.html", + "text": "gpl-2.0-libtool.LICENSE" + }, + { + "license_key": "gpl-2.0-lmbench", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-lmbench.json", + "yml": "gpl-2.0-lmbench.yml", + "html": "gpl-2.0-lmbench.html", + "text": "gpl-2.0-lmbench.LICENSE" + }, + { + "license_key": "gpl-2.0-mysql-connector-odbc", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-mysql-connector-odbc.json", + "yml": "gpl-2.0-mysql-connector-odbc.yml", + "html": "gpl-2.0-mysql-connector-odbc.html", + "text": "gpl-2.0-mysql-connector-odbc.LICENSE" + }, + { + "license_key": "gpl-2.0-mysql-floss", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-mysql-floss.json", + "yml": "gpl-2.0-mysql-floss.yml", + "html": "gpl-2.0-mysql-floss.html", + "text": "gpl-2.0-mysql-floss.LICENSE" + }, + { + "license_key": "gpl-2.0-openjdk", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-openjdk.json", + "yml": "gpl-2.0-openjdk.yml", + "html": "gpl-2.0-openjdk.html", + "text": "gpl-2.0-openjdk.LICENSE" + }, + { + "license_key": "gpl-2.0-openssl", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-openssl.json", + "yml": "gpl-2.0-openssl.yml", + "html": "gpl-2.0-openssl.html", + "text": "gpl-2.0-openssl.LICENSE" + }, + { + "license_key": "gpl-2.0-oracle-mysql-foss", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-oracle-mysql-foss.json", + "yml": "gpl-2.0-oracle-mysql-foss.yml", + "html": "gpl-2.0-oracle-mysql-foss.html", + "text": "gpl-2.0-oracle-mysql-foss.LICENSE" + }, + { + "license_key": "gpl-2.0-oracle-openjdk", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-oracle-openjdk.json", + "yml": "gpl-2.0-oracle-openjdk.yml", + "html": "gpl-2.0-oracle-openjdk.html", + "text": "gpl-2.0-oracle-openjdk.LICENSE" + }, + { + "license_key": "gpl-2.0-plus-ada", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-plus-ada.json", + "yml": "gpl-2.0-plus-ada.yml", + "html": "gpl-2.0-plus-ada.html", + "text": "gpl-2.0-plus-ada.LICENSE" + }, + { + "license_key": "gpl-2.0-plus-ekiga", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-plus-ekiga.json", + "yml": "gpl-2.0-plus-ekiga.yml", + "html": "gpl-2.0-plus-ekiga.html", + "text": "gpl-2.0-plus-ekiga.LICENSE" + }, + { + "license_key": "gpl-2.0-plus-gcc", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-plus-gcc.json", + "yml": "gpl-2.0-plus-gcc.yml", + "html": "gpl-2.0-plus-gcc.html", + "text": "gpl-2.0-plus-gcc.LICENSE" + }, + { + "license_key": "gpl-2.0-plus-geoserver", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-plus-geoserver.json", + "yml": "gpl-2.0-plus-geoserver.yml", + "html": "gpl-2.0-plus-geoserver.html", + "text": "gpl-2.0-plus-geoserver.LICENSE" + }, + { + "license_key": "gpl-2.0-plus-linking", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-plus-linking.json", + "yml": "gpl-2.0-plus-linking.yml", + "html": "gpl-2.0-plus-linking.html", + "text": "gpl-2.0-plus-linking.LICENSE" + }, + { + "license_key": "gpl-2.0-plus-nant", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-plus-nant.json", + "yml": "gpl-2.0-plus-nant.yml", + "html": "gpl-2.0-plus-nant.html", + "text": "gpl-2.0-plus-nant.LICENSE" + }, + { + "license_key": "gpl-2.0-plus-openmotif", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-plus-openmotif.json", + "yml": "gpl-2.0-plus-openmotif.yml", + "html": "gpl-2.0-plus-openmotif.html", + "text": "gpl-2.0-plus-openmotif.LICENSE" + }, + { + "license_key": "gpl-2.0-plus-openssl", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-plus-openssl.json", + "yml": "gpl-2.0-plus-openssl.yml", + "html": "gpl-2.0-plus-openssl.html", + "text": "gpl-2.0-plus-openssl.LICENSE" + }, + { + "license_key": "gpl-2.0-plus-sane", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-plus-sane.json", + "yml": "gpl-2.0-plus-sane.yml", + "html": "gpl-2.0-plus-sane.html", + "text": "gpl-2.0-plus-sane.LICENSE" + }, + { + "license_key": "gpl-2.0-plus-subcommander", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-plus-subcommander.json", + "yml": "gpl-2.0-plus-subcommander.yml", + "html": "gpl-2.0-plus-subcommander.html", + "text": "gpl-2.0-plus-subcommander.LICENSE" + }, + { + "license_key": "gpl-2.0-plus-syntext", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-plus-syntext.json", + "yml": "gpl-2.0-plus-syntext.yml", + "html": "gpl-2.0-plus-syntext.html", + "text": "gpl-2.0-plus-syntext.LICENSE" + }, + { + "license_key": "gpl-2.0-plus-upx", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-plus-upx.json", + "yml": "gpl-2.0-plus-upx.yml", + "html": "gpl-2.0-plus-upx.html", + "text": "gpl-2.0-plus-upx.LICENSE" + }, + { + "license_key": "gpl-2.0-plus", + "spdx_license_key": "GPL-2.0-or-later", + "other_spdx_license_keys": [ + "GPL-2.0+", + "GPL 2.0+" + ], + "is_exception": false, + "is_deprecated": false, + "json": "gpl-2.0-plus.json", + "yml": "gpl-2.0-plus.yml", + "html": "gpl-2.0-plus.html", + "text": "gpl-2.0-plus.LICENSE" + }, + { + "license_key": "gpl-2.0-proguard", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-proguard.json", + "yml": "gpl-2.0-proguard.yml", + "html": "gpl-2.0-proguard.html", + "text": "gpl-2.0-proguard.LICENSE" + }, + { + "license_key": "gpl-2.0-qt-qca", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-qt-qca.json", + "yml": "gpl-2.0-qt-qca.yml", + "html": "gpl-2.0-qt-qca.html", + "text": "gpl-2.0-qt-qca.LICENSE" + }, + { + "license_key": "gpl-2.0-redhat", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-redhat.json", + "yml": "gpl-2.0-redhat.yml", + "html": "gpl-2.0-redhat.html", + "text": "gpl-2.0-redhat.LICENSE" + }, + { + "license_key": "gpl-2.0-rrdtool-floss", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-rrdtool-floss.json", + "yml": "gpl-2.0-rrdtool-floss.yml", + "html": "gpl-2.0-rrdtool-floss.html", + "text": "gpl-2.0-rrdtool-floss.LICENSE" + }, + { + "license_key": "gpl-2.0-uboot", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-uboot.json", + "yml": "gpl-2.0-uboot.yml", + "html": "gpl-2.0-uboot.html", + "text": "gpl-2.0-uboot.LICENSE" + }, + { + "license_key": "gpl-2.0", + "spdx_license_key": "GPL-2.0-only", + "other_spdx_license_keys": [ + "GPL-2.0", + "GPL 2.0" + ], + "is_exception": false, + "is_deprecated": false, + "json": "gpl-2.0.json", + "yml": "gpl-2.0.yml", + "html": "gpl-2.0.html", + "text": "gpl-2.0.LICENSE" + }, + { + "license_key": "gpl-3.0-aptana", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-3.0-aptana.json", + "yml": "gpl-3.0-aptana.yml", + "html": "gpl-3.0-aptana.html", + "text": "gpl-3.0-aptana.LICENSE" + }, + { + "license_key": "gpl-3.0-autoconf", + "spdx_license_key": "GPL-3.0-with-autoconf-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-3.0-autoconf.json", + "yml": "gpl-3.0-autoconf.yml", + "html": "gpl-3.0-autoconf.html", + "text": "gpl-3.0-autoconf.LICENSE" + }, + { + "license_key": "gpl-3.0-bison", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-3.0-bison.json", + "yml": "gpl-3.0-bison.yml", + "html": "gpl-3.0-bison.html", + "text": "gpl-3.0-bison.LICENSE" + }, + { + "license_key": "gpl-3.0-cygwin", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-3.0-cygwin.json", + "yml": "gpl-3.0-cygwin.yml", + "html": "gpl-3.0-cygwin.html", + "text": "gpl-3.0-cygwin.LICENSE" + }, + { + "license_key": "gpl-3.0-font", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-3.0-font.json", + "yml": "gpl-3.0-font.yml", + "html": "gpl-3.0-font.html", + "text": "gpl-3.0-font.LICENSE" + }, + { + "license_key": "gpl-3.0-gcc", + "spdx_license_key": "GPL-3.0-with-GCC-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-3.0-gcc.json", + "yml": "gpl-3.0-gcc.yml", + "html": "gpl-3.0-gcc.html", + "text": "gpl-3.0-gcc.LICENSE" + }, + { + "license_key": "gpl-3.0-linking-exception", + "spdx_license_key": "GPL-3.0-linking-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "gpl-3.0-linking-exception.json", + "yml": "gpl-3.0-linking-exception.yml", + "html": "gpl-3.0-linking-exception.html", + "text": "gpl-3.0-linking-exception.LICENSE" + }, + { + "license_key": "gpl-3.0-linking-source-exception", + "spdx_license_key": "GPL-3.0-linking-source-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "gpl-3.0-linking-source-exception.json", + "yml": "gpl-3.0-linking-source-exception.yml", + "html": "gpl-3.0-linking-source-exception.html", + "text": "gpl-3.0-linking-source-exception.LICENSE" + }, + { + "license_key": "gpl-3.0-openbd", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-3.0-openbd.json", + "yml": "gpl-3.0-openbd.yml", + "html": "gpl-3.0-openbd.html", + "text": "gpl-3.0-openbd.LICENSE" + }, + { + "license_key": "gpl-3.0-plus-openssl", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-3.0-plus-openssl.json", + "yml": "gpl-3.0-plus-openssl.yml", + "html": "gpl-3.0-plus-openssl.html", + "text": "gpl-3.0-plus-openssl.LICENSE" + }, + { + "license_key": "gpl-3.0-plus", + "spdx_license_key": "GPL-3.0-or-later", + "other_spdx_license_keys": [ + "GPL-3.0+" + ], + "is_exception": false, + "is_deprecated": false, + "json": "gpl-3.0-plus.json", + "yml": "gpl-3.0-plus.yml", + "html": "gpl-3.0-plus.html", + "text": "gpl-3.0-plus.LICENSE" + }, + { + "license_key": "gpl-3.0", + "spdx_license_key": "GPL-3.0-only", + "other_spdx_license_keys": [ + "GPL-3.0" + ], + "is_exception": false, + "is_deprecated": false, + "json": "gpl-3.0.json", + "yml": "gpl-3.0.yml", + "html": "gpl-3.0.html", + "text": "gpl-3.0.LICENSE" + }, + { + "license_key": "gpl-generic-additional-terms", + "spdx_license_key": "LicenseRef-scancode-gpl-generic-additional-terms", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "gpl-generic-additional-terms.json", + "yml": "gpl-generic-additional-terms.yml", + "html": "gpl-generic-additional-terms.html", + "text": "gpl-generic-additional-terms.LICENSE" + }, + { + "license_key": "gplcc-1.0", + "spdx_license_key": "GPL-CC-1.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "gplcc-1.0.json", + "yml": "gplcc-1.0.yml", + "html": "gplcc-1.0.html", + "text": "gplcc-1.0.LICENSE" + }, + { + "license_key": "graphics-gems", + "spdx_license_key": "LicenseRef-scancode-graphics-gems", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "graphics-gems.json", + "yml": "graphics-gems.yml", + "html": "graphics-gems.html", + "text": "graphics-gems.LICENSE" + }, + { + "license_key": "greg-roelofs", + "spdx_license_key": "LicenseRef-scancode-greg-roelofs", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "greg-roelofs.json", + "yml": "greg-roelofs.yml", + "html": "greg-roelofs.html", + "text": "greg-roelofs.LICENSE" + }, + { + "license_key": "gregory-pietsch", + "spdx_license_key": "LicenseRef-scancode-gregory-pietsch", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gregory-pietsch.json", + "yml": "gregory-pietsch.yml", + "html": "gregory-pietsch.html", + "text": "gregory-pietsch.LICENSE" + }, + { + "license_key": "gsoap-1.3a", + "spdx_license_key": "LicenseRef-scancode-gsoap-1.3a", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gsoap-1.3a.json", + "yml": "gsoap-1.3a.yml", + "html": "gsoap-1.3a.html", + "text": "gsoap-1.3a.LICENSE" + }, + { + "license_key": "gsoap-1.3b", + "spdx_license_key": "gSOAP-1.3b", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gsoap-1.3b.json", + "yml": "gsoap-1.3b.yml", + "html": "gsoap-1.3b.html", + "text": "gsoap-1.3b.LICENSE" + }, + { + "license_key": "gstreamer-exception-2.0", + "spdx_license_key": "LicenseRef-scancode-gstreamer-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "gstreamer-exception-2.0.json", + "yml": "gstreamer-exception-2.0.yml", + "html": "gstreamer-exception-2.0.html", + "text": "gstreamer-exception-2.0.LICENSE" + }, + { + "license_key": "guile-exception-2.0", + "spdx_license_key": "LicenseRef-scancode-guile-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "guile-exception-2.0.json", + "yml": "guile-exception-2.0.yml", + "html": "guile-exception-2.0.html", + "text": "guile-exception-2.0.LICENSE" + }, + { + "license_key": "gust-font-1.0", + "spdx_license_key": "LicenseRef-scancode-gust-font-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gust-font-1.0.json", + "yml": "gust-font-1.0.yml", + "html": "gust-font-1.0.html", + "text": "gust-font-1.0.LICENSE" + }, + { + "license_key": "gust-font-2006-09-30", + "spdx_license_key": "LicenseRef-scancode-gust-font-2006-09-30", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gust-font-2006-09-30.json", + "yml": "gust-font-2006-09-30.yml", + "html": "gust-font-2006-09-30.html", + "text": "gust-font-2006-09-30.LICENSE" + }, + { + "license_key": "gutenberg-2020", + "spdx_license_key": "LicenseRef-scancode-gutenberg-2020", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gutenberg-2020.json", + "yml": "gutenberg-2020.yml", + "html": "gutenberg-2020.html", + "text": "gutenberg-2020.LICENSE" + }, + { + "license_key": "h2-1.0", + "spdx_license_key": "LicenseRef-scancode-h2-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "h2-1.0.json", + "yml": "h2-1.0.yml", + "html": "h2-1.0.html", + "text": "h2-1.0.LICENSE" + }, + { + "license_key": "hacos-1.2", + "spdx_license_key": "LicenseRef-scancode-hacos-1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hacos-1.2.json", + "yml": "hacos-1.2.yml", + "html": "hacos-1.2.html", + "text": "hacos-1.2.LICENSE" + }, + { + "license_key": "haskell-report", + "spdx_license_key": "HaskellReport", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "haskell-report.json", + "yml": "haskell-report.yml", + "html": "haskell-report.html", + "text": "haskell-report.LICENSE" + }, + { + "license_key": "hauppauge-firmware-eula", + "spdx_license_key": "LicenseRef-scancode-hauppauge-firmware-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hauppauge-firmware-eula.json", + "yml": "hauppauge-firmware-eula.yml", + "html": "hauppauge-firmware-eula.html", + "text": "hauppauge-firmware-eula.LICENSE" + }, + { + "license_key": "hauppauge-firmware-oem", + "spdx_license_key": "LicenseRef-scancode-hauppauge-firmware-oem", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hauppauge-firmware-oem.json", + "yml": "hauppauge-firmware-oem.yml", + "html": "hauppauge-firmware-oem.html", + "text": "hauppauge-firmware-oem.LICENSE" + }, + { + "license_key": "hazelcast-community-1.0", + "spdx_license_key": "LicenseRef-scancode-hazelcast-community-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hazelcast-community-1.0.json", + "yml": "hazelcast-community-1.0.yml", + "html": "hazelcast-community-1.0.html", + "text": "hazelcast-community-1.0.LICENSE" + }, + { + "license_key": "hdf4", + "spdx_license_key": "LicenseRef-scancode-hdf4", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hdf4.json", + "yml": "hdf4.yml", + "html": "hdf4.html", + "text": "hdf4.LICENSE" + }, + { + "license_key": "hdf5", + "spdx_license_key": "LicenseRef-scancode-hdf5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hdf5.json", + "yml": "hdf5.yml", + "html": "hdf5.html", + "text": "hdf5.LICENSE" + }, + { + "license_key": "hdparm", + "spdx_license_key": "LicenseRef-scancode-hdparm", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hdparm.json", + "yml": "hdparm.yml", + "html": "hdparm.html", + "text": "hdparm.LICENSE" + }, + { + "license_key": "helios-eula", + "spdx_license_key": "LicenseRef-scancode-helios-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "helios-eula.json", + "yml": "helios-eula.yml", + "html": "helios-eula.html", + "text": "helios-eula.LICENSE" + }, + { + "license_key": "helix", + "spdx_license_key": "LicenseRef-scancode-helix", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "helix.json", + "yml": "helix.yml", + "html": "helix.html", + "text": "helix.LICENSE" + }, + { + "license_key": "henry-spencer-1999", + "spdx_license_key": "Spencer-99", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "henry-spencer-1999.json", + "yml": "henry-spencer-1999.yml", + "html": "henry-spencer-1999.html", + "text": "henry-spencer-1999.LICENSE" + }, + { + "license_key": "here-proprietary", + "spdx_license_key": "LicenseRef-scancode-here-proprietary", + "other_spdx_license_keys": [ + "LicenseRef-Proprietary-HERE" + ], + "is_exception": false, + "is_deprecated": false, + "json": "here-proprietary.json", + "yml": "here-proprietary.yml", + "html": "here-proprietary.html", + "text": "here-proprietary.LICENSE" + }, + { + "license_key": "hessla", + "spdx_license_key": "LicenseRef-scancode-hessla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hessla.json", + "yml": "hessla.yml", + "html": "hessla.html", + "text": "hessla.LICENSE" + }, + { + "license_key": "hidapi", + "spdx_license_key": "LicenseRef-scancode-hidapi", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hidapi.json", + "yml": "hidapi.yml", + "html": "hidapi.html", + "text": "hidapi.LICENSE" + }, + { + "license_key": "hippocratic-1.0", + "spdx_license_key": "LicenseRef-scancode-hippocratic-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hippocratic-1.0.json", + "yml": "hippocratic-1.0.yml", + "html": "hippocratic-1.0.html", + "text": "hippocratic-1.0.LICENSE" + }, + { + "license_key": "hippocratic-1.1", + "spdx_license_key": "LicenseRef-scancode-hippocratic-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hippocratic-1.1.json", + "yml": "hippocratic-1.1.yml", + "html": "hippocratic-1.1.html", + "text": "hippocratic-1.1.LICENSE" + }, + { + "license_key": "hippocratic-1.2", + "spdx_license_key": "LicenseRef-scancode-hippocratic-1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hippocratic-1.2.json", + "yml": "hippocratic-1.2.yml", + "html": "hippocratic-1.2.html", + "text": "hippocratic-1.2.LICENSE" + }, + { + "license_key": "hippocratic-2.0", + "spdx_license_key": "LicenseRef-scancode-hippocratic-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hippocratic-2.0.json", + "yml": "hippocratic-2.0.yml", + "html": "hippocratic-2.0.html", + "text": "hippocratic-2.0.LICENSE" + }, + { + "license_key": "hippocratic-2.1", + "spdx_license_key": "Hippocratic-2.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hippocratic-2.1.json", + "yml": "hippocratic-2.1.yml", + "html": "hippocratic-2.1.html", + "text": "hippocratic-2.1.LICENSE" + }, + { + "license_key": "historical-ntp", + "spdx_license_key": "LicenseRef-scancode-historical-ntp", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "historical-ntp.json", + "yml": "historical-ntp.yml", + "html": "historical-ntp.html", + "text": "historical-ntp.LICENSE" + }, + { + "license_key": "historical-sell-variant", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "historical-sell-variant.json", + "yml": "historical-sell-variant.yml", + "html": "historical-sell-variant.html", + "text": "historical-sell-variant.LICENSE" + }, + { + "license_key": "historical", + "spdx_license_key": "HPND", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "historical.json", + "yml": "historical.yml", + "html": "historical.html", + "text": "historical.LICENSE" + }, + { + "license_key": "hot-potato", + "spdx_license_key": "LicenseRef-scancode-hot-potato", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hot-potato.json", + "yml": "hot-potato.yml", + "html": "hot-potato.html", + "text": "hot-potato.LICENSE" + }, + { + "license_key": "hp-enterprise-eula", + "spdx_license_key": "LicenseRef-scancode-hp-enterprise-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hp-enterprise-eula.json", + "yml": "hp-enterprise-eula.yml", + "html": "hp-enterprise-eula.html", + "text": "hp-enterprise-eula.LICENSE" + }, + { + "license_key": "hp-netperf", + "spdx_license_key": "LicenseRef-scancode-hp-netperf", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hp-netperf.json", + "yml": "hp-netperf.yml", + "html": "hp-netperf.html", + "text": "hp-netperf.LICENSE" + }, + { + "license_key": "hp-proliant-essentials", + "spdx_license_key": "LicenseRef-scancode-hp-proliant-essentials", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hp-proliant-essentials.json", + "yml": "hp-proliant-essentials.yml", + "html": "hp-proliant-essentials.html", + "text": "hp-proliant-essentials.LICENSE" + }, + { + "license_key": "hp-snmp-pp", + "spdx_license_key": "LicenseRef-scancode-hp-snmp-pp", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hp-snmp-pp.json", + "yml": "hp-snmp-pp.yml", + "html": "hp-snmp-pp.html", + "text": "hp-snmp-pp.LICENSE" + }, + { + "license_key": "hp-software-eula", + "spdx_license_key": "LicenseRef-scancode-hp-software-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hp-software-eula.json", + "yml": "hp-software-eula.yml", + "html": "hp-software-eula.html", + "text": "hp-software-eula.LICENSE" + }, + { + "license_key": "hp-ux-java", + "spdx_license_key": "LicenseRef-scancode-hp-ux-java", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hp-ux-java.json", + "yml": "hp-ux-java.yml", + "html": "hp-ux-java.html", + "text": "hp-ux-java.LICENSE" + }, + { + "license_key": "hp-ux-jre", + "spdx_license_key": "LicenseRef-scancode-hp-ux-jre", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hp-ux-jre.json", + "yml": "hp-ux-jre.yml", + "html": "hp-ux-jre.html", + "text": "hp-ux-jre.LICENSE" + }, + { + "license_key": "hp", + "spdx_license_key": "LicenseRef-scancode-hp", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hp.json", + "yml": "hp.yml", + "html": "hp.html", + "text": "hp.LICENSE" + }, + { + "license_key": "hs-regexp-orig", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "hs-regexp-orig.json", + "yml": "hs-regexp-orig.yml", + "html": "hs-regexp-orig.html", + "text": "hs-regexp-orig.LICENSE" + }, + { + "license_key": "hs-regexp", + "spdx_license_key": "Spencer-94", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hs-regexp.json", + "yml": "hs-regexp.yml", + "html": "hs-regexp.html", + "text": "hs-regexp.LICENSE" + }, + { + "license_key": "html5", + "spdx_license_key": "LicenseRef-scancode-html5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "html5.json", + "yml": "html5.yml", + "html": "html5.html", + "text": "html5.LICENSE" + }, + { + "license_key": "httpget", + "spdx_license_key": "LicenseRef-scancode-httpget", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "httpget.json", + "yml": "httpget.yml", + "html": "httpget.html", + "text": "httpget.LICENSE" + }, + { + "license_key": "hxd", + "spdx_license_key": "LicenseRef-scancode-hxd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hxd.json", + "yml": "hxd.yml", + "html": "hxd.html", + "text": "hxd.LICENSE" + }, + { + "license_key": "i2p-gpl-java-exception", + "spdx_license_key": "i2p-gpl-java-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "i2p-gpl-java-exception.json", + "yml": "i2p-gpl-java-exception.yml", + "html": "i2p-gpl-java-exception.html", + "text": "i2p-gpl-java-exception.LICENSE" + }, + { + "license_key": "ian-kaplan", + "spdx_license_key": "LicenseRef-scancode-ian-kaplan", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ian-kaplan.json", + "yml": "ian-kaplan.yml", + "html": "ian-kaplan.html", + "text": "ian-kaplan.LICENSE" + }, + { + "license_key": "ian-piumarta", + "spdx_license_key": "LicenseRef-scancode-ian-piumarta", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ian-piumarta.json", + "yml": "ian-piumarta.yml", + "html": "ian-piumarta.html", + "text": "ian-piumarta.LICENSE" + }, + { + "license_key": "ibm-as-is", + "spdx_license_key": "LicenseRef-scancode-ibm-as-is", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ibm-as-is.json", + "yml": "ibm-as-is.yml", + "html": "ibm-as-is.html", + "text": "ibm-as-is.LICENSE" + }, + { + "license_key": "ibm-developerworks-community-download", + "spdx_license_key": "LicenseRef-scancode-ibm-developerworks-community-download", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ibm-developerworks-community-download.json", + "yml": "ibm-developerworks-community-download.yml", + "html": "ibm-developerworks-community-download.html", + "text": "ibm-developerworks-community-download.LICENSE" + }, + { + "license_key": "ibm-dhcp", + "spdx_license_key": "LicenseRef-scancode-ibm-dhcp", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ibm-dhcp.json", + "yml": "ibm-dhcp.yml", + "html": "ibm-dhcp.html", + "text": "ibm-dhcp.LICENSE" + }, + { + "license_key": "ibm-icu", + "spdx_license_key": "LicenseRef-scancode-ibm-icu", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ibm-icu.json", + "yml": "ibm-icu.yml", + "html": "ibm-icu.html", + "text": "ibm-icu.LICENSE" + }, + { + "license_key": "ibm-jre", + "spdx_license_key": "LicenseRef-scancode-ibm-jre", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ibm-jre.json", + "yml": "ibm-jre.yml", + "html": "ibm-jre.html", + "text": "ibm-jre.LICENSE" + }, + { + "license_key": "ibm-nwsc", + "spdx_license_key": "LicenseRef-scancode-ibm-nwsc", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ibm-nwsc.json", + "yml": "ibm-nwsc.yml", + "html": "ibm-nwsc.html", + "text": "ibm-nwsc.LICENSE" + }, + { + "license_key": "ibm-pibs", + "spdx_license_key": "IBM-pibs", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ibm-pibs.json", + "yml": "ibm-pibs.yml", + "html": "ibm-pibs.html", + "text": "ibm-pibs.LICENSE" + }, + { + "license_key": "ibm-sample", + "spdx_license_key": "LicenseRef-scancode-ibm-sample", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ibm-sample.json", + "yml": "ibm-sample.yml", + "html": "ibm-sample.html", + "text": "ibm-sample.LICENSE" + }, + { + "license_key": "ibmpl-1.0", + "spdx_license_key": "IPL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ibmpl-1.0.json", + "yml": "ibmpl-1.0.yml", + "html": "ibmpl-1.0.html", + "text": "ibmpl-1.0.LICENSE" + }, + { + "license_key": "ibpp", + "spdx_license_key": "LicenseRef-scancode-ibpp", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ibpp.json", + "yml": "ibpp.yml", + "html": "ibpp.html", + "text": "ibpp.LICENSE" + }, + { + "license_key": "icann-public", + "spdx_license_key": "LicenseRef-scancode-icann-public", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "icann-public.json", + "yml": "icann-public.yml", + "html": "icann-public.html", + "text": "icann-public.LICENSE" + }, + { + "license_key": "ice-exception-2.0", + "spdx_license_key": "LicenseRef-scancode-ice-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "ice-exception-2.0.json", + "yml": "ice-exception-2.0.yml", + "html": "ice-exception-2.0.html", + "text": "ice-exception-2.0.LICENSE" + }, + { + "license_key": "icot-free", + "spdx_license_key": "LicenseRef-scancode-icot-free", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "icot-free.json", + "yml": "icot-free.yml", + "html": "icot-free.html", + "text": "icot-free.LICENSE" + }, + { + "license_key": "idt-notice", + "spdx_license_key": "LicenseRef-scancode-idt-notice", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "idt-notice.json", + "yml": "idt-notice.yml", + "html": "idt-notice.html", + "text": "idt-notice.LICENSE" + }, + { + "license_key": "ietf-trust", + "spdx_license_key": "LicenseRef-scancode-ietf-trust", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ietf-trust.json", + "yml": "ietf-trust.yml", + "html": "ietf-trust.html", + "text": "ietf-trust.LICENSE" + }, + { + "license_key": "ietf", + "spdx_license_key": "LicenseRef-scancode-ietf", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ietf.json", + "yml": "ietf.yml", + "html": "ietf.html", + "text": "ietf.LICENSE" + }, + { + "license_key": "ijg", + "spdx_license_key": "IJG", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ijg.json", + "yml": "ijg.yml", + "html": "ijg.html", + "text": "ijg.LICENSE" + }, + { + "license_key": "ilmid", + "spdx_license_key": "LicenseRef-scancode-ilmid", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ilmid.json", + "yml": "ilmid.yml", + "html": "ilmid.html", + "text": "ilmid.LICENSE" + }, + { + "license_key": "imagemagick", + "spdx_license_key": "ImageMagick", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "imagemagick.json", + "yml": "imagemagick.yml", + "html": "imagemagick.html", + "text": "imagemagick.LICENSE" + }, + { + "license_key": "imagen", + "spdx_license_key": "LicenseRef-scancode-imagen", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "imagen.json", + "yml": "imagen.yml", + "html": "imagen.html", + "text": "imagen.LICENSE" + }, + { + "license_key": "imlib2", + "spdx_license_key": "Imlib2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "imlib2.json", + "yml": "imlib2.yml", + "html": "imlib2.html", + "text": "imlib2.LICENSE" + }, + { + "license_key": "independent-module-linking-exception", + "spdx_license_key": "LicenseRef-scancode-independent-module-linking-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "independent-module-linking-exception.json", + "yml": "independent-module-linking-exception.yml", + "html": "independent-module-linking-exception.html", + "text": "independent-module-linking-exception.LICENSE" + }, + { + "license_key": "indiana-extreme-1.2", + "spdx_license_key": "xpp", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "indiana-extreme-1.2.json", + "yml": "indiana-extreme-1.2.yml", + "html": "indiana-extreme-1.2.html", + "text": "indiana-extreme-1.2.LICENSE" + }, + { + "license_key": "indiana-extreme", + "spdx_license_key": "LicenseRef-scancode-indiana-extreme", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "indiana-extreme.json", + "yml": "indiana-extreme.yml", + "html": "indiana-extreme.html", + "text": "indiana-extreme.LICENSE" + }, + { + "license_key": "infineon-free", + "spdx_license_key": "LicenseRef-scancode-infineon-free", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "infineon-free.json", + "yml": "infineon-free.yml", + "html": "infineon-free.html", + "text": "infineon-free.LICENSE" + }, + { + "license_key": "info-zip-1997-10", + "spdx_license_key": "LicenseRef-scancode-info-zip-1997-10", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "info-zip-1997-10.json", + "yml": "info-zip-1997-10.yml", + "html": "info-zip-1997-10.html", + "text": "info-zip-1997-10.LICENSE" + }, + { + "license_key": "info-zip-2001-01", + "spdx_license_key": "LicenseRef-scancode-info-zip-2001-01", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "info-zip-2001-01.json", + "yml": "info-zip-2001-01.yml", + "html": "info-zip-2001-01.html", + "text": "info-zip-2001-01.LICENSE" + }, + { + "license_key": "info-zip-2002-02", + "spdx_license_key": "LicenseRef-scancode-info-zip-2002-02", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "info-zip-2002-02.json", + "yml": "info-zip-2002-02.yml", + "html": "info-zip-2002-02.html", + "text": "info-zip-2002-02.LICENSE" + }, + { + "license_key": "info-zip-2003-05", + "spdx_license_key": "LicenseRef-scancode-info-zip-2003-05", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "info-zip-2003-05.json", + "yml": "info-zip-2003-05.yml", + "html": "info-zip-2003-05.html", + "text": "info-zip-2003-05.LICENSE" + }, + { + "license_key": "info-zip-2004-05", + "spdx_license_key": "LicenseRef-scancode-info-zip-2004-05", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "info-zip-2004-05.json", + "yml": "info-zip-2004-05.yml", + "html": "info-zip-2004-05.html", + "text": "info-zip-2004-05.LICENSE" + }, + { + "license_key": "info-zip-2005-02", + "spdx_license_key": "LicenseRef-scancode-info-zip-2005-02", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "info-zip-2005-02.json", + "yml": "info-zip-2005-02.yml", + "html": "info-zip-2005-02.html", + "text": "info-zip-2005-02.LICENSE" + }, + { + "license_key": "info-zip-2007-03", + "spdx_license_key": "LicenseRef-scancode-info-zip-2007-03", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "info-zip-2007-03.json", + "yml": "info-zip-2007-03.yml", + "html": "info-zip-2007-03.html", + "text": "info-zip-2007-03.LICENSE" + }, + { + "license_key": "info-zip-2009-01", + "spdx_license_key": "LicenseRef-scancode-info-zip-2009-01", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "info-zip-2009-01.json", + "yml": "info-zip-2009-01.yml", + "html": "info-zip-2009-01.html", + "text": "info-zip-2009-01.LICENSE" + }, + { + "license_key": "info-zip", + "spdx_license_key": "Info-ZIP", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "info-zip.json", + "yml": "info-zip.yml", + "html": "info-zip.html", + "text": "info-zip.LICENSE" + }, + { + "license_key": "infonode-1.1", + "spdx_license_key": "LicenseRef-scancode-infonode-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "infonode-1.1.json", + "yml": "infonode-1.1.yml", + "html": "infonode-1.1.html", + "text": "infonode-1.1.LICENSE" + }, + { + "license_key": "initial-developer-public", + "spdx_license_key": "LicenseRef-scancode-initial-developer-public", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "initial-developer-public.json", + "yml": "initial-developer-public.yml", + "html": "initial-developer-public.html", + "text": "initial-developer-public.LICENSE" + }, + { + "license_key": "inner-net-2.0", + "spdx_license_key": "LicenseRef-scancode-inner-net-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "inner-net-2.0.json", + "yml": "inner-net-2.0.yml", + "html": "inner-net-2.0.html", + "text": "inner-net-2.0.LICENSE" + }, + { + "license_key": "inno-setup", + "spdx_license_key": "LicenseRef-scancode-inno-setup", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "inno-setup.json", + "yml": "inno-setup.yml", + "html": "inno-setup.html", + "text": "inno-setup.LICENSE" + }, + { + "license_key": "inria-linking-exception", + "spdx_license_key": "LicenseRef-scancode-inria-linking-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "inria-linking-exception.json", + "yml": "inria-linking-exception.yml", + "html": "inria-linking-exception.html", + "text": "inria-linking-exception.LICENSE" + }, + { + "license_key": "installsite", + "spdx_license_key": "LicenseRef-scancode-installsite", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "installsite.json", + "yml": "installsite.yml", + "html": "installsite.html", + "text": "installsite.LICENSE" + }, + { + "license_key": "intel-acpi", + "spdx_license_key": "Intel-ACPI", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "intel-acpi.json", + "yml": "intel-acpi.yml", + "html": "intel-acpi.html", + "text": "intel-acpi.LICENSE" + }, + { + "license_key": "intel-bcl", + "spdx_license_key": "LicenseRef-scancode-intel-bcl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "intel-bcl.json", + "yml": "intel-bcl.yml", + "html": "intel-bcl.html", + "text": "intel-bcl.LICENSE" + }, + { + "license_key": "intel-bsd-2-clause", + "spdx_license_key": "LicenseRef-scancode-intel-bsd-2-clause", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "intel-bsd-2-clause.json", + "yml": "intel-bsd-2-clause.yml", + "html": "intel-bsd-2-clause.html", + "text": "intel-bsd-2-clause.LICENSE" + }, + { + "license_key": "intel-bsd-export-control", + "spdx_license_key": "Intel", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "intel-bsd-export-control.json", + "yml": "intel-bsd-export-control.yml", + "html": "intel-bsd-export-control.html", + "text": "intel-bsd-export-control.LICENSE" + }, + { + "license_key": "intel-bsd", + "spdx_license_key": "LicenseRef-scancode-intel-bsd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "intel-bsd.json", + "yml": "intel-bsd.yml", + "html": "intel-bsd.html", + "text": "intel-bsd.LICENSE" + }, + { + "license_key": "intel-code-samples", + "spdx_license_key": "LicenseRef-scancode-intel-code-samples", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "intel-code-samples.json", + "yml": "intel-code-samples.yml", + "html": "intel-code-samples.html", + "text": "intel-code-samples.LICENSE" + }, + { + "license_key": "intel-confidential", + "spdx_license_key": "LicenseRef-scancode-intel-confidential", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "intel-confidential.json", + "yml": "intel-confidential.yml", + "html": "intel-confidential.html", + "text": "intel-confidential.LICENSE" + }, + { + "license_key": "intel-firmware", + "spdx_license_key": "LicenseRef-scancode-intel-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "intel-firmware.json", + "yml": "intel-firmware.yml", + "html": "intel-firmware.html", + "text": "intel-firmware.LICENSE" + }, + { + "license_key": "intel-master-eula-sw-dev-2016", + "spdx_license_key": "LicenseRef-scancode-intel-master-eula-sw-dev-2016", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "intel-master-eula-sw-dev-2016.json", + "yml": "intel-master-eula-sw-dev-2016.yml", + "html": "intel-master-eula-sw-dev-2016.html", + "text": "intel-master-eula-sw-dev-2016.LICENSE" + }, + { + "license_key": "intel-material", + "spdx_license_key": "LicenseRef-scancode-intel-material", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "intel-material.json", + "yml": "intel-material.yml", + "html": "intel-material.html", + "text": "intel-material.LICENSE" + }, + { + "license_key": "intel-mcu-2018", + "spdx_license_key": "LicenseRef-scancode-intel-mcu-2018", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "intel-mcu-2018.json", + "yml": "intel-mcu-2018.yml", + "html": "intel-mcu-2018.html", + "text": "intel-mcu-2018.LICENSE" + }, + { + "license_key": "intel-microcode", + "spdx_license_key": "LicenseRef-scancode-intel-microcode", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "intel-microcode.json", + "yml": "intel-microcode.yml", + "html": "intel-microcode.html", + "text": "intel-microcode.LICENSE" + }, + { + "license_key": "intel-osl-1989", + "spdx_license_key": "LicenseRef-scancode-intel-osl-1989", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "intel-osl-1989.json", + "yml": "intel-osl-1989.yml", + "html": "intel-osl-1989.html", + "text": "intel-osl-1989.LICENSE" + }, + { + "license_key": "intel-osl-1993", + "spdx_license_key": "LicenseRef-scancode-intel-osl-1993", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "intel-osl-1993.json", + "yml": "intel-osl-1993.yml", + "html": "intel-osl-1993.html", + "text": "intel-osl-1993.LICENSE" + }, + { + "license_key": "intel-royalty-free", + "spdx_license_key": "LicenseRef-scancode-intel-royalty-free", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "intel-royalty-free.json", + "yml": "intel-royalty-free.yml", + "html": "intel-royalty-free.html", + "text": "intel-royalty-free.LICENSE" + }, + { + "license_key": "intel-sample-source-code-2015", + "spdx_license_key": "LicenseRef-scancode-intel-sample-source-code-2015", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "intel-sample-source-code-2015.json", + "yml": "intel-sample-source-code-2015.yml", + "html": "intel-sample-source-code-2015.html", + "text": "intel-sample-source-code-2015.LICENSE" + }, + { + "license_key": "intel-scl", + "spdx_license_key": "LicenseRef-scancode-intel-scl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "intel-scl.json", + "yml": "intel-scl.yml", + "html": "intel-scl.html", + "text": "intel-scl.LICENSE" + }, + { + "license_key": "intel", + "spdx_license_key": "LicenseRef-scancode-intel", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "intel.json", + "yml": "intel.yml", + "html": "intel.html", + "text": "intel.LICENSE" + }, + { + "license_key": "interbase-1.0", + "spdx_license_key": "Interbase-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "interbase-1.0.json", + "yml": "interbase-1.0.yml", + "html": "interbase-1.0.html", + "text": "interbase-1.0.LICENSE" + }, + { + "license_key": "iolib-exception-2.0", + "spdx_license_key": "LicenseRef-scancode-iolib-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "iolib-exception-2.0.json", + "yml": "iolib-exception-2.0.yml", + "html": "iolib-exception-2.0.html", + "text": "iolib-exception-2.0.LICENSE" + }, + { + "license_key": "iozone", + "spdx_license_key": "LicenseRef-scancode-iozone", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "iozone.json", + "yml": "iozone.yml", + "html": "iozone.html", + "text": "iozone.LICENSE" + }, + { + "license_key": "ipa-font", + "spdx_license_key": "IPA", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ipa-font.json", + "yml": "ipa-font.yml", + "html": "ipa-font.html", + "text": "ipa-font.LICENSE" + }, + { + "license_key": "iptc-2006", + "spdx_license_key": "LicenseRef-scancode-iptc-2006", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "iptc-2006.json", + "yml": "iptc-2006.yml", + "html": "iptc-2006.html", + "text": "iptc-2006.LICENSE" + }, + { + "license_key": "irfanview-eula", + "spdx_license_key": "LicenseRef-scancode-irfanview-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "irfanview-eula.json", + "yml": "irfanview-eula.yml", + "html": "irfanview-eula.html", + "text": "irfanview-eula.LICENSE" + }, + { + "license_key": "isc", + "spdx_license_key": "ISC", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "isc.json", + "yml": "isc.yml", + "html": "isc.html", + "text": "isc.LICENSE" + }, + { + "license_key": "iso-14496-10", + "spdx_license_key": "LicenseRef-scancode-iso-14496-10", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "iso-14496-10.json", + "yml": "iso-14496-10.yml", + "html": "iso-14496-10.html", + "text": "iso-14496-10.LICENSE" + }, + { + "license_key": "iso-8879", + "spdx_license_key": "LicenseRef-scancode-iso-8879", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "iso-8879.json", + "yml": "iso-8879.yml", + "html": "iso-8879.html", + "text": "iso-8879.LICENSE" + }, + { + "license_key": "iso-recorder", + "spdx_license_key": "LicenseRef-scancode-iso-recorder", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "iso-recorder.json", + "yml": "iso-recorder.yml", + "html": "iso-recorder.html", + "text": "iso-recorder.LICENSE" + }, + { + "license_key": "isotope-cla", + "spdx_license_key": "LicenseRef-scancode-isotope-cla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "isotope-cla.json", + "yml": "isotope-cla.yml", + "html": "isotope-cla.html", + "text": "isotope-cla.LICENSE" + }, + { + "license_key": "issl-2018", + "spdx_license_key": "LicenseRef-scancode-issl-2018", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "issl-2018.json", + "yml": "issl-2018.yml", + "html": "issl-2018.html", + "text": "issl-2018.LICENSE" + }, + { + "license_key": "itc-eula", + "spdx_license_key": "LicenseRef-scancode-itc-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "itc-eula.json", + "yml": "itc-eula.yml", + "html": "itc-eula.html", + "text": "itc-eula.LICENSE" + }, + { + "license_key": "itu-t", + "spdx_license_key": "LicenseRef-scancode-itu-t", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "itu-t.json", + "yml": "itu-t.yml", + "html": "itu-t.html", + "text": "itu-t.LICENSE" + }, + { + "license_key": "itu", + "spdx_license_key": "LicenseRef-scancode-itu", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "itu.json", + "yml": "itu.yml", + "html": "itu.html", + "text": "itu.LICENSE" + }, + { + "license_key": "itunes", + "spdx_license_key": "LicenseRef-scancode-itunes", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "itunes.json", + "yml": "itunes.yml", + "html": "itunes.html", + "text": "itunes.LICENSE" + }, + { + "license_key": "ja-sig", + "spdx_license_key": "LicenseRef-scancode-ja-sig", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ja-sig.json", + "yml": "ja-sig.yml", + "html": "ja-sig.html", + "text": "ja-sig.LICENSE" + }, + { + "license_key": "jahia-1.3.1", + "spdx_license_key": "LicenseRef-scancode-jahia-1.3.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jahia-1.3.1.json", + "yml": "jahia-1.3.1.yml", + "html": "jahia-1.3.1.html", + "text": "jahia-1.3.1.LICENSE" + }, + { + "license_key": "jam-stapl", + "spdx_license_key": "LicenseRef-scancode-jam-stapl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jam-stapl.json", + "yml": "jam-stapl.yml", + "html": "jam-stapl.html", + "text": "jam-stapl.LICENSE" + }, + { + "license_key": "jam", + "spdx_license_key": "LicenseRef-scancode-jam", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jam.json", + "yml": "jam.yml", + "html": "jam.html", + "text": "jam.LICENSE" + }, + { + "license_key": "jamon", + "spdx_license_key": "LicenseRef-scancode-jamon", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jamon.json", + "yml": "jamon.yml", + "html": "jamon.html", + "text": "jamon.LICENSE" + }, + { + "license_key": "jason-mayes", + "spdx_license_key": "LicenseRef-scancode-jason-mayes", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jason-mayes.json", + "yml": "jason-mayes.yml", + "html": "jason-mayes.html", + "text": "jason-mayes.LICENSE" + }, + { + "license_key": "jasper-1.0", + "spdx_license_key": "LicenseRef-scancode-jasper-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jasper-1.0.json", + "yml": "jasper-1.0.yml", + "html": "jasper-1.0.html", + "text": "jasper-1.0.LICENSE" + }, + { + "license_key": "jasper-2.0", + "spdx_license_key": "JasPer-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jasper-2.0.json", + "yml": "jasper-2.0.yml", + "html": "jasper-2.0.html", + "text": "jasper-2.0.LICENSE" + }, + { + "license_key": "java-app-stub", + "spdx_license_key": "LicenseRef-scancode-java-app-stub", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "java-app-stub.json", + "yml": "java-app-stub.yml", + "html": "java-app-stub.html", + "text": "java-app-stub.LICENSE" + }, + { + "license_key": "java-research-1.5", + "spdx_license_key": "LicenseRef-scancode-java-research-1.5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "java-research-1.5.json", + "yml": "java-research-1.5.yml", + "html": "java-research-1.5.html", + "text": "java-research-1.5.LICENSE" + }, + { + "license_key": "javascript-exception-2.0", + "spdx_license_key": "LicenseRef-scancode-javascript-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "javascript-exception-2.0.json", + "yml": "javascript-exception-2.0.yml", + "html": "javascript-exception-2.0.html", + "text": "javascript-exception-2.0.LICENSE" + }, + { + "license_key": "jboss-eula", + "spdx_license_key": "LicenseRef-scancode-jboss-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jboss-eula.json", + "yml": "jboss-eula.yml", + "html": "jboss-eula.html", + "text": "jboss-eula.LICENSE" + }, + { + "license_key": "jdom", + "spdx_license_key": "LicenseRef-scancode-jdom", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jdom.json", + "yml": "jdom.yml", + "html": "jdom.html", + "text": "jdom.LICENSE" + }, + { + "license_key": "jelurida-public-1.1", + "spdx_license_key": "LicenseRef-scancode-jelurida-public-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jelurida-public-1.1.json", + "yml": "jelurida-public-1.1.yml", + "html": "jelurida-public-1.1.html", + "text": "jelurida-public-1.1.LICENSE" + }, + { + "license_key": "jetbrains-purchase-terms", + "spdx_license_key": "LicenseRef-scancode-jetbrains-purchase-terms", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jetbrains-purchase-terms.json", + "yml": "jetbrains-purchase-terms.yml", + "html": "jetbrains-purchase-terms.html", + "text": "jetbrains-purchase-terms.LICENSE" + }, + { + "license_key": "jetbrains-toolbox-open-source-3", + "spdx_license_key": "LicenseRef-scancode-jetbrains-toolbox-open-source-3", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jetbrains-toolbox-open-source-3.json", + "yml": "jetbrains-toolbox-open-source-3.yml", + "html": "jetbrains-toolbox-open-source-3.html", + "text": "jetbrains-toolbox-open-source-3.LICENSE" + }, + { + "license_key": "jetty-ccla-1.1", + "spdx_license_key": "LicenseRef-scancode-jetty-ccla-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jetty-ccla-1.1.json", + "yml": "jetty-ccla-1.1.yml", + "html": "jetty-ccla-1.1.html", + "text": "jetty-ccla-1.1.LICENSE" + }, + { + "license_key": "jetty", + "spdx_license_key": "LicenseRef-scancode-jetty", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jetty.json", + "yml": "jetty.yml", + "html": "jetty.html", + "text": "jetty.LICENSE" + }, + { + "license_key": "jgraph-general", + "spdx_license_key": "LicenseRef-scancode-jgraph-general", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jgraph-general.json", + "yml": "jgraph-general.yml", + "html": "jgraph-general.html", + "text": "jgraph-general.LICENSE" + }, + { + "license_key": "jgraph", + "spdx_license_key": "LicenseRef-scancode-jgraph", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jgraph.json", + "yml": "jgraph.yml", + "html": "jgraph.html", + "text": "jgraph.LICENSE" + }, + { + "license_key": "jide-sla", + "spdx_license_key": "LicenseRef-scancode-jide-sla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jide-sla.json", + "yml": "jide-sla.yml", + "html": "jide-sla.html", + "text": "jide-sla.LICENSE" + }, + { + "license_key": "jj2000", + "spdx_license_key": "LicenseRef-scancode-jj2000", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jj2000.json", + "yml": "jj2000.yml", + "html": "jj2000.html", + "text": "jj2000.LICENSE" + }, + { + "license_key": "jmagnetic", + "spdx_license_key": "LicenseRef-scancode-jmagnetic", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jmagnetic.json", + "yml": "jmagnetic.yml", + "html": "jmagnetic.html", + "text": "jmagnetic.LICENSE" + }, + { + "license_key": "josl-1.0", + "spdx_license_key": "LicenseRef-scancode-josl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "josl-1.0.json", + "yml": "josl-1.0.yml", + "html": "josl-1.0.html", + "text": "josl-1.0.LICENSE" + }, + { + "license_key": "jpnic-idnkit", + "spdx_license_key": "JPNIC", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jpnic-idnkit.json", + "yml": "jpnic-idnkit.yml", + "html": "jpnic-idnkit.html", + "text": "jpnic-idnkit.LICENSE" + }, + { + "license_key": "jpnic-mdnkit", + "spdx_license_key": "LicenseRef-scancode-jpnic-mdnkit", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jpnic-mdnkit.json", + "yml": "jpnic-mdnkit.yml", + "html": "jpnic-mdnkit.html", + "text": "jpnic-mdnkit.LICENSE" + }, + { + "license_key": "jprs-oscl-1.1", + "spdx_license_key": "LicenseRef-scancode-jprs-oscl-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jprs-oscl-1.1.json", + "yml": "jprs-oscl-1.1.yml", + "html": "jprs-oscl-1.1.html", + "text": "jprs-oscl-1.1.LICENSE" + }, + { + "license_key": "jpython-1.1", + "spdx_license_key": "LicenseRef-scancode-jpython-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jpython-1.1.json", + "yml": "jpython-1.1.yml", + "html": "jpython-1.1.html", + "text": "jpython-1.1.LICENSE" + }, + { + "license_key": "jquery-pd", + "spdx_license_key": "LicenseRef-scancode-jquery-pd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jquery-pd.json", + "yml": "jquery-pd.yml", + "html": "jquery-pd.html", + "text": "jquery-pd.LICENSE" + }, + { + "license_key": "jrunner", + "spdx_license_key": "LicenseRef-scancode-jrunner", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jrunner.json", + "yml": "jrunner.yml", + "html": "jrunner.html", + "text": "jrunner.LICENSE" + }, + { + "license_key": "jscheme", + "spdx_license_key": "LicenseRef-scancode-jscheme", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jscheme.json", + "yml": "jscheme.yml", + "html": "jscheme.html", + "text": "jscheme.LICENSE" + }, + { + "license_key": "jsfromhell", + "spdx_license_key": "LicenseRef-scancode-jsfromhell", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jsfromhell.json", + "yml": "jsfromhell.yml", + "html": "jsfromhell.html", + "text": "jsfromhell.LICENSE" + }, + { + "license_key": "json-js-pd", + "spdx_license_key": "LicenseRef-scancode-json-js-pd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "json-js-pd.json", + "yml": "json-js-pd.yml", + "html": "json-js-pd.html", + "text": "json-js-pd.LICENSE" + }, + { + "license_key": "json-pd", + "spdx_license_key": "LicenseRef-scancode-json-pd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "json-pd.json", + "yml": "json-pd.yml", + "html": "json-pd.html", + "text": "json-pd.LICENSE" + }, + { + "license_key": "json", + "spdx_license_key": "JSON", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "json.json", + "yml": "json.yml", + "html": "json.html", + "text": "json.LICENSE" + }, + { + "license_key": "jsr-107-jcache-spec-2013", + "spdx_license_key": "LicenseRef-scancode-jsr-107-jcache-spec-2013", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jsr-107-jcache-spec-2013.json", + "yml": "jsr-107-jcache-spec-2013.yml", + "html": "jsr-107-jcache-spec-2013.html", + "text": "jsr-107-jcache-spec-2013.LICENSE" + }, + { + "license_key": "jsr-107-jcache-spec", + "spdx_license_key": "LicenseRef-scancode-jsr-107-jcache-spec", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jsr-107-jcache-spec.json", + "yml": "jsr-107-jcache-spec.yml", + "html": "jsr-107-jcache-spec.html", + "text": "jsr-107-jcache-spec.LICENSE" + }, + { + "license_key": "jython", + "spdx_license_key": "LicenseRef-scancode-jython", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jython.json", + "yml": "jython.yml", + "html": "jython.html", + "text": "jython.LICENSE" + }, + { + "license_key": "kalle-kaukonen", + "spdx_license_key": "LicenseRef-scancode-kalle-kaukonen", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "kalle-kaukonen.json", + "yml": "kalle-kaukonen.yml", + "html": "kalle-kaukonen.html", + "text": "kalle-kaukonen.LICENSE" + }, + { + "license_key": "karl-peterson", + "spdx_license_key": "LicenseRef-scancode-karl-peterson", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "karl-peterson.json", + "yml": "karl-peterson.yml", + "html": "karl-peterson.html", + "text": "karl-peterson.LICENSE" + }, + { + "license_key": "kde-accepted-lgpl", + "spdx_license_key": "LicenseRef-scancode-kde-accepted-lgpl", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "kde-accepted-lgpl.json", + "yml": "kde-accepted-lgpl.yml", + "html": "kde-accepted-lgpl.html", + "text": "kde-accepted-lgpl.LICENSE" + }, + { + "license_key": "keith-rule", + "spdx_license_key": "LicenseRef-scancode-keith-rule", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "keith-rule.json", + "yml": "keith-rule.yml", + "html": "keith-rule.html", + "text": "keith-rule.LICENSE" + }, + { + "license_key": "kerberos", + "spdx_license_key": "LicenseRef-scancode-kerberos", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "kerberos.json", + "yml": "kerberos.yml", + "html": "kerberos.html", + "text": "kerberos.LICENSE" + }, + { + "license_key": "kevan-stannard", + "spdx_license_key": "LicenseRef-scancode-kevan-stannard", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "kevan-stannard.json", + "yml": "kevan-stannard.yml", + "html": "kevan-stannard.html", + "text": "kevan-stannard.LICENSE" + }, + { + "license_key": "kevlin-henney", + "spdx_license_key": "LicenseRef-scancode-kevlin-henney", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "kevlin-henney.json", + "yml": "kevlin-henney.yml", + "html": "kevlin-henney.html", + "text": "kevlin-henney.LICENSE" + }, + { + "license_key": "khronos", + "spdx_license_key": "LicenseRef-scancode-khronos", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "khronos.json", + "yml": "khronos.yml", + "html": "khronos.html", + "text": "khronos.LICENSE" + }, + { + "license_key": "kumar-robotics", + "spdx_license_key": "LicenseRef-scancode-kumar-robotics", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "kumar-robotics.json", + "yml": "kumar-robotics.yml", + "html": "kumar-robotics.html", + "text": "kumar-robotics.LICENSE" + }, + { + "license_key": "larabie", + "spdx_license_key": "LicenseRef-scancode-larabie", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "larabie.json", + "yml": "larabie.yml", + "html": "larabie.html", + "text": "larabie.LICENSE" + }, + { + "license_key": "latex2e", + "spdx_license_key": "Latex2e", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "latex2e.json", + "yml": "latex2e.yml", + "html": "latex2e.html", + "text": "latex2e.LICENSE" + }, + { + "license_key": "lavantech", + "spdx_license_key": "LicenseRef-scancode-lavantech", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lavantech.json", + "yml": "lavantech.yml", + "html": "lavantech.html", + "text": "lavantech.LICENSE" + }, + { + "license_key": "lbnl-bsd", + "spdx_license_key": "BSD-3-Clause-LBNL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lbnl-bsd.json", + "yml": "lbnl-bsd.yml", + "html": "lbnl-bsd.html", + "text": "lbnl-bsd.LICENSE" + }, + { + "license_key": "lcs-telegraphics", + "spdx_license_key": "LicenseRef-scancode-lcs-telegraphics", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lcs-telegraphics.json", + "yml": "lcs-telegraphics.yml", + "html": "lcs-telegraphics.html", + "text": "lcs-telegraphics.LICENSE" + }, + { + "license_key": "ldap-sdk-free-use", + "spdx_license_key": "LicenseRef-scancode-ldap-sdk-free-use", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ldap-sdk-free-use.json", + "yml": "ldap-sdk-free-use.yml", + "html": "ldap-sdk-free-use.html", + "text": "ldap-sdk-free-use.LICENSE" + }, + { + "license_key": "ldpc-1994", + "spdx_license_key": "LicenseRef-scancode-ldpc-1994", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ldpc-1994.json", + "yml": "ldpc-1994.yml", + "html": "ldpc-1994.html", + "text": "ldpc-1994.LICENSE" + }, + { + "license_key": "ldpc-1997", + "spdx_license_key": "LicenseRef-scancode-ldpc-1997", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ldpc-1997.json", + "yml": "ldpc-1997.yml", + "html": "ldpc-1997.html", + "text": "ldpc-1997.LICENSE" + }, + { + "license_key": "ldpc-1999", + "spdx_license_key": "LicenseRef-scancode-ldpc-1999", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ldpc-1999.json", + "yml": "ldpc-1999.yml", + "html": "ldpc-1999.html", + "text": "ldpc-1999.LICENSE" + }, + { + "license_key": "ldpgpl-1", + "spdx_license_key": "LicenseRef-scancode-ldpgpl-1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ldpgpl-1.json", + "yml": "ldpgpl-1.yml", + "html": "ldpgpl-1.html", + "text": "ldpgpl-1.LICENSE" + }, + { + "license_key": "ldpgpl-1a", + "spdx_license_key": "LicenseRef-scancode-ldpgpl-1a", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ldpgpl-1a.json", + "yml": "ldpgpl-1a.yml", + "html": "ldpgpl-1a.html", + "text": "ldpgpl-1a.LICENSE" + }, + { + "license_key": "ldpl-2.0", + "spdx_license_key": "LicenseRef-scancode-ldpl-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ldpl-2.0.json", + "yml": "ldpl-2.0.yml", + "html": "ldpl-2.0.html", + "text": "ldpl-2.0.LICENSE" + }, + { + "license_key": "ldpm-1998", + "spdx_license_key": "LicenseRef-scancode-ldpm-1998", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ldpm-1998.json", + "yml": "ldpm-1998.yml", + "html": "ldpm-1998.html", + "text": "ldpm-1998.LICENSE" + }, + { + "license_key": "leap-motion-sdk-2019", + "spdx_license_key": "LicenseRef-scancode-leap-motion-sdk-2019", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "leap-motion-sdk-2019.json", + "yml": "leap-motion-sdk-2019.yml", + "html": "leap-motion-sdk-2019.html", + "text": "leap-motion-sdk-2019.LICENSE" + }, + { + "license_key": "leptonica", + "spdx_license_key": "Leptonica", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "leptonica.json", + "yml": "leptonica.yml", + "html": "leptonica.html", + "text": "leptonica.LICENSE" + }, + { + "license_key": "lgpl-2.0-fltk", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "lgpl-2.0-fltk.json", + "yml": "lgpl-2.0-fltk.yml", + "html": "lgpl-2.0-fltk.html", + "text": "lgpl-2.0-fltk.LICENSE" + }, + { + "license_key": "lgpl-2.0-plus-gcc", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "lgpl-2.0-plus-gcc.json", + "yml": "lgpl-2.0-plus-gcc.yml", + "html": "lgpl-2.0-plus-gcc.html", + "text": "lgpl-2.0-plus-gcc.LICENSE" + }, + { + "license_key": "lgpl-2.0-plus", + "spdx_license_key": "LGPL-2.0-or-later", + "other_spdx_license_keys": [ + "LGPL-2.0+" + ], + "is_exception": false, + "is_deprecated": false, + "json": "lgpl-2.0-plus.json", + "yml": "lgpl-2.0-plus.yml", + "html": "lgpl-2.0-plus.html", + "text": "lgpl-2.0-plus.LICENSE" + }, + { + "license_key": "lgpl-2.0", + "spdx_license_key": "LGPL-2.0-only", + "other_spdx_license_keys": [ + "LGPL-2.0" + ], + "is_exception": false, + "is_deprecated": false, + "json": "lgpl-2.0.json", + "yml": "lgpl-2.0.yml", + "html": "lgpl-2.0.html", + "text": "lgpl-2.0.LICENSE" + }, + { + "license_key": "lgpl-2.1-digia-qt", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "lgpl-2.1-digia-qt.json", + "yml": "lgpl-2.1-digia-qt.yml", + "html": "lgpl-2.1-digia-qt.html", + "text": "lgpl-2.1-digia-qt.LICENSE" + }, + { + "license_key": "lgpl-2.1-nokia-qt-1.0", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "lgpl-2.1-nokia-qt-1.0.json", + "yml": "lgpl-2.1-nokia-qt-1.0.yml", + "html": "lgpl-2.1-nokia-qt-1.0.html", + "text": "lgpl-2.1-nokia-qt-1.0.LICENSE" + }, + { + "license_key": "lgpl-2.1-nokia-qt-1.1", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "lgpl-2.1-nokia-qt-1.1.json", + "yml": "lgpl-2.1-nokia-qt-1.1.yml", + "html": "lgpl-2.1-nokia-qt-1.1.html", + "text": "lgpl-2.1-nokia-qt-1.1.LICENSE" + }, + { + "license_key": "lgpl-2.1-nokia-qt", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "lgpl-2.1-nokia-qt.json", + "yml": "lgpl-2.1-nokia-qt.yml", + "html": "lgpl-2.1-nokia-qt.html", + "text": "lgpl-2.1-nokia-qt.LICENSE" + }, + { + "license_key": "lgpl-2.1-plus-linking", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "lgpl-2.1-plus-linking.json", + "yml": "lgpl-2.1-plus-linking.yml", + "html": "lgpl-2.1-plus-linking.html", + "text": "lgpl-2.1-plus-linking.LICENSE" + }, + { + "license_key": "lgpl-2.1-plus-unlimited-linking", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "lgpl-2.1-plus-unlimited-linking.json", + "yml": "lgpl-2.1-plus-unlimited-linking.yml", + "html": "lgpl-2.1-plus-unlimited-linking.html", + "text": "lgpl-2.1-plus-unlimited-linking.LICENSE" + }, + { + "license_key": "lgpl-2.1-plus", + "spdx_license_key": "LGPL-2.1-or-later", + "other_spdx_license_keys": [ + "LGPL-2.1+" + ], + "is_exception": false, + "is_deprecated": false, + "json": "lgpl-2.1-plus.json", + "yml": "lgpl-2.1-plus.yml", + "html": "lgpl-2.1-plus.html", + "text": "lgpl-2.1-plus.LICENSE" + }, + { + "license_key": "lgpl-2.1-qt-company-2017", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "lgpl-2.1-qt-company-2017.json", + "yml": "lgpl-2.1-qt-company-2017.yml", + "html": "lgpl-2.1-qt-company-2017.html", + "text": "lgpl-2.1-qt-company-2017.LICENSE" + }, + { + "license_key": "lgpl-2.1-qt-company", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "lgpl-2.1-qt-company.json", + "yml": "lgpl-2.1-qt-company.yml", + "html": "lgpl-2.1-qt-company.html", + "text": "lgpl-2.1-qt-company.LICENSE" + }, + { + "license_key": "lgpl-2.1-rxtx", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "lgpl-2.1-rxtx.json", + "yml": "lgpl-2.1-rxtx.yml", + "html": "lgpl-2.1-rxtx.html", + "text": "lgpl-2.1-rxtx.LICENSE" + }, + { + "license_key": "lgpl-2.1-spell-checker", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "lgpl-2.1-spell-checker.json", + "yml": "lgpl-2.1-spell-checker.yml", + "html": "lgpl-2.1-spell-checker.html", + "text": "lgpl-2.1-spell-checker.LICENSE" + }, + { + "license_key": "lgpl-2.1", + "spdx_license_key": "LGPL-2.1-only", + "other_spdx_license_keys": [ + "LGPL-2.1" + ], + "is_exception": false, + "is_deprecated": false, + "json": "lgpl-2.1.json", + "yml": "lgpl-2.1.yml", + "html": "lgpl-2.1.html", + "text": "lgpl-2.1.LICENSE" + }, + { + "license_key": "lgpl-3-plus-linking", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "lgpl-3-plus-linking.json", + "yml": "lgpl-3-plus-linking.yml", + "html": "lgpl-3-plus-linking.html", + "text": "lgpl-3-plus-linking.LICENSE" + }, + { + "license_key": "lgpl-3.0-cygwin", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "lgpl-3.0-cygwin.json", + "yml": "lgpl-3.0-cygwin.yml", + "html": "lgpl-3.0-cygwin.html", + "text": "lgpl-3.0-cygwin.LICENSE" + }, + { + "license_key": "lgpl-3.0-linking-exception", + "spdx_license_key": "LGPL-3.0-linking-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "lgpl-3.0-linking-exception.json", + "yml": "lgpl-3.0-linking-exception.yml", + "html": "lgpl-3.0-linking-exception.html", + "text": "lgpl-3.0-linking-exception.LICENSE" + }, + { + "license_key": "lgpl-3.0-plus-openssl", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "lgpl-3.0-plus-openssl.json", + "yml": "lgpl-3.0-plus-openssl.yml", + "html": "lgpl-3.0-plus-openssl.html", + "text": "lgpl-3.0-plus-openssl.LICENSE" + }, + { + "license_key": "lgpl-3.0-plus", + "spdx_license_key": "LGPL-3.0-or-later", + "other_spdx_license_keys": [ + "LGPL-3.0+" + ], + "is_exception": false, + "is_deprecated": false, + "json": "lgpl-3.0-plus.json", + "yml": "lgpl-3.0-plus.yml", + "html": "lgpl-3.0-plus.html", + "text": "lgpl-3.0-plus.LICENSE" + }, + { + "license_key": "lgpl-3.0-zeromq", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "lgpl-3.0-zeromq.json", + "yml": "lgpl-3.0-zeromq.yml", + "html": "lgpl-3.0-zeromq.html", + "text": "lgpl-3.0-zeromq.LICENSE" + }, + { + "license_key": "lgpl-3.0", + "spdx_license_key": "LGPL-3.0-only", + "other_spdx_license_keys": [ + "LGPL-3.0" + ], + "is_exception": false, + "is_deprecated": false, + "json": "lgpl-3.0.json", + "yml": "lgpl-3.0.yml", + "html": "lgpl-3.0.html", + "text": "lgpl-3.0.LICENSE" + }, + { + "license_key": "lgpllr", + "spdx_license_key": "LGPLLR", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lgpllr.json", + "yml": "lgpllr.yml", + "html": "lgpllr.html", + "text": "lgpllr.LICENSE" + }, + { + "license_key": "lha", + "spdx_license_key": "LicenseRef-scancode-lha", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lha.json", + "yml": "lha.yml", + "html": "lha.html", + "text": "lha.LICENSE" + }, + { + "license_key": "libcap", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "libcap.json", + "yml": "libcap.yml", + "html": "libcap.html", + "text": "libcap.LICENSE" + }, + { + "license_key": "liberation-font-exception", + "spdx_license_key": "LicenseRef-scancode-liberation-font-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "liberation-font-exception.json", + "yml": "liberation-font-exception.yml", + "html": "liberation-font-exception.html", + "text": "liberation-font-exception.LICENSE" + }, + { + "license_key": "libgd-2018", + "spdx_license_key": "GD", + "other_spdx_license_keys": [ + "LicenseRef-scancode-libgd-2018" + ], + "is_exception": false, + "is_deprecated": false, + "json": "libgd-2018.json", + "yml": "libgd-2018.yml", + "html": "libgd-2018.html", + "text": "libgd-2018.LICENSE" + }, + { + "license_key": "libgeotiff", + "spdx_license_key": "LicenseRef-scancode-libgeotiff", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "libgeotiff.json", + "yml": "libgeotiff.yml", + "html": "libgeotiff.html", + "text": "libgeotiff.LICENSE" + }, + { + "license_key": "libmib", + "spdx_license_key": "LicenseRef-scancode-libmib", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "libmib.json", + "yml": "libmib.yml", + "html": "libmib.html", + "text": "libmib.LICENSE" + }, + { + "license_key": "libmng-2007", + "spdx_license_key": "LicenseRef-scancode-libmng-2007", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "libmng-2007.json", + "yml": "libmng-2007.yml", + "html": "libmng-2007.html", + "text": "libmng-2007.LICENSE" + }, + { + "license_key": "libpbm", + "spdx_license_key": "LicenseRef-scancode-libpbm", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "libpbm.json", + "yml": "libpbm.yml", + "html": "libpbm.html", + "text": "libpbm.LICENSE" + }, + { + "license_key": "libpng-v2", + "spdx_license_key": "libpng-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "libpng-v2.json", + "yml": "libpng-v2.yml", + "html": "libpng-v2.html", + "text": "libpng-v2.LICENSE" + }, + { + "license_key": "libpng", + "spdx_license_key": "Libpng", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "libpng.json", + "yml": "libpng.yml", + "html": "libpng.html", + "text": "libpng.LICENSE" + }, + { + "license_key": "libselinux-pd", + "spdx_license_key": "LicenseRef-scancode-libselinux-pd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "libselinux-pd.json", + "yml": "libselinux-pd.yml", + "html": "libselinux-pd.html", + "text": "libselinux-pd.LICENSE" + }, + { + "license_key": "libsrv-1.0.2", + "spdx_license_key": "LicenseRef-scancode-libsrv-1.0.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "libsrv-1.0.2.json", + "yml": "libsrv-1.0.2.yml", + "html": "libsrv-1.0.2.html", + "text": "libsrv-1.0.2.LICENSE" + }, + { + "license_key": "libtool-exception-2.0", + "spdx_license_key": "Libtool-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "libtool-exception-2.0.json", + "yml": "libtool-exception-2.0.yml", + "html": "libtool-exception-2.0.html", + "text": "libtool-exception-2.0.LICENSE" + }, + { + "license_key": "libtool-exception", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "libtool-exception.json", + "yml": "libtool-exception.yml", + "html": "libtool-exception.html", + "text": "libtool-exception.LICENSE" + }, + { + "license_key": "libwebsockets-exception", + "spdx_license_key": "LicenseRef-scancode-libwebsockets-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "libwebsockets-exception.json", + "yml": "libwebsockets-exception.yml", + "html": "libwebsockets-exception.html", + "text": "libwebsockets-exception.LICENSE" + }, + { + "license_key": "libzip", + "spdx_license_key": "LicenseRef-scancode-libzip", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "libzip.json", + "yml": "libzip.yml", + "html": "libzip.html", + "text": "libzip.LICENSE" + }, + { + "license_key": "license-file-reference", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "license-file-reference.json", + "yml": "license-file-reference.yml", + "html": "license-file-reference.html", + "text": "license-file-reference.LICENSE" + }, + { + "license_key": "lil-1", + "spdx_license_key": "LicenseRef-scancode-lil-1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lil-1.json", + "yml": "lil-1.yml", + "html": "lil-1.html", + "text": "lil-1.LICENSE" + }, + { + "license_key": "lilo", + "spdx_license_key": "LicenseRef-scancode-lilo", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lilo.json", + "yml": "lilo.yml", + "html": "lilo.html", + "text": "lilo.LICENSE" + }, + { + "license_key": "linking-exception-2.0-plus", + "spdx_license_key": "LicenseRef-scancode-linking-exception-2.0-plus", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "linking-exception-2.0-plus.json", + "yml": "linking-exception-2.0-plus.yml", + "html": "linking-exception-2.0-plus.html", + "text": "linking-exception-2.0-plus.LICENSE" + }, + { + "license_key": "linking-exception-2.1-plus", + "spdx_license_key": "LicenseRef-scancode-linking-exception-2.1-plus", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "linking-exception-2.1-plus.json", + "yml": "linking-exception-2.1-plus.yml", + "html": "linking-exception-2.1-plus.html", + "text": "linking-exception-2.1-plus.LICENSE" + }, + { + "license_key": "linking-exception-agpl-3.0", + "spdx_license_key": "LicenseRef-scancode-linking-exception-agpl-3.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "linking-exception-agpl-3.0.json", + "yml": "linking-exception-agpl-3.0.yml", + "html": "linking-exception-agpl-3.0.html", + "text": "linking-exception-agpl-3.0.LICENSE" + }, + { + "license_key": "linking-exception-lgpl-2.0-plus", + "spdx_license_key": "LicenseRef-scancode-linking-exception-lgpl-2.0-plus", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "linking-exception-lgpl-2.0-plus.json", + "yml": "linking-exception-lgpl-2.0-plus.yml", + "html": "linking-exception-lgpl-2.0-plus.html", + "text": "linking-exception-lgpl-2.0-plus.LICENSE" + }, + { + "license_key": "linking-exception-lgpl-3.0", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "linking-exception-lgpl-3.0.json", + "yml": "linking-exception-lgpl-3.0.yml", + "html": "linking-exception-lgpl-3.0.html", + "text": "linking-exception-lgpl-3.0.LICENSE" + }, + { + "license_key": "linotype-eula", + "spdx_license_key": "LicenseRef-scancode-linotype-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "linotype-eula.json", + "yml": "linotype-eula.yml", + "html": "linotype-eula.html", + "text": "linotype-eula.LICENSE" + }, + { + "license_key": "linum", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "linum.json", + "yml": "linum.yml", + "html": "linum.html", + "text": "linum.LICENSE" + }, + { + "license_key": "linux-device-drivers", + "spdx_license_key": "LicenseRef-scancode-linux-device-drivers", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "linux-device-drivers.json", + "yml": "linux-device-drivers.yml", + "html": "linux-device-drivers.html", + "text": "linux-device-drivers.LICENSE" + }, + { + "license_key": "linux-openib", + "spdx_license_key": "Linux-OpenIB", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "linux-openib.json", + "yml": "linux-openib.yml", + "html": "linux-openib.html", + "text": "linux-openib.LICENSE" + }, + { + "license_key": "linux-syscall-exception-gpl", + "spdx_license_key": "Linux-syscall-note", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "linux-syscall-exception-gpl.json", + "yml": "linux-syscall-exception-gpl.yml", + "html": "linux-syscall-exception-gpl.html", + "text": "linux-syscall-exception-gpl.LICENSE" + }, + { + "license_key": "linuxbios", + "spdx_license_key": "LicenseRef-scancode-linuxbios", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "linuxbios.json", + "yml": "linuxbios.yml", + "html": "linuxbios.html", + "text": "linuxbios.LICENSE" + }, + { + "license_key": "linuxhowtos", + "spdx_license_key": "LicenseRef-scancode-linuxhowtos", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "linuxhowtos.json", + "yml": "linuxhowtos.yml", + "html": "linuxhowtos.html", + "text": "linuxhowtos.LICENSE" + }, + { + "license_key": "llgpl", + "spdx_license_key": "LicenseRef-scancode-llgpl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "llgpl.json", + "yml": "llgpl.yml", + "html": "llgpl.html", + "text": "llgpl.LICENSE" + }, + { + "license_key": "llnl", + "spdx_license_key": "LicenseRef-scancode-llnl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "llnl.json", + "yml": "llnl.yml", + "html": "llnl.html", + "text": "llnl.LICENSE" + }, + { + "license_key": "llvm-exception", + "spdx_license_key": "LLVM-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "llvm-exception.json", + "yml": "llvm-exception.yml", + "html": "llvm-exception.html", + "text": "llvm-exception.LICENSE" + }, + { + "license_key": "lmbench-exception-2.0", + "spdx_license_key": "LicenseRef-scancode-lmbench-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "lmbench-exception-2.0.json", + "yml": "lmbench-exception-2.0.yml", + "html": "lmbench-exception-2.0.html", + "text": "lmbench-exception-2.0.LICENSE" + }, + { + "license_key": "logica-1.0", + "spdx_license_key": "LicenseRef-scancode-logica-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "logica-1.0.json", + "yml": "logica-1.0.yml", + "html": "logica-1.0.html", + "text": "logica-1.0.LICENSE" + }, + { + "license_key": "lppl-1.0", + "spdx_license_key": "LPPL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lppl-1.0.json", + "yml": "lppl-1.0.yml", + "html": "lppl-1.0.html", + "text": "lppl-1.0.LICENSE" + }, + { + "license_key": "lppl-1.1", + "spdx_license_key": "LPPL-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lppl-1.1.json", + "yml": "lppl-1.1.yml", + "html": "lppl-1.1.html", + "text": "lppl-1.1.LICENSE" + }, + { + "license_key": "lppl-1.2", + "spdx_license_key": "LPPL-1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lppl-1.2.json", + "yml": "lppl-1.2.yml", + "html": "lppl-1.2.html", + "text": "lppl-1.2.LICENSE" + }, + { + "license_key": "lppl-1.3a", + "spdx_license_key": "LPPL-1.3a", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lppl-1.3a.json", + "yml": "lppl-1.3a.yml", + "html": "lppl-1.3a.html", + "text": "lppl-1.3a.LICENSE" + }, + { + "license_key": "lppl-1.3c", + "spdx_license_key": "LPPL-1.3c", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lppl-1.3c.json", + "yml": "lppl-1.3c.yml", + "html": "lppl-1.3c.html", + "text": "lppl-1.3c.LICENSE" + }, + { + "license_key": "lsi-proprietary-eula", + "spdx_license_key": "LicenseRef-scancode-lsi-proprietary-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lsi-proprietary-eula.json", + "yml": "lsi-proprietary-eula.yml", + "html": "lsi-proprietary-eula.html", + "text": "lsi-proprietary-eula.LICENSE" + }, + { + "license_key": "lucent-pl-1.0", + "spdx_license_key": "LPL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lucent-pl-1.0.json", + "yml": "lucent-pl-1.0.yml", + "html": "lucent-pl-1.0.html", + "text": "lucent-pl-1.0.LICENSE" + }, + { + "license_key": "lucent-pl-1.02", + "spdx_license_key": "LPL-1.02", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lucent-pl-1.02.json", + "yml": "lucent-pl-1.02.yml", + "html": "lucent-pl-1.02.html", + "text": "lucent-pl-1.02.LICENSE" + }, + { + "license_key": "lucre", + "spdx_license_key": "LicenseRef-scancode-lucre", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lucre.json", + "yml": "lucre.yml", + "html": "lucre.html", + "text": "lucre.LICENSE" + }, + { + "license_key": "lumisoft-mail-server", + "spdx_license_key": "LicenseRef-scancode-lumisoft-mail-server", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lumisoft-mail-server.json", + "yml": "lumisoft-mail-server.yml", + "html": "lumisoft-mail-server.html", + "text": "lumisoft-mail-server.LICENSE" + }, + { + "license_key": "luxi", + "spdx_license_key": "LicenseRef-scancode-luxi", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "luxi.json", + "yml": "luxi.yml", + "html": "luxi.html", + "text": "luxi.LICENSE" + }, + { + "license_key": "lyubinskiy-dropdown", + "spdx_license_key": "LicenseRef-scancode-lyubinskiy-dropdown", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lyubinskiy-dropdown.json", + "yml": "lyubinskiy-dropdown.yml", + "html": "lyubinskiy-dropdown.html", + "text": "lyubinskiy-dropdown.LICENSE" + }, + { + "license_key": "lyubinskiy-popup-window", + "spdx_license_key": "LicenseRef-scancode-lyubinskiy-popup-window", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lyubinskiy-popup-window.json", + "yml": "lyubinskiy-popup-window.yml", + "html": "lyubinskiy-popup-window.html", + "text": "lyubinskiy-popup-window.LICENSE" + }, + { + "license_key": "lzma-cpl-exception", + "spdx_license_key": "LZMA-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "lzma-cpl-exception.json", + "yml": "lzma-cpl-exception.yml", + "html": "lzma-cpl-exception.html", + "text": "lzma-cpl-exception.LICENSE" + }, + { + "license_key": "lzma-sdk-2006-exception", + "spdx_license_key": "LicenseRef-scancode-lzma-sdk-2006-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "lzma-sdk-2006-exception.json", + "yml": "lzma-sdk-2006-exception.yml", + "html": "lzma-sdk-2006-exception.html", + "text": "lzma-sdk-2006-exception.LICENSE" + }, + { + "license_key": "lzma-sdk-2006", + "spdx_license_key": "LicenseRef-scancode-lzma-sdk-2006", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lzma-sdk-2006.json", + "yml": "lzma-sdk-2006.yml", + "html": "lzma-sdk-2006.html", + "text": "lzma-sdk-2006.LICENSE" + }, + { + "license_key": "lzma-sdk-2008", + "spdx_license_key": "LicenseRef-scancode-lzma-sdk-2008", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lzma-sdk-2008.json", + "yml": "lzma-sdk-2008.yml", + "html": "lzma-sdk-2008.html", + "text": "lzma-sdk-2008.LICENSE" + }, + { + "license_key": "lzma-sdk-original", + "spdx_license_key": "LicenseRef-scancode-lzma-sdk-original", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lzma-sdk-original.json", + "yml": "lzma-sdk-original.yml", + "html": "lzma-sdk-original.html", + "text": "lzma-sdk-original.LICENSE" + }, + { + "license_key": "lzma-sdk-pd", + "spdx_license_key": "LicenseRef-scancode-lzma-sdk-pd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lzma-sdk-pd.json", + "yml": "lzma-sdk-pd.yml", + "html": "lzma-sdk-pd.html", + "text": "lzma-sdk-pd.LICENSE" + }, + { + "license_key": "m-plus", + "spdx_license_key": "LicenseRef-scancode-m-plus", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "m-plus.json", + "yml": "m-plus.yml", + "html": "m-plus.html", + "text": "m-plus.LICENSE" + }, + { + "license_key": "madwifi-dual", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "madwifi-dual.json", + "yml": "madwifi-dual.yml", + "html": "madwifi-dual.html", + "text": "madwifi-dual.LICENSE" + }, + { + "license_key": "magpie-exception-1.0", + "spdx_license_key": "LicenseRef-scancode-magpie-exception-1.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "magpie-exception-1.0.json", + "yml": "magpie-exception-1.0.yml", + "html": "magpie-exception-1.0.html", + "text": "magpie-exception-1.0.LICENSE" + }, + { + "license_key": "make-human-exception", + "spdx_license_key": "LicenseRef-scancode-make-human-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "make-human-exception.json", + "yml": "make-human-exception.yml", + "html": "make-human-exception.html", + "text": "make-human-exception.LICENSE" + }, + { + "license_key": "makeindex", + "spdx_license_key": "MakeIndex", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "makeindex.json", + "yml": "makeindex.yml", + "html": "makeindex.html", + "text": "makeindex.LICENSE" + }, + { + "license_key": "mame", + "spdx_license_key": "LicenseRef-scancode-mame", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mame.json", + "yml": "mame.yml", + "html": "mame.html", + "text": "mame.LICENSE" + }, + { + "license_key": "manfred-klein-fonts-tos", + "spdx_license_key": "LicenseRef-scancode-manfred-klein-fonts-tos", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "manfred-klein-fonts-tos.json", + "yml": "manfred-klein-fonts-tos.yml", + "html": "manfred-klein-fonts-tos.html", + "text": "manfred-klein-fonts-tos.LICENSE" + }, + { + "license_key": "martin-birgmeier", + "spdx_license_key": "LicenseRef-scancode-martin-birgmeier", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "martin-birgmeier.json", + "yml": "martin-birgmeier.yml", + "html": "martin-birgmeier.html", + "text": "martin-birgmeier.LICENSE" + }, + { + "license_key": "marvell-firmware", + "spdx_license_key": "LicenseRef-scancode-marvell-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "marvell-firmware.json", + "yml": "marvell-firmware.yml", + "html": "marvell-firmware.html", + "text": "marvell-firmware.LICENSE" + }, + { + "license_key": "matt-gallagher-attribution", + "spdx_license_key": "LicenseRef-scancode-matt-gallagher-attribution", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "matt-gallagher-attribution.json", + "yml": "matt-gallagher-attribution.yml", + "html": "matt-gallagher-attribution.html", + "text": "matt-gallagher-attribution.LICENSE" + }, + { + "license_key": "matthew-kwan", + "spdx_license_key": "LicenseRef-scancode-matthew-kwan", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "matthew-kwan.json", + "yml": "matthew-kwan.yml", + "html": "matthew-kwan.html", + "text": "matthew-kwan.LICENSE" + }, + { + "license_key": "mattkruse", + "spdx_license_key": "LicenseRef-scancode-mattkruse", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mattkruse.json", + "yml": "mattkruse.yml", + "html": "mattkruse.html", + "text": "mattkruse.LICENSE" + }, + { + "license_key": "maxmind-geolite2-eula-2019", + "spdx_license_key": "LicenseRef-scancode-maxmind-geolite2-eula-2019", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "maxmind-geolite2-eula-2019.json", + "yml": "maxmind-geolite2-eula-2019.yml", + "html": "maxmind-geolite2-eula-2019.html", + "text": "maxmind-geolite2-eula-2019.LICENSE" + }, + { + "license_key": "maxmind-odl", + "spdx_license_key": "LicenseRef-scancode-maxmind-odl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "maxmind-odl.json", + "yml": "maxmind-odl.yml", + "html": "maxmind-odl.html", + "text": "maxmind-odl.LICENSE" + }, + { + "license_key": "mcafee-tou", + "spdx_license_key": "LicenseRef-scancode-mcafee-tou", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mcafee-tou.json", + "yml": "mcafee-tou.yml", + "html": "mcafee-tou.html", + "text": "mcafee-tou.LICENSE" + }, + { + "license_key": "mcrae-pl-4-r53", + "spdx_license_key": "LicenseRef-scancode-mcrae-pl-4-r53", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mcrae-pl-4-r53.json", + "yml": "mcrae-pl-4-r53.yml", + "html": "mcrae-pl-4-r53.html", + "text": "mcrae-pl-4-r53.LICENSE" + }, + { + "license_key": "mediainfo-lib", + "spdx_license_key": "LicenseRef-scancode-mediainfo-lib", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mediainfo-lib.json", + "yml": "mediainfo-lib.yml", + "html": "mediainfo-lib.html", + "text": "mediainfo-lib.LICENSE" + }, + { + "license_key": "melange", + "spdx_license_key": "LicenseRef-scancode-melange", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "melange.json", + "yml": "melange.yml", + "html": "melange.html", + "text": "melange.LICENSE" + }, + { + "license_key": "mentalis", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "mentalis.json", + "yml": "mentalis.yml", + "html": "mentalis.html", + "text": "mentalis.LICENSE" + }, + { + "license_key": "merit-network-derivative", + "spdx_license_key": "LicenseRef-scancode-merit-network-derivative", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "merit-network-derivative.json", + "yml": "merit-network-derivative.yml", + "html": "merit-network-derivative.html", + "text": "merit-network-derivative.LICENSE" + }, + { + "license_key": "metageek-inssider-eula", + "spdx_license_key": "LicenseRef-scancode-metageek-inssider-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "metageek-inssider-eula.json", + "yml": "metageek-inssider-eula.yml", + "html": "metageek-inssider-eula.html", + "text": "metageek-inssider-eula.LICENSE" + }, + { + "license_key": "metrolink-1.0", + "spdx_license_key": "LicenseRef-scancode-metrolink-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "metrolink-1.0.json", + "yml": "metrolink-1.0.yml", + "html": "metrolink-1.0.html", + "text": "metrolink-1.0.LICENSE" + }, + { + "license_key": "mgopen-font-license", + "spdx_license_key": "LicenseRef-scancode-mgopen-font-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mgopen-font-license.json", + "yml": "mgopen-font-license.yml", + "html": "mgopen-font-license.html", + "text": "mgopen-font-license.LICENSE" + }, + { + "license_key": "michael-barr", + "spdx_license_key": "LicenseRef-scancode-michael-barr", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "michael-barr.json", + "yml": "michael-barr.yml", + "html": "michael-barr.html", + "text": "michael-barr.LICENSE" + }, + { + "license_key": "michigan-disclaimer", + "spdx_license_key": "LicenseRef-scancode-michigan-disclaimer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "michigan-disclaimer.json", + "yml": "michigan-disclaimer.yml", + "html": "michigan-disclaimer.html", + "text": "michigan-disclaimer.LICENSE" + }, + { + "license_key": "microsoft-enterprise-library-eula", + "spdx_license_key": "LicenseRef-scancode-microsoft-enterprise-library-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "microsoft-enterprise-library-eula.json", + "yml": "microsoft-enterprise-library-eula.yml", + "html": "microsoft-enterprise-library-eula.html", + "text": "microsoft-enterprise-library-eula.LICENSE" + }, + { + "license_key": "microsoft-windows-rally-devkit", + "spdx_license_key": "LicenseRef-scancode-microsoft-windows-rally-devkit", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "microsoft-windows-rally-devkit.json", + "yml": "microsoft-windows-rally-devkit.yml", + "html": "microsoft-windows-rally-devkit.html", + "text": "microsoft-windows-rally-devkit.LICENSE" + }, + { + "license_key": "mif-exception", + "spdx_license_key": "mif-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "mif-exception.json", + "yml": "mif-exception.yml", + "html": "mif-exception.html", + "text": "mif-exception.LICENSE" + }, + { + "license_key": "mike95", + "spdx_license_key": "LicenseRef-scancode-mike95", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mike95.json", + "yml": "mike95.yml", + "html": "mike95.html", + "text": "mike95.LICENSE" + }, + { + "license_key": "minecraft-mod", + "spdx_license_key": "LicenseRef-scancode-minecraft-mod", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "minecraft-mod.json", + "yml": "minecraft-mod.yml", + "html": "minecraft-mod.html", + "text": "minecraft-mod.LICENSE" + }, + { + "license_key": "mini-xml-exception-lgpl-2.0", + "spdx_license_key": "LicenseRef-scancode-mini-xml-exception-lgpl-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "mini-xml-exception-lgpl-2.0.json", + "yml": "mini-xml-exception-lgpl-2.0.yml", + "html": "mini-xml-exception-lgpl-2.0.html", + "text": "mini-xml-exception-lgpl-2.0.LICENSE" + }, + { + "license_key": "mini-xml", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "mini-xml.json", + "yml": "mini-xml.yml", + "html": "mini-xml.html", + "text": "mini-xml.LICENSE" + }, + { + "license_key": "minpack", + "spdx_license_key": "LicenseRef-scancode-minpack", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "minpack.json", + "yml": "minpack.yml", + "html": "minpack.html", + "text": "minpack.LICENSE" + }, + { + "license_key": "mir-os", + "spdx_license_key": "MirOS", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mir-os.json", + "yml": "mir-os.yml", + "html": "mir-os.html", + "text": "mir-os.LICENSE" + }, + { + "license_key": "mit-0", + "spdx_license_key": "MIT-0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ekioh" + ], + "is_exception": false, + "is_deprecated": false, + "json": "mit-0.json", + "yml": "mit-0.yml", + "html": "mit-0.html", + "text": "mit-0.LICENSE" + }, + { + "license_key": "mit-ack", + "spdx_license_key": "MIT-feh", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mit-ack.json", + "yml": "mit-ack.yml", + "html": "mit-ack.html", + "text": "mit-ack.LICENSE" + }, + { + "license_key": "mit-addition", + "spdx_license_key": "LicenseRef-scancode-mit-addition", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mit-addition.json", + "yml": "mit-addition.yml", + "html": "mit-addition.html", + "text": "mit-addition.LICENSE" + }, + { + "license_key": "mit-export-control", + "spdx_license_key": "Xerox", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mit-export-control.json", + "yml": "mit-export-control.yml", + "html": "mit-export-control.html", + "text": "mit-export-control.LICENSE" + }, + { + "license_key": "mit-license-1998", + "spdx_license_key": "LicenseRef-scancode-mit-license-1998", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mit-license-1998.json", + "yml": "mit-license-1998.yml", + "html": "mit-license-1998.html", + "text": "mit-license-1998.LICENSE" + }, + { + "license_key": "mit-modern", + "spdx_license_key": "MIT-Modern-Variant", + "other_spdx_license_keys": [ + "LicenseRef-scancode-mit-modern" + ], + "is_exception": false, + "is_deprecated": false, + "json": "mit-modern.json", + "yml": "mit-modern.yml", + "html": "mit-modern.html", + "text": "mit-modern.LICENSE" + }, + { + "license_key": "mit-nagy", + "spdx_license_key": "LicenseRef-scancode-mit-nagy", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mit-nagy.json", + "yml": "mit-nagy.yml", + "html": "mit-nagy.html", + "text": "mit-nagy.LICENSE" + }, + { + "license_key": "mit-no-advert-export-control", + "spdx_license_key": "LicenseRef-scancode-mit-no-advert-export-control", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mit-no-advert-export-control.json", + "yml": "mit-no-advert-export-control.yml", + "html": "mit-no-advert-export-control.html", + "text": "mit-no-advert-export-control.LICENSE" + }, + { + "license_key": "mit-no-false-attribs", + "spdx_license_key": "MITNFA", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mit-no-false-attribs.json", + "yml": "mit-no-false-attribs.yml", + "html": "mit-no-false-attribs.html", + "text": "mit-no-false-attribs.LICENSE" + }, + { + "license_key": "mit-old-style-no-advert", + "spdx_license_key": "NTP", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mit-old-style-no-advert.json", + "yml": "mit-old-style-no-advert.yml", + "html": "mit-old-style-no-advert.html", + "text": "mit-old-style-no-advert.LICENSE" + }, + { + "license_key": "mit-old-style-sparse", + "spdx_license_key": "LicenseRef-scancode-mit-old-style-sparse", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mit-old-style-sparse.json", + "yml": "mit-old-style-sparse.yml", + "html": "mit-old-style-sparse.html", + "text": "mit-old-style-sparse.LICENSE" + }, + { + "license_key": "mit-old-style", + "spdx_license_key": "LicenseRef-scancode-mit-old-style", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mit-old-style.json", + "yml": "mit-old-style.yml", + "html": "mit-old-style.html", + "text": "mit-old-style.LICENSE" + }, + { + "license_key": "mit-readme", + "spdx_license_key": "LicenseRef-scancode-mit-readme", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mit-readme.json", + "yml": "mit-readme.yml", + "html": "mit-readme.html", + "text": "mit-readme.LICENSE" + }, + { + "license_key": "mit-specification-disclaimer", + "spdx_license_key": "LicenseRef-scancode-mit-specification-disclaimer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mit-specification-disclaimer.json", + "yml": "mit-specification-disclaimer.yml", + "html": "mit-specification-disclaimer.html", + "text": "mit-specification-disclaimer.LICENSE" + }, + { + "license_key": "mit-synopsys", + "spdx_license_key": "LicenseRef-scancode-mit-synopsys", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mit-synopsys.json", + "yml": "mit-synopsys.yml", + "html": "mit-synopsys.html", + "text": "mit-synopsys.LICENSE" + }, + { + "license_key": "mit-taylor-variant", + "spdx_license_key": "LicenseRef-scancode-mit-taylor-variant", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mit-taylor-variant.json", + "yml": "mit-taylor-variant.yml", + "html": "mit-taylor-variant.html", + "text": "mit-taylor-variant.LICENSE" + }, + { + "license_key": "mit-veillard-variant", + "spdx_license_key": "LicenseRef-scancode-mit-veillard-variant", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mit-veillard-variant.json", + "yml": "mit-veillard-variant.yml", + "html": "mit-veillard-variant.html", + "text": "mit-veillard-variant.LICENSE" + }, + { + "license_key": "mit-with-modification-obligations", + "spdx_license_key": "LicenseRef-scancode-mit-with-modification-obligations", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mit-with-modification-obligations.json", + "yml": "mit-with-modification-obligations.yml", + "html": "mit-with-modification-obligations.html", + "text": "mit-with-modification-obligations.LICENSE" + }, + { + "license_key": "mit-xfig", + "spdx_license_key": "LicenseRef-scancode-mit-xfig", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mit-xfig.json", + "yml": "mit-xfig.yml", + "html": "mit-xfig.html", + "text": "mit-xfig.LICENSE" + }, + { + "license_key": "mit", + "spdx_license_key": "MIT", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mit.json", + "yml": "mit.yml", + "html": "mit.html", + "text": "mit.LICENSE" + }, + { + "license_key": "mod-dav-1.0", + "spdx_license_key": "LicenseRef-scancode-mod-dav-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mod-dav-1.0.json", + "yml": "mod-dav-1.0.yml", + "html": "mod-dav-1.0.html", + "text": "mod-dav-1.0.LICENSE" + }, + { + "license_key": "monetdb-1.1", + "spdx_license_key": "LicenseRef-scancode-monetdb-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "monetdb-1.1.json", + "yml": "monetdb-1.1.yml", + "html": "monetdb-1.1.html", + "text": "monetdb-1.1.LICENSE" + }, + { + "license_key": "mongodb-sspl-1.0", + "spdx_license_key": "SSPL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mongodb-sspl-1.0.json", + "yml": "mongodb-sspl-1.0.yml", + "html": "mongodb-sspl-1.0.html", + "text": "mongodb-sspl-1.0.LICENSE" + }, + { + "license_key": "motorola", + "spdx_license_key": "LicenseRef-scancode-motorola", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "motorola.json", + "yml": "motorola.yml", + "html": "motorola.html", + "text": "motorola.LICENSE" + }, + { + "license_key": "motosoto-0.9.1", + "spdx_license_key": "Motosoto", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "motosoto-0.9.1.json", + "yml": "motosoto-0.9.1.yml", + "html": "motosoto-0.9.1.html", + "text": "motosoto-0.9.1.LICENSE" + }, + { + "license_key": "mozilla-gc", + "spdx_license_key": "LicenseRef-scancode-mozilla-gc", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mozilla-gc.json", + "yml": "mozilla-gc.yml", + "html": "mozilla-gc.html", + "text": "mozilla-gc.LICENSE" + }, + { + "license_key": "mozilla-ospl-1.0", + "spdx_license_key": "LicenseRef-scancode-mozilla-ospl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mozilla-ospl-1.0.json", + "yml": "mozilla-ospl-1.0.yml", + "html": "mozilla-ospl-1.0.html", + "text": "mozilla-ospl-1.0.LICENSE" + }, + { + "license_key": "mpeg-7", + "spdx_license_key": "LicenseRef-scancode-mpeg-7", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mpeg-7.json", + "yml": "mpeg-7.yml", + "html": "mpeg-7.html", + "text": "mpeg-7.LICENSE" + }, + { + "license_key": "mpeg-iso", + "spdx_license_key": "LicenseRef-scancode-mpeg-iso", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mpeg-iso.json", + "yml": "mpeg-iso.yml", + "html": "mpeg-iso.html", + "text": "mpeg-iso.LICENSE" + }, + { + "license_key": "mpeg-ssg", + "spdx_license_key": "LicenseRef-scancode-mpeg-ssg", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mpeg-ssg.json", + "yml": "mpeg-ssg.yml", + "html": "mpeg-ssg.html", + "text": "mpeg-ssg.LICENSE" + }, + { + "license_key": "mpich", + "spdx_license_key": "mpich2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mpich.json", + "yml": "mpich.yml", + "html": "mpich.html", + "text": "mpich.LICENSE" + }, + { + "license_key": "mpl-1.0", + "spdx_license_key": "MPL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mpl-1.0.json", + "yml": "mpl-1.0.yml", + "html": "mpl-1.0.html", + "text": "mpl-1.0.LICENSE" + }, + { + "license_key": "mpl-1.1", + "spdx_license_key": "MPL-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mpl-1.1.json", + "yml": "mpl-1.1.yml", + "html": "mpl-1.1.html", + "text": "mpl-1.1.LICENSE" + }, + { + "license_key": "mpl-2.0-no-copyleft-exception", + "spdx_license_key": "MPL-2.0-no-copyleft-exception", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mpl-2.0-no-copyleft-exception.json", + "yml": "mpl-2.0-no-copyleft-exception.yml", + "html": "mpl-2.0-no-copyleft-exception.html", + "text": "mpl-2.0-no-copyleft-exception.LICENSE" + }, + { + "license_key": "mpl-2.0", + "spdx_license_key": "MPL-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mpl-2.0.json", + "yml": "mpl-2.0.yml", + "html": "mpl-2.0.html", + "text": "mpl-2.0.LICENSE" + }, + { + "license_key": "ms-asp-net-ajax-supplemental-terms", + "spdx_license_key": "LicenseRef-scancode-ms-asp-net-ajax-supplemental-terms", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-asp-net-ajax-supplemental-terms.json", + "yml": "ms-asp-net-ajax-supplemental-terms.yml", + "html": "ms-asp-net-ajax-supplemental-terms.html", + "text": "ms-asp-net-ajax-supplemental-terms.LICENSE" + }, + { + "license_key": "ms-asp-net-mvc3", + "spdx_license_key": "LicenseRef-scancode-ms-asp-net-mvc3", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-asp-net-mvc3.json", + "yml": "ms-asp-net-mvc3.yml", + "html": "ms-asp-net-mvc3.html", + "text": "ms-asp-net-mvc3.LICENSE" + }, + { + "license_key": "ms-asp-net-mvc4-extensions", + "spdx_license_key": "LicenseRef-scancode-ms-asp-net-mvc4-extensions", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-asp-net-mvc4-extensions.json", + "yml": "ms-asp-net-mvc4-extensions.yml", + "html": "ms-asp-net-mvc4-extensions.html", + "text": "ms-asp-net-mvc4-extensions.LICENSE" + }, + { + "license_key": "ms-asp-net-mvc4", + "spdx_license_key": "LicenseRef-scancode-ms-asp-net-mvc4", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-asp-net-mvc4.json", + "yml": "ms-asp-net-mvc4.yml", + "html": "ms-asp-net-mvc4.html", + "text": "ms-asp-net-mvc4.LICENSE" + }, + { + "license_key": "ms-asp-net-software", + "spdx_license_key": "LicenseRef-scancode-ms-asp-net-software", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-asp-net-software.json", + "yml": "ms-asp-net-software.yml", + "html": "ms-asp-net-software.html", + "text": "ms-asp-net-software.LICENSE" + }, + { + "license_key": "ms-asp-net-tools-pre-release", + "spdx_license_key": "LicenseRef-scancode-ms-asp-net-tools-pre-release", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-asp-net-tools-pre-release.json", + "yml": "ms-asp-net-tools-pre-release.yml", + "html": "ms-asp-net-tools-pre-release.html", + "text": "ms-asp-net-tools-pre-release.LICENSE" + }, + { + "license_key": "ms-asp-net-web-optimization-framework", + "spdx_license_key": "LicenseRef-scancode-ms-asp-net-web-optimization-framework", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-asp-net-web-optimization-framework.json", + "yml": "ms-asp-net-web-optimization-framework.yml", + "html": "ms-asp-net-web-optimization-framework.html", + "text": "ms-asp-net-web-optimization-framework.LICENSE" + }, + { + "license_key": "ms-asp-net-web-pages-2", + "spdx_license_key": "LicenseRef-scancode-ms-asp-net-web-pages-2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-asp-net-web-pages-2.json", + "yml": "ms-asp-net-web-pages-2.yml", + "html": "ms-asp-net-web-pages-2.html", + "text": "ms-asp-net-web-pages-2.LICENSE" + }, + { + "license_key": "ms-asp-net-web-pages-templates", + "spdx_license_key": "LicenseRef-scancode-ms-asp-net-web-pages-templates", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-asp-net-web-pages-templates.json", + "yml": "ms-asp-net-web-pages-templates.yml", + "html": "ms-asp-net-web-pages-templates.html", + "text": "ms-asp-net-web-pages-templates.LICENSE" + }, + { + "license_key": "ms-azure-data-studio", + "spdx_license_key": "LicenseRef-scancode-ms-azure-data-studio", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-azure-data-studio.json", + "yml": "ms-azure-data-studio.yml", + "html": "ms-azure-data-studio.html", + "text": "ms-azure-data-studio.LICENSE" + }, + { + "license_key": "ms-capicom", + "spdx_license_key": "LicenseRef-scancode-ms-capicom", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-capicom.json", + "yml": "ms-capicom.yml", + "html": "ms-capicom.html", + "text": "ms-capicom.LICENSE" + }, + { + "license_key": "ms-cl", + "spdx_license_key": "LicenseRef-scancode-ms-cl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-cl.json", + "yml": "ms-cl.yml", + "html": "ms-cl.html", + "text": "ms-cl.LICENSE" + }, + { + "license_key": "ms-control-spy-2.0", + "spdx_license_key": "LicenseRef-scancode-ms-control-spy-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-control-spy-2.0.json", + "yml": "ms-control-spy-2.0.yml", + "html": "ms-control-spy-2.0.html", + "text": "ms-control-spy-2.0.LICENSE" + }, + { + "license_key": "ms-developer-services-agreement-2018-06", + "spdx_license_key": "LicenseRef-scancode-ms-developer-services-agreement-2018-06", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-developer-services-agreement-2018-06.json", + "yml": "ms-developer-services-agreement-2018-06.yml", + "html": "ms-developer-services-agreement-2018-06.html", + "text": "ms-developer-services-agreement-2018-06.LICENSE" + }, + { + "license_key": "ms-developer-services-agreement", + "spdx_license_key": "LicenseRef-scancode-ms-developer-services-agreement", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-developer-services-agreement.json", + "yml": "ms-developer-services-agreement.yml", + "html": "ms-developer-services-agreement.html", + "text": "ms-developer-services-agreement.LICENSE" + }, + { + "license_key": "ms-device-emulator-3.0", + "spdx_license_key": "LicenseRef-scancode-ms-device-emulator-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-device-emulator-3.0.json", + "yml": "ms-device-emulator-3.0.yml", + "html": "ms-device-emulator-3.0.html", + "text": "ms-device-emulator-3.0.LICENSE" + }, + { + "license_key": "ms-directx-sdk-eula", + "spdx_license_key": "LicenseRef-scancode-ms-directx-sdk-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-directx-sdk-eula.json", + "yml": "ms-directx-sdk-eula.yml", + "html": "ms-directx-sdk-eula.html", + "text": "ms-directx-sdk-eula.LICENSE" + }, + { + "license_key": "ms-entity-framework-4.1", + "spdx_license_key": "LicenseRef-scancode-ms-entity-framework-4.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-entity-framework-4.1.json", + "yml": "ms-entity-framework-4.1.yml", + "html": "ms-entity-framework-4.1.html", + "text": "ms-entity-framework-4.1.LICENSE" + }, + { + "license_key": "ms-entity-framework-5", + "spdx_license_key": "LicenseRef-scancode-ms-entity-framework-5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-entity-framework-5.json", + "yml": "ms-entity-framework-5.yml", + "html": "ms-entity-framework-5.html", + "text": "ms-entity-framework-5.LICENSE" + }, + { + "license_key": "ms-eula-win-script-host", + "spdx_license_key": "LicenseRef-scancode-ms-eula-win-script-host", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-eula-win-script-host.json", + "yml": "ms-eula-win-script-host.yml", + "html": "ms-eula-win-script-host.html", + "text": "ms-eula-win-script-host.LICENSE" + }, + { + "license_key": "ms-exchange-server-2010-sp2-sdk", + "spdx_license_key": "LicenseRef-scancode-ms-exchange-server-2010-sp2-sdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-exchange-server-2010-sp2-sdk.json", + "yml": "ms-exchange-server-2010-sp2-sdk.yml", + "html": "ms-exchange-server-2010-sp2-sdk.html", + "text": "ms-exchange-server-2010-sp2-sdk.LICENSE" + }, + { + "license_key": "ms-iis-container-images-eula-2020", + "spdx_license_key": "LicenseRef-scancode-ms-iis-container-images-eula-2020", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-iis-container-images-eula-2020.json", + "yml": "ms-iis-container-images-eula-2020.yml", + "html": "ms-iis-container-images-eula-2020.html", + "text": "ms-iis-container-images-eula-2020.LICENSE" + }, + { + "license_key": "ms-ilmerge", + "spdx_license_key": "LicenseRef-scancode-ms-ilmerge", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-ilmerge.json", + "yml": "ms-ilmerge.yml", + "html": "ms-ilmerge.html", + "text": "ms-ilmerge.LICENSE" + }, + { + "license_key": "ms-invisible-eula-1.0", + "spdx_license_key": "LicenseRef-scancode-ms-invisible-eula-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-invisible-eula-1.0.json", + "yml": "ms-invisible-eula-1.0.yml", + "html": "ms-invisible-eula-1.0.html", + "text": "ms-invisible-eula-1.0.LICENSE" + }, + { + "license_key": "ms-jdbc-driver-40-sql-server", + "spdx_license_key": "LicenseRef-scancode-ms-jdbc-driver-40-sql-server", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-jdbc-driver-40-sql-server.json", + "yml": "ms-jdbc-driver-40-sql-server.yml", + "html": "ms-jdbc-driver-40-sql-server.html", + "text": "ms-jdbc-driver-40-sql-server.LICENSE" + }, + { + "license_key": "ms-jdbc-driver-41-sql-server", + "spdx_license_key": "LicenseRef-scancode-ms-jdbc-driver-41-sql-server", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-jdbc-driver-41-sql-server.json", + "yml": "ms-jdbc-driver-41-sql-server.yml", + "html": "ms-jdbc-driver-41-sql-server.html", + "text": "ms-jdbc-driver-41-sql-server.LICENSE" + }, + { + "license_key": "ms-jdbc-driver-60-sql-server", + "spdx_license_key": "LicenseRef-scancode-ms-jdbc-driver-60-sql-server", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-jdbc-driver-60-sql-server.json", + "yml": "ms-jdbc-driver-60-sql-server.yml", + "html": "ms-jdbc-driver-60-sql-server.html", + "text": "ms-jdbc-driver-60-sql-server.LICENSE" + }, + { + "license_key": "ms-kinext-win-sdk", + "spdx_license_key": "LicenseRef-scancode-ms-kinext-win-sdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-kinext-win-sdk.json", + "yml": "ms-kinext-win-sdk.yml", + "html": "ms-kinext-win-sdk.html", + "text": "ms-kinext-win-sdk.LICENSE" + }, + { + "license_key": "ms-limited-community", + "spdx_license_key": "LicenseRef-scancode-ms-limited-community", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-limited-community.json", + "yml": "ms-limited-community.yml", + "html": "ms-limited-community.html", + "text": "ms-limited-community.LICENSE" + }, + { + "license_key": "ms-limited-public", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "ms-limited-public.json", + "yml": "ms-limited-public.yml", + "html": "ms-limited-public.html", + "text": "ms-limited-public.LICENSE" + }, + { + "license_key": "ms-lpl", + "spdx_license_key": "LicenseRef-scancode-ms-lpl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-lpl.json", + "yml": "ms-lpl.yml", + "html": "ms-lpl.html", + "text": "ms-lpl.LICENSE" + }, + { + "license_key": "ms-msn-webgrease", + "spdx_license_key": "LicenseRef-scancode-ms-msn-webgrease", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-msn-webgrease.json", + "yml": "ms-msn-webgrease.yml", + "html": "ms-msn-webgrease.html", + "text": "ms-msn-webgrease.LICENSE" + }, + { + "license_key": "ms-net-framework-4-supplemental-terms", + "spdx_license_key": "LicenseRef-scancode-ms-net-framework-4-supplemental-terms", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-net-framework-4-supplemental-terms.json", + "yml": "ms-net-framework-4-supplemental-terms.yml", + "html": "ms-net-framework-4-supplemental-terms.html", + "text": "ms-net-framework-4-supplemental-terms.LICENSE" + }, + { + "license_key": "ms-net-framework-deployment", + "spdx_license_key": "LicenseRef-scancode-ms-net-framework-deployment", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-net-framework-deployment.json", + "yml": "ms-net-framework-deployment.yml", + "html": "ms-net-framework-deployment.html", + "text": "ms-net-framework-deployment.LICENSE" + }, + { + "license_key": "ms-net-library-2018-11", + "spdx_license_key": "LicenseRef-scancode-ms-net-library-2018-11", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-net-library-2018-11.json", + "yml": "ms-net-library-2018-11.yml", + "html": "ms-net-library-2018-11.html", + "text": "ms-net-library-2018-11.LICENSE" + }, + { + "license_key": "ms-net-library-2019-06", + "spdx_license_key": "LicenseRef-scancode-ms-net-library-2019-06", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-net-library-2019-06.json", + "yml": "ms-net-library-2019-06.yml", + "html": "ms-net-library-2019-06.html", + "text": "ms-net-library-2019-06.LICENSE" + }, + { + "license_key": "ms-net-library-2020-09", + "spdx_license_key": "LicenseRef-scancode-ms-net-library-2020-09", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-net-library-2020-09.json", + "yml": "ms-net-library-2020-09.yml", + "html": "ms-net-library-2020-09.html", + "text": "ms-net-library-2020-09.LICENSE" + }, + { + "license_key": "ms-net-library", + "spdx_license_key": "LicenseRef-scancode-ms-net-library", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-net-library.json", + "yml": "ms-net-library.yml", + "html": "ms-net-library.html", + "text": "ms-net-library.LICENSE" + }, + { + "license_key": "ms-nt-resource-kit", + "spdx_license_key": "LicenseRef-scancode-ms-nt-resource-kit", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-nt-resource-kit.json", + "yml": "ms-nt-resource-kit.yml", + "html": "ms-nt-resource-kit.html", + "text": "ms-nt-resource-kit.LICENSE" + }, + { + "license_key": "ms-nuget-package-manager", + "spdx_license_key": "LicenseRef-scancode-ms-nuget-package-manager", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-nuget-package-manager.json", + "yml": "ms-nuget-package-manager.yml", + "html": "ms-nuget-package-manager.html", + "text": "ms-nuget-package-manager.LICENSE" + }, + { + "license_key": "ms-nuget", + "spdx_license_key": "LicenseRef-scancode-ms-nuget", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-nuget.json", + "yml": "ms-nuget.yml", + "html": "ms-nuget.html", + "text": "ms-nuget.LICENSE" + }, + { + "license_key": "ms-office-system-programs-eula", + "spdx_license_key": "LicenseRef-scancode-ms-office-system-programs-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-office-system-programs-eula.json", + "yml": "ms-office-system-programs-eula.yml", + "html": "ms-office-system-programs-eula.html", + "text": "ms-office-system-programs-eula.LICENSE" + }, + { + "license_key": "ms-patent-promise", + "spdx_license_key": "LicenseRef-scancode-ms-patent-promise", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-patent-promise.json", + "yml": "ms-patent-promise.yml", + "html": "ms-patent-promise.html", + "text": "ms-patent-promise.LICENSE" + }, + { + "license_key": "ms-permissive-1.1", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "ms-permissive-1.1.json", + "yml": "ms-permissive-1.1.yml", + "html": "ms-permissive-1.1.html", + "text": "ms-permissive-1.1.LICENSE" + }, + { + "license_key": "ms-pl", + "spdx_license_key": "MS-PL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-pl.json", + "yml": "ms-pl.yml", + "html": "ms-pl.html", + "text": "ms-pl.LICENSE" + }, + { + "license_key": "ms-platform-sdk", + "spdx_license_key": "LicenseRef-scancode-ms-platform-sdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-platform-sdk.json", + "yml": "ms-platform-sdk.yml", + "html": "ms-platform-sdk.html", + "text": "ms-platform-sdk.LICENSE" + }, + { + "license_key": "ms-reactive-extensions-eula", + "spdx_license_key": "LicenseRef-scancode-ms-reactive-extensions-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-reactive-extensions-eula.json", + "yml": "ms-reactive-extensions-eula.yml", + "html": "ms-reactive-extensions-eula.html", + "text": "ms-reactive-extensions-eula.LICENSE" + }, + { + "license_key": "ms-refl", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "ms-refl.json", + "yml": "ms-refl.yml", + "html": "ms-refl.html", + "text": "ms-refl.LICENSE" + }, + { + "license_key": "ms-remote-ndis-usb-kit", + "spdx_license_key": "LicenseRef-scancode-ms-remote-ndis-usb-kit", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-remote-ndis-usb-kit.json", + "yml": "ms-remote-ndis-usb-kit.yml", + "html": "ms-remote-ndis-usb-kit.html", + "text": "ms-remote-ndis-usb-kit.LICENSE" + }, + { + "license_key": "ms-research-shared-source", + "spdx_license_key": "LicenseRef-scancode-ms-research-shared-source", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-research-shared-source.json", + "yml": "ms-research-shared-source.yml", + "html": "ms-research-shared-source.html", + "text": "ms-research-shared-source.LICENSE" + }, + { + "license_key": "ms-rl", + "spdx_license_key": "MS-RL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-rl.json", + "yml": "ms-rl.yml", + "html": "ms-rl.html", + "text": "ms-rl.LICENSE" + }, + { + "license_key": "ms-rsl", + "spdx_license_key": "LicenseRef-scancode-ms-rsl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-rsl.json", + "yml": "ms-rsl.yml", + "html": "ms-rsl.html", + "text": "ms-rsl.LICENSE" + }, + { + "license_key": "ms-silverlight-3", + "spdx_license_key": "LicenseRef-scancode-ms-silverlight-3", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-silverlight-3.json", + "yml": "ms-silverlight-3.yml", + "html": "ms-silverlight-3.html", + "text": "ms-silverlight-3.LICENSE" + }, + { + "license_key": "ms-sql-server-compact-4.0", + "spdx_license_key": "LicenseRef-scancode-ms-sql-server-compact-4.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-sql-server-compact-4.0.json", + "yml": "ms-sql-server-compact-4.0.yml", + "html": "ms-sql-server-compact-4.0.html", + "text": "ms-sql-server-compact-4.0.LICENSE" + }, + { + "license_key": "ms-sql-server-data-tools", + "spdx_license_key": "LicenseRef-scancode-ms-sql-server-data-tools", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-sql-server-data-tools.json", + "yml": "ms-sql-server-data-tools.yml", + "html": "ms-sql-server-data-tools.html", + "text": "ms-sql-server-data-tools.LICENSE" + }, + { + "license_key": "ms-sspl", + "spdx_license_key": "LicenseRef-scancode-ms-sspl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-sspl.json", + "yml": "ms-sspl.yml", + "html": "ms-sspl.html", + "text": "ms-sspl.LICENSE" + }, + { + "license_key": "ms-sysinternals-sla", + "spdx_license_key": "LicenseRef-scancode-ms-sysinternals-sla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-sysinternals-sla.json", + "yml": "ms-sysinternals-sla.yml", + "html": "ms-sysinternals-sla.html", + "text": "ms-sysinternals-sla.LICENSE" + }, + { + "license_key": "ms-ttf-eula", + "spdx_license_key": "LicenseRef-scancode-ms-ttf-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-ttf-eula.json", + "yml": "ms-ttf-eula.yml", + "html": "ms-ttf-eula.html", + "text": "ms-ttf-eula.LICENSE" + }, + { + "license_key": "ms-visual-2008-runtime", + "spdx_license_key": "LicenseRef-scancode-ms-visual-2008-runtime", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-visual-2008-runtime.json", + "yml": "ms-visual-2008-runtime.yml", + "html": "ms-visual-2008-runtime.html", + "text": "ms-visual-2008-runtime.LICENSE" + }, + { + "license_key": "ms-visual-2010-runtime", + "spdx_license_key": "LicenseRef-scancode-ms-visual-2010-runtime", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-visual-2010-runtime.json", + "yml": "ms-visual-2010-runtime.yml", + "html": "ms-visual-2010-runtime.html", + "text": "ms-visual-2010-runtime.LICENSE" + }, + { + "license_key": "ms-visual-2015-sdk", + "spdx_license_key": "LicenseRef-scancode-ms-visual-2015-sdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-visual-2015-sdk.json", + "yml": "ms-visual-2015-sdk.yml", + "html": "ms-visual-2015-sdk.html", + "text": "ms-visual-2015-sdk.LICENSE" + }, + { + "license_key": "ms-visual-studio-2017-tools", + "spdx_license_key": "LicenseRef-scancode-ms-visual-studio-2017-tools", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-visual-studio-2017-tools.json", + "yml": "ms-visual-studio-2017-tools.yml", + "html": "ms-visual-studio-2017-tools.html", + "text": "ms-visual-studio-2017-tools.LICENSE" + }, + { + "license_key": "ms-visual-studio-2017", + "spdx_license_key": "LicenseRef-scancode-ms-visual-studio-2017", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-visual-studio-2017.json", + "yml": "ms-visual-studio-2017.yml", + "html": "ms-visual-studio-2017.html", + "text": "ms-visual-studio-2017.LICENSE" + }, + { + "license_key": "ms-visual-studio-code", + "spdx_license_key": "LicenseRef-scancode-ms-visual-studio-code", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-visual-studio-code.json", + "yml": "ms-visual-studio-code.yml", + "html": "ms-visual-studio-code.html", + "text": "ms-visual-studio-code.LICENSE" + }, + { + "license_key": "ms-web-developer-tools-1.0", + "spdx_license_key": "LicenseRef-scancode-ms-web-developer-tools-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-web-developer-tools-1.0.json", + "yml": "ms-web-developer-tools-1.0.yml", + "html": "ms-web-developer-tools-1.0.html", + "text": "ms-web-developer-tools-1.0.LICENSE" + }, + { + "license_key": "ms-windows-container-base-image-eula-2020", + "spdx_license_key": "LicenseRef-scancode-ms-windows-container-base-image-eula-2020", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-windows-container-base-image-eula-2020.json", + "yml": "ms-windows-container-base-image-eula-2020.yml", + "html": "ms-windows-container-base-image-eula-2020.html", + "text": "ms-windows-container-base-image-eula-2020.LICENSE" + }, + { + "license_key": "ms-windows-driver-kit", + "spdx_license_key": "LicenseRef-scancode-ms-windows-driver-kit", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-windows-driver-kit.json", + "yml": "ms-windows-driver-kit.yml", + "html": "ms-windows-driver-kit.html", + "text": "ms-windows-driver-kit.LICENSE" + }, + { + "license_key": "ms-windows-identity-foundation", + "spdx_license_key": "LicenseRef-scancode-ms-windows-identity-foundation", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-windows-identity-foundation.json", + "yml": "ms-windows-identity-foundation.yml", + "html": "ms-windows-identity-foundation.html", + "text": "ms-windows-identity-foundation.LICENSE" + }, + { + "license_key": "ms-windows-sdk-server-2008-net-3.5", + "spdx_license_key": "LicenseRef-scancode-ms-windows-sdk-server-2008-net-3.5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-windows-sdk-server-2008-net-3.5.json", + "yml": "ms-windows-sdk-server-2008-net-3.5.yml", + "html": "ms-windows-sdk-server-2008-net-3.5.html", + "text": "ms-windows-sdk-server-2008-net-3.5.LICENSE" + }, + { + "license_key": "ms-windows-sdk-win7-net-4", + "spdx_license_key": "LicenseRef-scancode-ms-windows-sdk-win7-net-4", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-windows-sdk-win7-net-4.json", + "yml": "ms-windows-sdk-win7-net-4.yml", + "html": "ms-windows-sdk-win7-net-4.html", + "text": "ms-windows-sdk-win7-net-4.LICENSE" + }, + { + "license_key": "ms-windows-server-2003-ddk", + "spdx_license_key": "LicenseRef-scancode-ms-windows-server-2003-ddk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-windows-server-2003-ddk.json", + "yml": "ms-windows-server-2003-ddk.yml", + "html": "ms-windows-server-2003-ddk.html", + "text": "ms-windows-server-2003-ddk.LICENSE" + }, + { + "license_key": "ms-windows-server-2003-sdk", + "spdx_license_key": "LicenseRef-scancode-ms-windows-server-2003-sdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-windows-server-2003-sdk.json", + "yml": "ms-windows-server-2003-sdk.yml", + "html": "ms-windows-server-2003-sdk.html", + "text": "ms-windows-server-2003-sdk.LICENSE" + }, + { + "license_key": "ms-ws-routing-spec", + "spdx_license_key": "LicenseRef-scancode-ms-ws-routing-spec", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-ws-routing-spec.json", + "yml": "ms-ws-routing-spec.yml", + "html": "ms-ws-routing-spec.html", + "text": "ms-ws-routing-spec.LICENSE" + }, + { + "license_key": "ms-xml-core-4.0", + "spdx_license_key": "LicenseRef-scancode-ms-xml-core-4.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-xml-core-4.0.json", + "yml": "ms-xml-core-4.0.yml", + "html": "ms-xml-core-4.0.html", + "text": "ms-xml-core-4.0.LICENSE" + }, + { + "license_key": "msj-sample-code", + "spdx_license_key": "LicenseRef-scancode-msj-sample-code", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "msj-sample-code.json", + "yml": "msj-sample-code.yml", + "html": "msj-sample-code.html", + "text": "msj-sample-code.LICENSE" + }, + { + "license_key": "msntp", + "spdx_license_key": "LicenseRef-scancode-msntp", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "msntp.json", + "yml": "msntp.yml", + "html": "msntp.html", + "text": "msntp.LICENSE" + }, + { + "license_key": "msppl", + "spdx_license_key": "LicenseRef-scancode-msppl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "msppl.json", + "yml": "msppl.yml", + "html": "msppl.html", + "text": "msppl.LICENSE" + }, + { + "license_key": "mtll", + "spdx_license_key": "MTLL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mtll.json", + "yml": "mtll.yml", + "html": "mtll.html", + "text": "mtll.LICENSE" + }, + { + "license_key": "mtx-licensing-statement", + "spdx_license_key": "LicenseRef-scancode-mtx-licensing-statement", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mtx-licensing-statement.json", + "yml": "mtx-licensing-statement.yml", + "html": "mtx-licensing-statement.html", + "text": "mtx-licensing-statement.LICENSE" + }, + { + "license_key": "mulanpsl-1.0-en", + "spdx_license_key": "LicenseRef-scancode-mulanpsl-1.0-en", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mulanpsl-1.0-en.json", + "yml": "mulanpsl-1.0-en.yml", + "html": "mulanpsl-1.0-en.html", + "text": "mulanpsl-1.0-en.LICENSE" + }, + { + "license_key": "mulanpsl-1.0", + "spdx_license_key": "MulanPSL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mulanpsl-1.0.json", + "yml": "mulanpsl-1.0.yml", + "html": "mulanpsl-1.0.html", + "text": "mulanpsl-1.0.LICENSE" + }, + { + "license_key": "mulanpsl-2.0-en", + "spdx_license_key": "LicenseRef-scancode-mulanpsl-2.0-en", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mulanpsl-2.0-en.json", + "yml": "mulanpsl-2.0-en.yml", + "html": "mulanpsl-2.0-en.html", + "text": "mulanpsl-2.0-en.LICENSE" + }, + { + "license_key": "mulanpsl-2.0", + "spdx_license_key": "MulanPSL-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mulanpsl-2.0.json", + "yml": "mulanpsl-2.0.yml", + "html": "mulanpsl-2.0.html", + "text": "mulanpsl-2.0.LICENSE" + }, + { + "license_key": "mule-source-1.1.3", + "spdx_license_key": "LicenseRef-scancode-mule-source-1.1.3", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mule-source-1.1.3.json", + "yml": "mule-source-1.1.3.yml", + "html": "mule-source-1.1.3.html", + "text": "mule-source-1.1.3.LICENSE" + }, + { + "license_key": "mule-source-1.1.4", + "spdx_license_key": "LicenseRef-scancode-mule-source-1.1.4", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mule-source-1.1.4.json", + "yml": "mule-source-1.1.4.yml", + "html": "mule-source-1.1.4.html", + "text": "mule-source-1.1.4.LICENSE" + }, + { + "license_key": "mulle-kybernetik", + "spdx_license_key": "LicenseRef-scancode-mulle-kybernetik", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mulle-kybernetik.json", + "yml": "mulle-kybernetik.yml", + "html": "mulle-kybernetik.html", + "text": "mulle-kybernetik.LICENSE" + }, + { + "license_key": "multics", + "spdx_license_key": "Multics", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "multics.json", + "yml": "multics.yml", + "html": "multics.html", + "text": "multics.LICENSE" + }, + { + "license_key": "mup", + "spdx_license_key": "Mup", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mup.json", + "yml": "mup.yml", + "html": "mup.html", + "text": "mup.LICENSE" + }, + { + "license_key": "musl-exception", + "spdx_license_key": "LicenseRef-scancode-musl-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "musl-exception.json", + "yml": "musl-exception.yml", + "html": "musl-exception.html", + "text": "musl-exception.LICENSE" + }, + { + "license_key": "mx4j", + "spdx_license_key": "LicenseRef-scancode-mx4j", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mx4j.json", + "yml": "mx4j.yml", + "html": "mx4j.html", + "text": "mx4j.LICENSE" + }, + { + "license_key": "mysql-connector-odbc-exception-2.0", + "spdx_license_key": "LicenseRef-scancode-mysql-connector-odbc-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "mysql-connector-odbc-exception-2.0.json", + "yml": "mysql-connector-odbc-exception-2.0.yml", + "html": "mysql-connector-odbc-exception-2.0.html", + "text": "mysql-connector-odbc-exception-2.0.LICENSE" + }, + { + "license_key": "mysql-floss-exception-2.0", + "spdx_license_key": "LicenseRef-scancode-mysql-floss-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "mysql-floss-exception-2.0.json", + "yml": "mysql-floss-exception-2.0.yml", + "html": "mysql-floss-exception-2.0.html", + "text": "mysql-floss-exception-2.0.LICENSE" + }, + { + "license_key": "mysql-linking-exception-2018", + "spdx_license_key": "LicenseRef-scancode-mysql-linking-exception-2018", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "mysql-linking-exception-2018.json", + "yml": "mysql-linking-exception-2018.yml", + "html": "mysql-linking-exception-2018.html", + "text": "mysql-linking-exception-2018.LICENSE" + }, + { + "license_key": "naist-2003", + "spdx_license_key": "NAIST-2003", + "other_spdx_license_keys": [ + "LicenseRef-scancode-naist-2003" + ], + "is_exception": false, + "is_deprecated": false, + "json": "naist-2003.json", + "yml": "naist-2003.yml", + "html": "naist-2003.html", + "text": "naist-2003.LICENSE" + }, + { + "license_key": "nant-exception-2.0-plus", + "spdx_license_key": "LicenseRef-scancode-nant-exception-2.0-plus", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "nant-exception-2.0-plus.json", + "yml": "nant-exception-2.0-plus.yml", + "html": "nant-exception-2.0-plus.html", + "text": "nant-exception-2.0-plus.LICENSE" + }, + { + "license_key": "nasa-1.3", + "spdx_license_key": "NASA-1.3", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nasa-1.3.json", + "yml": "nasa-1.3.yml", + "html": "nasa-1.3.html", + "text": "nasa-1.3.LICENSE" + }, + { + "license_key": "naughter", + "spdx_license_key": "LicenseRef-scancode-naughter", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "naughter.json", + "yml": "naughter.yml", + "html": "naughter.html", + "text": "naughter.LICENSE" + }, + { + "license_key": "naumen", + "spdx_license_key": "Naumen", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "naumen.json", + "yml": "naumen.yml", + "html": "naumen.html", + "text": "naumen.LICENSE" + }, + { + "license_key": "nbpl-1.0", + "spdx_license_key": "NBPL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nbpl-1.0.json", + "yml": "nbpl-1.0.yml", + "html": "nbpl-1.0.html", + "text": "nbpl-1.0.LICENSE" + }, + { + "license_key": "ncgl-uk-2.0", + "spdx_license_key": "NCGL-UK-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ncgl-uk-2.0.json", + "yml": "ncgl-uk-2.0.yml", + "html": "ncgl-uk-2.0.html", + "text": "ncgl-uk-2.0.LICENSE" + }, + { + "license_key": "nero-eula", + "spdx_license_key": "LicenseRef-scancode-nero-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nero-eula.json", + "yml": "nero-eula.yml", + "html": "nero-eula.html", + "text": "nero-eula.LICENSE" + }, + { + "license_key": "net-snmp", + "spdx_license_key": "Net-SNMP", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "net-snmp.json", + "yml": "net-snmp.yml", + "html": "net-snmp.html", + "text": "net-snmp.LICENSE" + }, + { + "license_key": "netapp-sdk-aug2020", + "spdx_license_key": "LicenseRef-scancode-netapp-sdk-aug2020", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "netapp-sdk-aug2020.json", + "yml": "netapp-sdk-aug2020.yml", + "html": "netapp-sdk-aug2020.html", + "text": "netapp-sdk-aug2020.LICENSE" + }, + { + "license_key": "netcat", + "spdx_license_key": "LicenseRef-scancode-netcat", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "netcat.json", + "yml": "netcat.yml", + "html": "netcat.html", + "text": "netcat.LICENSE" + }, + { + "license_key": "netcdf", + "spdx_license_key": "NetCDF", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "netcdf.json", + "yml": "netcdf.yml", + "html": "netcdf.html", + "text": "netcdf.LICENSE" + }, + { + "license_key": "netcomponents", + "spdx_license_key": "LicenseRef-scancode-netcomponents", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "netcomponents.json", + "yml": "netcomponents.yml", + "html": "netcomponents.html", + "text": "netcomponents.LICENSE" + }, + { + "license_key": "netron", + "spdx_license_key": "LicenseRef-scancode-netron", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "netron.json", + "yml": "netron.yml", + "html": "netron.html", + "text": "netron.LICENSE" + }, + { + "license_key": "network-time-protocol", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "network-time-protocol.json", + "yml": "network-time-protocol.yml", + "html": "network-time-protocol.html", + "text": "network-time-protocol.LICENSE" + }, + { + "license_key": "new-relic", + "spdx_license_key": "LicenseRef-scancode-new-relic", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "new-relic.json", + "yml": "new-relic.yml", + "html": "new-relic.html", + "text": "new-relic.LICENSE" + }, + { + "license_key": "newlib-historical", + "spdx_license_key": "LicenseRef-scancode-newlib-historical", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "newlib-historical.json", + "yml": "newlib-historical.yml", + "html": "newlib-historical.html", + "text": "newlib-historical.LICENSE" + }, + { + "license_key": "newran", + "spdx_license_key": "LicenseRef-scancode-newran", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "newran.json", + "yml": "newran.yml", + "html": "newran.html", + "text": "newran.LICENSE" + }, + { + "license_key": "newsletr", + "spdx_license_key": "Newsletr", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "newsletr.json", + "yml": "newsletr.yml", + "html": "newsletr.html", + "text": "newsletr.LICENSE" + }, + { + "license_key": "newton-king-cla", + "spdx_license_key": "LicenseRef-scancode-newton-king-cla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "newton-king-cla.json", + "yml": "newton-king-cla.yml", + "html": "newton-king-cla.html", + "text": "newton-king-cla.LICENSE" + }, + { + "license_key": "nexb-eula-saas-1.1.0", + "spdx_license_key": "LicenseRef-scancode-nexb-eula-saas-1.1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nexb-eula-saas-1.1.0.json", + "yml": "nexb-eula-saas-1.1.0.yml", + "html": "nexb-eula-saas-1.1.0.html", + "text": "nexb-eula-saas-1.1.0.LICENSE" + }, + { + "license_key": "nexb-ssla-1.1.0", + "spdx_license_key": "LicenseRef-scancode-nexb-ssla-1.1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nexb-ssla-1.1.0.json", + "yml": "nexb-ssla-1.1.0.yml", + "html": "nexb-ssla-1.1.0.html", + "text": "nexb-ssla-1.1.0.LICENSE" + }, + { + "license_key": "ngpl", + "spdx_license_key": "NGPL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ngpl.json", + "yml": "ngpl.yml", + "html": "ngpl.html", + "text": "ngpl.LICENSE" + }, + { + "license_key": "nice", + "spdx_license_key": "LicenseRef-scancode-nice", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nice.json", + "yml": "nice.yml", + "html": "nice.html", + "text": "nice.LICENSE" + }, + { + "license_key": "nicta-exception", + "spdx_license_key": "LicenseRef-scancode-nicta-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "nicta-exception.json", + "yml": "nicta-exception.yml", + "html": "nicta-exception.html", + "text": "nicta-exception.LICENSE" + }, + { + "license_key": "nicta-psl", + "spdx_license_key": "LicenseRef-scancode-nicta-psl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nicta-psl.json", + "yml": "nicta-psl.yml", + "html": "nicta-psl.html", + "text": "nicta-psl.LICENSE" + }, + { + "license_key": "niels-ferguson", + "spdx_license_key": "LicenseRef-scancode-niels-ferguson", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "niels-ferguson.json", + "yml": "niels-ferguson.yml", + "html": "niels-ferguson.html", + "text": "niels-ferguson.LICENSE" + }, + { + "license_key": "nilsson-historical", + "spdx_license_key": "LicenseRef-scancode-nilsson-historical", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nilsson-historical.json", + "yml": "nilsson-historical.yml", + "html": "nilsson-historical.html", + "text": "nilsson-historical.LICENSE" + }, + { + "license_key": "nist-pd-fallback", + "spdx_license_key": "NIST-PD-fallback", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nist-pd-fallback.json", + "yml": "nist-pd-fallback.yml", + "html": "nist-pd-fallback.html", + "text": "nist-pd-fallback.LICENSE" + }, + { + "license_key": "nist-pd", + "spdx_license_key": "NIST-PD", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nist-pd.json", + "yml": "nist-pd.yml", + "html": "nist-pd.html", + "text": "nist-pd.LICENSE" + }, + { + "license_key": "nlod-1.0", + "spdx_license_key": "NLOD-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nlod-1.0.json", + "yml": "nlod-1.0.yml", + "html": "nlod-1.0.html", + "text": "nlod-1.0.LICENSE" + }, + { + "license_key": "nlpl", + "spdx_license_key": "NLPL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nlpl.json", + "yml": "nlpl.yml", + "html": "nlpl.html", + "text": "nlpl.LICENSE" + }, + { + "license_key": "node-js", + "spdx_license_key": "LicenseRef-scancode-node-js", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "node-js.json", + "yml": "node-js.yml", + "html": "node-js.html", + "text": "node-js.LICENSE" + }, + { + "license_key": "nokia-qt-exception-1.1", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "nokia-qt-exception-1.1.json", + "yml": "nokia-qt-exception-1.1.yml", + "html": "nokia-qt-exception-1.1.html", + "text": "nokia-qt-exception-1.1.LICENSE" + }, + { + "license_key": "nokos-1.0a", + "spdx_license_key": "Nokia", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nokos-1.0a.json", + "yml": "nokos-1.0a.yml", + "html": "nokos-1.0a.html", + "text": "nokos-1.0a.LICENSE" + }, + { + "license_key": "non-violent-4.0", + "spdx_license_key": "LicenseRef-scancode-non-violent-4.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "non-violent-4.0.json", + "yml": "non-violent-4.0.yml", + "html": "non-violent-4.0.html", + "text": "non-violent-4.0.LICENSE" + }, + { + "license_key": "nonexclusive", + "spdx_license_key": "LicenseRef-scancode-nonexclusive", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nonexclusive.json", + "yml": "nonexclusive.yml", + "html": "nonexclusive.html", + "text": "nonexclusive.LICENSE" + }, + { + "license_key": "nortel-dasa", + "spdx_license_key": "LicenseRef-scancode-nortel-dasa", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nortel-dasa.json", + "yml": "nortel-dasa.yml", + "html": "nortel-dasa.html", + "text": "nortel-dasa.LICENSE" + }, + { + "license_key": "nosl-1.0", + "spdx_license_key": "NOSL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nosl-1.0.json", + "yml": "nosl-1.0.yml", + "html": "nosl-1.0.html", + "text": "nosl-1.0.LICENSE" + }, + { + "license_key": "nosl-3.0", + "spdx_license_key": "NPOSL-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nosl-3.0.json", + "yml": "nosl-3.0.yml", + "html": "nosl-3.0.html", + "text": "nosl-3.0.LICENSE" + }, + { + "license_key": "notre-dame", + "spdx_license_key": "LicenseRef-scancode-notre-dame", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "notre-dame.json", + "yml": "notre-dame.yml", + "html": "notre-dame.html", + "text": "notre-dame.LICENSE" + }, + { + "license_key": "noweb", + "spdx_license_key": "Noweb", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "noweb.json", + "yml": "noweb.yml", + "html": "noweb.html", + "text": "noweb.LICENSE" + }, + { + "license_key": "npl-1.0", + "spdx_license_key": "NPL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "npl-1.0.json", + "yml": "npl-1.0.yml", + "html": "npl-1.0.html", + "text": "npl-1.0.LICENSE" + }, + { + "license_key": "npl-1.1", + "spdx_license_key": "NPL-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "npl-1.1.json", + "yml": "npl-1.1.yml", + "html": "npl-1.1.html", + "text": "npl-1.1.LICENSE" + }, + { + "license_key": "npsl-exception-0.93", + "spdx_license_key": "LicenseRef-scancode-npsl-exception-0.93", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "npsl-exception-0.93.json", + "yml": "npsl-exception-0.93.yml", + "html": "npsl-exception-0.93.html", + "text": "npsl-exception-0.93.LICENSE" + }, + { + "license_key": "nrl-permission", + "spdx_license_key": "LicenseRef-scancode-nrl-permission", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nrl-permission.json", + "yml": "nrl-permission.yml", + "html": "nrl-permission.html", + "text": "nrl-permission.LICENSE" + }, + { + "license_key": "nrl", + "spdx_license_key": "NRL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nrl.json", + "yml": "nrl.yml", + "html": "nrl.html", + "text": "nrl.LICENSE" + }, + { + "license_key": "ntlm", + "spdx_license_key": "LicenseRef-scancode-ntlm", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ntlm.json", + "yml": "ntlm.yml", + "html": "ntlm.html", + "text": "ntlm.LICENSE" + }, + { + "license_key": "ntp-0", + "spdx_license_key": "NTP-0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ntp-0.json", + "yml": "ntp-0.yml", + "html": "ntp-0.html", + "text": "ntp-0.LICENSE" + }, + { + "license_key": "ntpl-origin", + "spdx_license_key": "LicenseRef-scancode-ntpl-origin", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ntpl-origin.json", + "yml": "ntpl-origin.yml", + "html": "ntpl-origin.html", + "text": "ntpl-origin.LICENSE" + }, + { + "license_key": "ntpl", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "ntpl.json", + "yml": "ntpl.yml", + "html": "ntpl.html", + "text": "ntpl.LICENSE" + }, + { + "license_key": "numerical-recipes-notice", + "spdx_license_key": "LicenseRef-scancode-numerical-recipes-notice", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "numerical-recipes-notice.json", + "yml": "numerical-recipes-notice.yml", + "html": "numerical-recipes-notice.html", + "text": "numerical-recipes-notice.LICENSE" + }, + { + "license_key": "nunit-v2", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "nunit-v2.json", + "yml": "nunit-v2.yml", + "html": "nunit-v2.html", + "text": "nunit-v2.LICENSE" + }, + { + "license_key": "nvidia-2002", + "spdx_license_key": "LicenseRef-scancode-nvidia-2002", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nvidia-2002.json", + "yml": "nvidia-2002.yml", + "html": "nvidia-2002.html", + "text": "nvidia-2002.LICENSE" + }, + { + "license_key": "nvidia-apex-sdk-eula-2011", + "spdx_license_key": "LicenseRef-scancode-nvidia-apex-sdk-eula-2011", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nvidia-apex-sdk-eula-2011.json", + "yml": "nvidia-apex-sdk-eula-2011.yml", + "html": "nvidia-apex-sdk-eula-2011.html", + "text": "nvidia-apex-sdk-eula-2011.LICENSE" + }, + { + "license_key": "nvidia-cuda-supplement-2020", + "spdx_license_key": "LicenseRef-scancode-nvidia-cuda-supplement-2020", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nvidia-cuda-supplement-2020.json", + "yml": "nvidia-cuda-supplement-2020.yml", + "html": "nvidia-cuda-supplement-2020.html", + "text": "nvidia-cuda-supplement-2020.LICENSE" + }, + { + "license_key": "nvidia-gov", + "spdx_license_key": "LicenseRef-scancode-nvidia-gov", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nvidia-gov.json", + "yml": "nvidia-gov.yml", + "html": "nvidia-gov.html", + "text": "nvidia-gov.LICENSE" + }, + { + "license_key": "nvidia-ngx-eula-2019", + "spdx_license_key": "LicenseRef-scancode-nvidia-ngx-eula-2019", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nvidia-ngx-eula-2019.json", + "yml": "nvidia-ngx-eula-2019.yml", + "html": "nvidia-ngx-eula-2019.html", + "text": "nvidia-ngx-eula-2019.LICENSE" + }, + { + "license_key": "nvidia-sdk-eula-v0.11", + "spdx_license_key": "LicenseRef-scancode-nvidia-sdk-eula-v0.11", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nvidia-sdk-eula-v0.11.json", + "yml": "nvidia-sdk-eula-v0.11.yml", + "html": "nvidia-sdk-eula-v0.11.html", + "text": "nvidia-sdk-eula-v0.11.LICENSE" + }, + { + "license_key": "nvidia", + "spdx_license_key": "LicenseRef-scancode-nvidia", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nvidia.json", + "yml": "nvidia.yml", + "html": "nvidia.html", + "text": "nvidia.LICENSE" + }, + { + "license_key": "nwhm", + "spdx_license_key": "LicenseRef-scancode-nwhm", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nwhm.json", + "yml": "nwhm.yml", + "html": "nwhm.html", + "text": "nwhm.LICENSE" + }, + { + "license_key": "nxp-microcontroller-proprietary", + "spdx_license_key": "LicenseRef-scancode-nxp-microcontroller-proprietary", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nxp-microcontroller-proprietary.json", + "yml": "nxp-microcontroller-proprietary.yml", + "html": "nxp-microcontroller-proprietary.html", + "text": "nxp-microcontroller-proprietary.LICENSE" + }, + { + "license_key": "nxp-warranty-disclaimer", + "spdx_license_key": "LicenseRef-scancode-nxp-warranty-disclaimer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nxp-warranty-disclaimer.json", + "yml": "nxp-warranty-disclaimer.yml", + "html": "nxp-warranty-disclaimer.html", + "text": "nxp-warranty-disclaimer.LICENSE" + }, + { + "license_key": "nysl-0.9982", + "spdx_license_key": "LicenseRef-scancode-nysl-0.9982", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nysl-0.9982.json", + "yml": "nysl-0.9982.yml", + "html": "nysl-0.9982.html", + "text": "nysl-0.9982.LICENSE" + }, + { + "license_key": "o-uda-1.0", + "spdx_license_key": "O-UDA-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "o-uda-1.0.json", + "yml": "o-uda-1.0.yml", + "html": "o-uda-1.0.html", + "text": "o-uda-1.0.LICENSE" + }, + { + "license_key": "o-young-jong", + "spdx_license_key": "LicenseRef-scancode-o-young-jong", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "o-young-jong.json", + "yml": "o-young-jong.yml", + "html": "o-young-jong.html", + "text": "o-young-jong.LICENSE" + }, + { + "license_key": "oasis-ipr-policy-2014", + "spdx_license_key": "LicenseRef-scancode-oasis-ipr-policy-2014", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oasis-ipr-policy-2014.json", + "yml": "oasis-ipr-policy-2014.yml", + "html": "oasis-ipr-policy-2014.html", + "text": "oasis-ipr-policy-2014.LICENSE" + }, + { + "license_key": "oasis-ws-security-spec", + "spdx_license_key": "LicenseRef-scancode-oasis-ws-security-spec", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oasis-ws-security-spec.json", + "yml": "oasis-ws-security-spec.yml", + "html": "oasis-ws-security-spec.html", + "text": "oasis-ws-security-spec.LICENSE" + }, + { + "license_key": "ocaml-lgpl-linking-exception", + "spdx_license_key": "OCaml-LGPL-linking-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "ocaml-lgpl-linking-exception.json", + "yml": "ocaml-lgpl-linking-exception.yml", + "html": "ocaml-lgpl-linking-exception.html", + "text": "ocaml-lgpl-linking-exception.LICENSE" + }, + { + "license_key": "ocb-non-military-2013", + "spdx_license_key": "LicenseRef-scancode-ocb-non-military-2013", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ocb-non-military-2013.json", + "yml": "ocb-non-military-2013.yml", + "html": "ocb-non-military-2013.html", + "text": "ocb-non-military-2013.LICENSE" + }, + { + "license_key": "ocb-open-source-2013", + "spdx_license_key": "LicenseRef-scancode-ocb-open-source-2013", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ocb-open-source-2013.json", + "yml": "ocb-open-source-2013.yml", + "html": "ocb-open-source-2013.html", + "text": "ocb-open-source-2013.LICENSE" + }, + { + "license_key": "ocb-patent-openssl-2013", + "spdx_license_key": "LicenseRef-scancode-ocb-patent-openssl-2013", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ocb-patent-openssl-2013.json", + "yml": "ocb-patent-openssl-2013.yml", + "html": "ocb-patent-openssl-2013.html", + "text": "ocb-patent-openssl-2013.LICENSE" + }, + { + "license_key": "occt-exception-1.0", + "spdx_license_key": "OCCT-exception-1.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "occt-exception-1.0.json", + "yml": "occt-exception-1.0.yml", + "html": "occt-exception-1.0.html", + "text": "occt-exception-1.0.LICENSE" + }, + { + "license_key": "occt-pl", + "spdx_license_key": "OCCT-PL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "occt-pl.json", + "yml": "occt-pl.yml", + "html": "occt-pl.html", + "text": "occt-pl.LICENSE" + }, + { + "license_key": "oclc-1.0", + "spdx_license_key": "LicenseRef-scancode-oclc-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oclc-1.0.json", + "yml": "oclc-1.0.yml", + "html": "oclc-1.0.html", + "text": "oclc-1.0.LICENSE" + }, + { + "license_key": "oclc-2.0", + "spdx_license_key": "OCLC-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oclc-2.0.json", + "yml": "oclc-2.0.yml", + "html": "oclc-2.0.html", + "text": "oclc-2.0.LICENSE" + }, + { + "license_key": "ocsl-1.0", + "spdx_license_key": "LicenseRef-scancode-ocsl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ocsl-1.0.json", + "yml": "ocsl-1.0.yml", + "html": "ocsl-1.0.html", + "text": "ocsl-1.0.LICENSE" + }, + { + "license_key": "oculus-sdk-2020", + "spdx_license_key": "LicenseRef-scancode-oculus-sdk-2020", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oculus-sdk-2020.json", + "yml": "oculus-sdk-2020.yml", + "html": "oculus-sdk-2020.html", + "text": "oculus-sdk-2020.LICENSE" + }, + { + "license_key": "oculus-sdk-3.5", + "spdx_license_key": "LicenseRef-scancode-oculus-sdk-3.5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oculus-sdk-3.5.json", + "yml": "oculus-sdk-3.5.yml", + "html": "oculus-sdk-3.5.html", + "text": "oculus-sdk-3.5.LICENSE" + }, + { + "license_key": "oculus-sdk", + "spdx_license_key": "LicenseRef-scancode-oculus-sdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oculus-sdk.json", + "yml": "oculus-sdk.yml", + "html": "oculus-sdk.html", + "text": "oculus-sdk.LICENSE" + }, + { + "license_key": "odbl-1.0", + "spdx_license_key": "ODbL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "odbl-1.0.json", + "yml": "odbl-1.0.yml", + "html": "odbl-1.0.html", + "text": "odbl-1.0.LICENSE" + }, + { + "license_key": "odc-1.0", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "odc-1.0.json", + "yml": "odc-1.0.yml", + "html": "odc-1.0.html", + "text": "odc-1.0.LICENSE" + }, + { + "license_key": "odc-by-1.0", + "spdx_license_key": "ODC-By-1.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-odc-1.0" + ], + "is_exception": false, + "is_deprecated": false, + "json": "odc-by-1.0.json", + "yml": "odc-by-1.0.yml", + "html": "odc-by-1.0.html", + "text": "odc-by-1.0.LICENSE" + }, + { + "license_key": "odl", + "spdx_license_key": "LicenseRef-scancode-odl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "odl.json", + "yml": "odl.yml", + "html": "odl.html", + "text": "odl.LICENSE" + }, + { + "license_key": "ofl-1.0-no-rfn", + "spdx_license_key": "OFL-1.0-no-RFN", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ofl-1.0-no-rfn.json", + "yml": "ofl-1.0-no-rfn.yml", + "html": "ofl-1.0-no-rfn.html", + "text": "ofl-1.0-no-rfn.LICENSE" + }, + { + "license_key": "ofl-1.0-rfn", + "spdx_license_key": "OFL-1.0-RFN", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ofl-1.0-rfn.json", + "yml": "ofl-1.0-rfn.yml", + "html": "ofl-1.0-rfn.html", + "text": "ofl-1.0-rfn.LICENSE" + }, + { + "license_key": "ofl-1.0", + "spdx_license_key": "OFL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ofl-1.0.json", + "yml": "ofl-1.0.yml", + "html": "ofl-1.0.html", + "text": "ofl-1.0.LICENSE" + }, + { + "license_key": "ofl-1.1-no-rfn", + "spdx_license_key": "OFL-1.1-no-RFN", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ofl-1.1-no-rfn.json", + "yml": "ofl-1.1-no-rfn.yml", + "html": "ofl-1.1-no-rfn.html", + "text": "ofl-1.1-no-rfn.LICENSE" + }, + { + "license_key": "ofl-1.1-rfn", + "spdx_license_key": "OFL-1.1-RFN", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ofl-1.1-rfn.json", + "yml": "ofl-1.1-rfn.yml", + "html": "ofl-1.1-rfn.html", + "text": "ofl-1.1-rfn.LICENSE" + }, + { + "license_key": "ofl-1.1", + "spdx_license_key": "OFL-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ofl-1.1.json", + "yml": "ofl-1.1.yml", + "html": "ofl-1.1.html", + "text": "ofl-1.1.LICENSE" + }, + { + "license_key": "ogc-1.0", + "spdx_license_key": "OGC-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ogc-1.0.json", + "yml": "ogc-1.0.yml", + "html": "ogc-1.0.html", + "text": "ogc-1.0.LICENSE" + }, + { + "license_key": "ogc-2006", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "ogc-2006.json", + "yml": "ogc-2006.yml", + "html": "ogc-2006.html", + "text": "ogc-2006.LICENSE" + }, + { + "license_key": "ogc-document-2020", + "spdx_license_key": "LicenseRef-scancode-ogc-document-2020", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ogc-document-2020.json", + "yml": "ogc-document-2020.yml", + "html": "ogc-document-2020.html", + "text": "ogc-document-2020.LICENSE" + }, + { + "license_key": "ogc", + "spdx_license_key": "LicenseRef-scancode-ogc", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ogc.json", + "yml": "ogc.yml", + "html": "ogc.html", + "text": "ogc.LICENSE" + }, + { + "license_key": "ogdl-taiwan-1.0", + "spdx_license_key": "OGDL-Taiwan-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ogdl-taiwan-1.0.json", + "yml": "ogdl-taiwan-1.0.yml", + "html": "ogdl-taiwan-1.0.html", + "text": "ogdl-taiwan-1.0.LICENSE" + }, + { + "license_key": "ogl-uk-1.0", + "spdx_license_key": "OGL-UK-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ogl-uk-1.0.json", + "yml": "ogl-uk-1.0.yml", + "html": "ogl-uk-1.0.html", + "text": "ogl-uk-1.0.LICENSE" + }, + { + "license_key": "ogl-uk-2.0", + "spdx_license_key": "OGL-UK-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ogl-uk-2.0.json", + "yml": "ogl-uk-2.0.yml", + "html": "ogl-uk-2.0.html", + "text": "ogl-uk-2.0.LICENSE" + }, + { + "license_key": "ogl-uk-3.0", + "spdx_license_key": "OGL-UK-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ogl-uk-3.0.json", + "yml": "ogl-uk-3.0.yml", + "html": "ogl-uk-3.0.html", + "text": "ogl-uk-3.0.LICENSE" + }, + { + "license_key": "okl", + "spdx_license_key": "LicenseRef-scancode-okl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "okl.json", + "yml": "okl.yml", + "html": "okl.html", + "text": "okl.LICENSE" + }, + { + "license_key": "open-diameter", + "spdx_license_key": "LicenseRef-scancode-open-diameter", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "open-diameter.json", + "yml": "open-diameter.yml", + "html": "open-diameter.html", + "text": "open-diameter.LICENSE" + }, + { + "license_key": "open-group", + "spdx_license_key": "LicenseRef-scancode-open-group", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "open-group.json", + "yml": "open-group.yml", + "html": "open-group.html", + "text": "open-group.LICENSE" + }, + { + "license_key": "open-public", + "spdx_license_key": "OPL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "open-public.json", + "yml": "open-public.yml", + "html": "open-public.html", + "text": "open-public.LICENSE" + }, + { + "license_key": "openbd-exception-3.0", + "spdx_license_key": "LicenseRef-scancode-openbd-exception-3.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "openbd-exception-3.0.json", + "yml": "openbd-exception-3.0.yml", + "html": "openbd-exception-3.0.html", + "text": "openbd-exception-3.0.LICENSE" + }, + { + "license_key": "opengroup", + "spdx_license_key": "OGTSL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "opengroup.json", + "yml": "opengroup.yml", + "html": "opengroup.html", + "text": "opengroup.LICENSE" + }, + { + "license_key": "openjdk-assembly-exception-1.0", + "spdx_license_key": "OpenJDK-assembly-exception-1.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "openjdk-assembly-exception-1.0.json", + "yml": "openjdk-assembly-exception-1.0.yml", + "html": "openjdk-assembly-exception-1.0.html", + "text": "openjdk-assembly-exception-1.0.LICENSE" + }, + { + "license_key": "openjdk-classpath-exception-2.0", + "spdx_license_key": "LicenseRef-scancode-openjdk-classpath-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "openjdk-classpath-exception-2.0.json", + "yml": "openjdk-classpath-exception-2.0.yml", + "html": "openjdk-classpath-exception-2.0.html", + "text": "openjdk-classpath-exception-2.0.LICENSE" + }, + { + "license_key": "openjdk-exception", + "spdx_license_key": "LicenseRef-scancode-openjdk-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "openjdk-exception.json", + "yml": "openjdk-exception.yml", + "html": "openjdk-exception.html", + "text": "openjdk-exception.LICENSE" + }, + { + "license_key": "openldap-1.1", + "spdx_license_key": "OLDAP-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openldap-1.1.json", + "yml": "openldap-1.1.yml", + "html": "openldap-1.1.html", + "text": "openldap-1.1.LICENSE" + }, + { + "license_key": "openldap-1.2", + "spdx_license_key": "OLDAP-1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openldap-1.2.json", + "yml": "openldap-1.2.yml", + "html": "openldap-1.2.html", + "text": "openldap-1.2.LICENSE" + }, + { + "license_key": "openldap-1.3", + "spdx_license_key": "OLDAP-1.3", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openldap-1.3.json", + "yml": "openldap-1.3.yml", + "html": "openldap-1.3.html", + "text": "openldap-1.3.LICENSE" + }, + { + "license_key": "openldap-1.4", + "spdx_license_key": "OLDAP-1.4", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openldap-1.4.json", + "yml": "openldap-1.4.yml", + "html": "openldap-1.4.html", + "text": "openldap-1.4.LICENSE" + }, + { + "license_key": "openldap-2.0.1", + "spdx_license_key": "OLDAP-2.0.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openldap-2.0.1.json", + "yml": "openldap-2.0.1.yml", + "html": "openldap-2.0.1.html", + "text": "openldap-2.0.1.LICENSE" + }, + { + "license_key": "openldap-2.0", + "spdx_license_key": "OLDAP-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openldap-2.0.json", + "yml": "openldap-2.0.yml", + "html": "openldap-2.0.html", + "text": "openldap-2.0.LICENSE" + }, + { + "license_key": "openldap-2.1", + "spdx_license_key": "OLDAP-2.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openldap-2.1.json", + "yml": "openldap-2.1.yml", + "html": "openldap-2.1.html", + "text": "openldap-2.1.LICENSE" + }, + { + "license_key": "openldap-2.2.1", + "spdx_license_key": "OLDAP-2.2.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openldap-2.2.1.json", + "yml": "openldap-2.2.1.yml", + "html": "openldap-2.2.1.html", + "text": "openldap-2.2.1.LICENSE" + }, + { + "license_key": "openldap-2.2.2", + "spdx_license_key": "OLDAP-2.2.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openldap-2.2.2.json", + "yml": "openldap-2.2.2.yml", + "html": "openldap-2.2.2.html", + "text": "openldap-2.2.2.LICENSE" + }, + { + "license_key": "openldap-2.2", + "spdx_license_key": "OLDAP-2.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openldap-2.2.json", + "yml": "openldap-2.2.yml", + "html": "openldap-2.2.html", + "text": "openldap-2.2.LICENSE" + }, + { + "license_key": "openldap-2.3", + "spdx_license_key": "OLDAP-2.3", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openldap-2.3.json", + "yml": "openldap-2.3.yml", + "html": "openldap-2.3.html", + "text": "openldap-2.3.LICENSE" + }, + { + "license_key": "openldap-2.4", + "spdx_license_key": "OLDAP-2.4", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openldap-2.4.json", + "yml": "openldap-2.4.yml", + "html": "openldap-2.4.html", + "text": "openldap-2.4.LICENSE" + }, + { + "license_key": "openldap-2.5", + "spdx_license_key": "OLDAP-2.5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openldap-2.5.json", + "yml": "openldap-2.5.yml", + "html": "openldap-2.5.html", + "text": "openldap-2.5.LICENSE" + }, + { + "license_key": "openldap-2.6", + "spdx_license_key": "OLDAP-2.6", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openldap-2.6.json", + "yml": "openldap-2.6.yml", + "html": "openldap-2.6.html", + "text": "openldap-2.6.LICENSE" + }, + { + "license_key": "openldap-2.7", + "spdx_license_key": "OLDAP-2.7", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openldap-2.7.json", + "yml": "openldap-2.7.yml", + "html": "openldap-2.7.html", + "text": "openldap-2.7.LICENSE" + }, + { + "license_key": "openldap-2.8", + "spdx_license_key": "OLDAP-2.8", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openldap-2.8.json", + "yml": "openldap-2.8.yml", + "html": "openldap-2.8.html", + "text": "openldap-2.8.LICENSE" + }, + { + "license_key": "openmap", + "spdx_license_key": "LicenseRef-scancode-openmap", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openmap.json", + "yml": "openmap.yml", + "html": "openmap.html", + "text": "openmap.LICENSE" + }, + { + "license_key": "openmarket-fastcgi", + "spdx_license_key": "LicenseRef-scancode-openmarket-fastcgi", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openmarket-fastcgi.json", + "yml": "openmarket-fastcgi.yml", + "html": "openmarket-fastcgi.html", + "text": "openmarket-fastcgi.LICENSE" + }, + { + "license_key": "openmotif-exception-2.0-plus", + "spdx_license_key": "LicenseRef-scancode-openmotif-exception-2.0-plus", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "openmotif-exception-2.0-plus.json", + "yml": "openmotif-exception-2.0-plus.yml", + "html": "openmotif-exception-2.0-plus.html", + "text": "openmotif-exception-2.0-plus.LICENSE" + }, + { + "license_key": "opennetcf-shared-source", + "spdx_license_key": "LicenseRef-scancode-opennetcf-shared-source", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "opennetcf-shared-source.json", + "yml": "opennetcf-shared-source.yml", + "html": "opennetcf-shared-source.html", + "text": "opennetcf-shared-source.LICENSE" + }, + { + "license_key": "openorb-1.0", + "spdx_license_key": "LicenseRef-scancode-openorb-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openorb-1.0.json", + "yml": "openorb-1.0.yml", + "html": "openorb-1.0.html", + "text": "openorb-1.0.LICENSE" + }, + { + "license_key": "openpbs-2.3", + "spdx_license_key": "LicenseRef-scancode-openpbs-2.3", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openpbs-2.3.json", + "yml": "openpbs-2.3.yml", + "html": "openpbs-2.3.html", + "text": "openpbs-2.3.LICENSE" + }, + { + "license_key": "openpub", + "spdx_license_key": "LicenseRef-scancode-openpub", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openpub.json", + "yml": "openpub.yml", + "html": "openpub.html", + "text": "openpub.LICENSE" + }, + { + "license_key": "opensaml-1.0", + "spdx_license_key": "LicenseRef-scancode-opensaml-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "opensaml-1.0.json", + "yml": "opensaml-1.0.yml", + "html": "opensaml-1.0.html", + "text": "opensaml-1.0.LICENSE" + }, + { + "license_key": "openssh", + "spdx_license_key": "SSH-OpenSSH", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openssh.json", + "yml": "openssh.yml", + "html": "openssh.html", + "text": "openssh.LICENSE" + }, + { + "license_key": "openssl-exception-agpl-3.0-plus", + "spdx_license_key": "LicenseRef-scancode-openssl-exception-agpl-3.0-plus", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "openssl-exception-agpl-3.0-plus.json", + "yml": "openssl-exception-agpl-3.0-plus.yml", + "html": "openssl-exception-agpl-3.0-plus.html", + "text": "openssl-exception-agpl-3.0-plus.LICENSE" + }, + { + "license_key": "openssl-exception-agpl-3.0", + "spdx_license_key": "LicenseRef-scancode-openssl-exception-agpl-3.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "openssl-exception-agpl-3.0.json", + "yml": "openssl-exception-agpl-3.0.yml", + "html": "openssl-exception-agpl-3.0.html", + "text": "openssl-exception-agpl-3.0.LICENSE" + }, + { + "license_key": "openssl-exception-gpl-2.0-plus", + "spdx_license_key": "LicenseRef-scancode-openssl-exception-gpl-2.0-plus", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "openssl-exception-gpl-2.0-plus.json", + "yml": "openssl-exception-gpl-2.0-plus.yml", + "html": "openssl-exception-gpl-2.0-plus.html", + "text": "openssl-exception-gpl-2.0-plus.LICENSE" + }, + { + "license_key": "openssl-exception-gpl-2.0", + "spdx_license_key": "LicenseRef-scancode-openssl-exception-gpl-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "openssl-exception-gpl-2.0.json", + "yml": "openssl-exception-gpl-2.0.yml", + "html": "openssl-exception-gpl-2.0.html", + "text": "openssl-exception-gpl-2.0.LICENSE" + }, + { + "license_key": "openssl-exception-gpl-3.0-plus", + "spdx_license_key": "LicenseRef-scancode-openssl-exception-gpl-3.0-plus", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "openssl-exception-gpl-3.0-plus.json", + "yml": "openssl-exception-gpl-3.0-plus.yml", + "html": "openssl-exception-gpl-3.0-plus.html", + "text": "openssl-exception-gpl-3.0-plus.LICENSE" + }, + { + "license_key": "openssl-exception-lgpl-2.0-plus", + "spdx_license_key": "LicenseRef-scancode-openssl-exception-lgpl-2.0-plus", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "openssl-exception-lgpl-2.0-plus.json", + "yml": "openssl-exception-lgpl-2.0-plus.yml", + "html": "openssl-exception-lgpl-2.0-plus.html", + "text": "openssl-exception-lgpl-2.0-plus.LICENSE" + }, + { + "license_key": "openssl-exception-lgpl-3.0-plus", + "spdx_license_key": "LicenseRef-scancode-openssl-exception-lgpl-3.0-plus", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "openssl-exception-lgpl-3.0-plus.json", + "yml": "openssl-exception-lgpl-3.0-plus.yml", + "html": "openssl-exception-lgpl-3.0-plus.html", + "text": "openssl-exception-lgpl-3.0-plus.LICENSE" + }, + { + "license_key": "openssl-exception-mongodb-sspl", + "spdx_license_key": "LicenseRef-scancode-openssl-exception-mongodb-sspl", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "openssl-exception-mongodb-sspl.json", + "yml": "openssl-exception-mongodb-sspl.yml", + "html": "openssl-exception-mongodb-sspl.html", + "text": "openssl-exception-mongodb-sspl.LICENSE" + }, + { + "license_key": "openssl-nokia-psk-contribution", + "spdx_license_key": "LicenseRef-scancode-openssl-nokia-psk-contribution", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "openssl-nokia-psk-contribution.json", + "yml": "openssl-nokia-psk-contribution.yml", + "html": "openssl-nokia-psk-contribution.html", + "text": "openssl-nokia-psk-contribution.LICENSE" + }, + { + "license_key": "openssl-ssleay", + "spdx_license_key": "OpenSSL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openssl-ssleay.json", + "yml": "openssl-ssleay.yml", + "html": "openssl-ssleay.html", + "text": "openssl-ssleay.LICENSE" + }, + { + "license_key": "openssl", + "spdx_license_key": "LicenseRef-scancode-openssl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openssl.json", + "yml": "openssl.yml", + "html": "openssl.html", + "text": "openssl.LICENSE" + }, + { + "license_key": "openvpn-as-eula", + "spdx_license_key": "LicenseRef-scancode-openvpn-as-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openvpn-as-eula.json", + "yml": "openvpn-as-eula.yml", + "html": "openvpn-as-eula.html", + "text": "openvpn-as-eula.LICENSE" + }, + { + "license_key": "openvpn-openssl-exception", + "spdx_license_key": "openvpn-openssl-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "openvpn-openssl-exception.json", + "yml": "openvpn-openssl-exception.yml", + "html": "openvpn-openssl-exception.html", + "text": "openvpn-openssl-exception.LICENSE" + }, + { + "license_key": "opera-eula-2018", + "spdx_license_key": "LicenseRef-scancode-opera-eula-2018", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "opera-eula-2018.json", + "yml": "opera-eula-2018.yml", + "html": "opera-eula-2018.html", + "text": "opera-eula-2018.LICENSE" + }, + { + "license_key": "opera-eula-eea-2018", + "spdx_license_key": "LicenseRef-scancode-opera-eula-eea-2018", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "opera-eula-eea-2018.json", + "yml": "opera-eula-eea-2018.yml", + "html": "opera-eula-eea-2018.html", + "text": "opera-eula-eea-2018.LICENSE" + }, + { + "license_key": "opera-widget-1.0", + "spdx_license_key": "LicenseRef-scancode-opera-widget-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "opera-widget-1.0.json", + "yml": "opera-widget-1.0.yml", + "html": "opera-widget-1.0.html", + "text": "opera-widget-1.0.LICENSE" + }, + { + "license_key": "opl-1.0", + "spdx_license_key": "LicenseRef-scancode-opl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "opl-1.0.json", + "yml": "opl-1.0.yml", + "html": "opl-1.0.html", + "text": "opl-1.0.LICENSE" + }, + { + "license_key": "opnl-1.0", + "spdx_license_key": "LicenseRef-scancode-opnl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "opnl-1.0.json", + "yml": "opnl-1.0.yml", + "html": "opnl-1.0.html", + "text": "opnl-1.0.LICENSE" + }, + { + "license_key": "opnl-2.0", + "spdx_license_key": "LicenseRef-scancode-opnl-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "opnl-2.0.json", + "yml": "opnl-2.0.yml", + "html": "opnl-2.0.html", + "text": "opnl-2.0.LICENSE" + }, + { + "license_key": "oracle-bcl-javaee", + "spdx_license_key": "LicenseRef-scancode-oracle-bcl-javaee", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oracle-bcl-javaee.json", + "yml": "oracle-bcl-javaee.yml", + "html": "oracle-bcl-javaee.html", + "text": "oracle-bcl-javaee.LICENSE" + }, + { + "license_key": "oracle-bcl-javase-javafx-2012", + "spdx_license_key": "LicenseRef-scancode-oracle-bcl-javase-javafx-2012", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oracle-bcl-javase-javafx-2012.json", + "yml": "oracle-bcl-javase-javafx-2012.yml", + "html": "oracle-bcl-javase-javafx-2012.html", + "text": "oracle-bcl-javase-javafx-2012.LICENSE" + }, + { + "license_key": "oracle-bcl-javase-javafx-2013", + "spdx_license_key": "LicenseRef-scancode-oracle-bcl-javase-javafx-2013", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oracle-bcl-javase-javafx-2013.json", + "yml": "oracle-bcl-javase-javafx-2013.yml", + "html": "oracle-bcl-javase-javafx-2013.html", + "text": "oracle-bcl-javase-javafx-2013.LICENSE" + }, + { + "license_key": "oracle-bcl-javase-platform-javafx-2013", + "spdx_license_key": "LicenseRef-scancode-oracle-bcl-javase-platform-javafx-2013", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oracle-bcl-javase-platform-javafx-2013.json", + "yml": "oracle-bcl-javase-platform-javafx-2013.yml", + "html": "oracle-bcl-javase-platform-javafx-2013.html", + "text": "oracle-bcl-javase-platform-javafx-2013.LICENSE" + }, + { + "license_key": "oracle-bcl-javase-platform-javafx-2017", + "spdx_license_key": "LicenseRef-scancode-oracle-bcl-javase-platform-javafx-2017", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oracle-bcl-javase-platform-javafx-2017.json", + "yml": "oracle-bcl-javase-platform-javafx-2017.yml", + "html": "oracle-bcl-javase-platform-javafx-2017.html", + "text": "oracle-bcl-javase-platform-javafx-2017.LICENSE" + }, + { + "license_key": "oracle-bcl-jsse-1.0.3", + "spdx_license_key": "LicenseRef-scancode-oracle-bcl-jsse-1.0.3", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oracle-bcl-jsse-1.0.3.json", + "yml": "oracle-bcl-jsse-1.0.3.yml", + "html": "oracle-bcl-jsse-1.0.3.html", + "text": "oracle-bcl-jsse-1.0.3.LICENSE" + }, + { + "license_key": "oracle-bsd-no-nuclear", + "spdx_license_key": "BSD-3-Clause-No-Nuclear-License-2014", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oracle-bsd-no-nuclear.json", + "yml": "oracle-bsd-no-nuclear.yml", + "html": "oracle-bsd-no-nuclear.html", + "text": "oracle-bsd-no-nuclear.LICENSE" + }, + { + "license_key": "oracle-code-samples-bsd", + "spdx_license_key": "LicenseRef-scancode-oracle-code-samples-bsd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oracle-code-samples-bsd.json", + "yml": "oracle-code-samples-bsd.yml", + "html": "oracle-code-samples-bsd.html", + "text": "oracle-code-samples-bsd.LICENSE" + }, + { + "license_key": "oracle-commercial-database-11g2", + "spdx_license_key": "LicenseRef-scancode-oracle-commercial-database-11g2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oracle-commercial-database-11g2.json", + "yml": "oracle-commercial-database-11g2.yml", + "html": "oracle-commercial-database-11g2.html", + "text": "oracle-commercial-database-11g2.LICENSE" + }, + { + "license_key": "oracle-devtools-vsnet-dev", + "spdx_license_key": "LicenseRef-scancode-oracle-devtools-vsnet-dev", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oracle-devtools-vsnet-dev.json", + "yml": "oracle-devtools-vsnet-dev.yml", + "html": "oracle-devtools-vsnet-dev.html", + "text": "oracle-devtools-vsnet-dev.LICENSE" + }, + { + "license_key": "oracle-entitlement-05-15", + "spdx_license_key": "LicenseRef-scancode-oracle-entitlement-05-15", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oracle-entitlement-05-15.json", + "yml": "oracle-entitlement-05-15.yml", + "html": "oracle-entitlement-05-15.html", + "text": "oracle-entitlement-05-15.LICENSE" + }, + { + "license_key": "oracle-java-ee-sdk-2010", + "spdx_license_key": "LicenseRef-scancode-oracle-java-ee-sdk-2010", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oracle-java-ee-sdk-2010.json", + "yml": "oracle-java-ee-sdk-2010.yml", + "html": "oracle-java-ee-sdk-2010.html", + "text": "oracle-java-ee-sdk-2010.LICENSE" + }, + { + "license_key": "oracle-master-agreement", + "spdx_license_key": "LicenseRef-scancode-oracle-master-agreement", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oracle-master-agreement.json", + "yml": "oracle-master-agreement.yml", + "html": "oracle-master-agreement.html", + "text": "oracle-master-agreement.LICENSE" + }, + { + "license_key": "oracle-mysql-foss-exception-2.0", + "spdx_license_key": "LicenseRef-scancode-oracle-mysql-foss-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "oracle-mysql-foss-exception-2.0.json", + "yml": "oracle-mysql-foss-exception-2.0.yml", + "html": "oracle-mysql-foss-exception-2.0.html", + "text": "oracle-mysql-foss-exception-2.0.LICENSE" + }, + { + "license_key": "oracle-openjdk-classpath-exception-2.0", + "spdx_license_key": "LicenseRef-scancode-oracle-openjdk-classpath-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "oracle-openjdk-classpath-exception-2.0.json", + "yml": "oracle-openjdk-classpath-exception-2.0.yml", + "html": "oracle-openjdk-classpath-exception-2.0.html", + "text": "oracle-openjdk-classpath-exception-2.0.LICENSE" + }, + { + "license_key": "oracle-otn-javase-2019", + "spdx_license_key": "LicenseRef-scancode-oracle-otn-javase-2019", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oracle-otn-javase-2019.json", + "yml": "oracle-otn-javase-2019.yml", + "html": "oracle-otn-javase-2019.html", + "text": "oracle-otn-javase-2019.LICENSE" + }, + { + "license_key": "oracle-sql-developer", + "spdx_license_key": "LicenseRef-scancode-oracle-sql-developer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oracle-sql-developer.json", + "yml": "oracle-sql-developer.yml", + "html": "oracle-sql-developer.html", + "text": "oracle-sql-developer.LICENSE" + }, + { + "license_key": "oracle-web-sites-tou", + "spdx_license_key": "LicenseRef-scancode-oracle-web-sites-tou", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oracle-web-sites-tou.json", + "yml": "oracle-web-sites-tou.yml", + "html": "oracle-web-sites-tou.html", + "text": "oracle-web-sites-tou.LICENSE" + }, + { + "license_key": "oreilly-notice", + "spdx_license_key": "LicenseRef-scancode-oreilly-notice", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oreilly-notice.json", + "yml": "oreilly-notice.yml", + "html": "oreilly-notice.html", + "text": "oreilly-notice.LICENSE" + }, + { + "license_key": "oset-pl-2.1", + "spdx_license_key": "OSET-PL-2.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oset-pl-2.1.json", + "yml": "oset-pl-2.1.yml", + "html": "oset-pl-2.1.html", + "text": "oset-pl-2.1.LICENSE" + }, + { + "license_key": "osetpl-2.1", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "osetpl-2.1.json", + "yml": "osetpl-2.1.yml", + "html": "osetpl-2.1.html", + "text": "osetpl-2.1.LICENSE" + }, + { + "license_key": "osf-1990", + "spdx_license_key": "LicenseRef-scancode-osf-1990", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "osf-1990.json", + "yml": "osf-1990.yml", + "html": "osf-1990.html", + "text": "osf-1990.LICENSE" + }, + { + "license_key": "osgi-spec-2.0", + "spdx_license_key": "LicenseRef-scancode-osgi-spec-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "osgi-spec-2.0.json", + "yml": "osgi-spec-2.0.yml", + "html": "osgi-spec-2.0.html", + "text": "osgi-spec-2.0.LICENSE" + }, + { + "license_key": "osl-1.0", + "spdx_license_key": "OSL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "osl-1.0.json", + "yml": "osl-1.0.yml", + "html": "osl-1.0.html", + "text": "osl-1.0.LICENSE" + }, + { + "license_key": "osl-1.1", + "spdx_license_key": "OSL-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "osl-1.1.json", + "yml": "osl-1.1.yml", + "html": "osl-1.1.html", + "text": "osl-1.1.LICENSE" + }, + { + "license_key": "osl-2.0", + "spdx_license_key": "OSL-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "osl-2.0.json", + "yml": "osl-2.0.yml", + "html": "osl-2.0.html", + "text": "osl-2.0.LICENSE" + }, + { + "license_key": "osl-2.1", + "spdx_license_key": "OSL-2.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "osl-2.1.json", + "yml": "osl-2.1.yml", + "html": "osl-2.1.html", + "text": "osl-2.1.LICENSE" + }, + { + "license_key": "osl-3.0", + "spdx_license_key": "OSL-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "osl-3.0.json", + "yml": "osl-3.0.yml", + "html": "osl-3.0.html", + "text": "osl-3.0.LICENSE" + }, + { + "license_key": "ossn-3.0", + "spdx_license_key": "LicenseRef-scancode-ossn-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ossn-3.0.json", + "yml": "ossn-3.0.yml", + "html": "ossn-3.0.html", + "text": "ossn-3.0.LICENSE" + }, + { + "license_key": "oswego-concurrent", + "spdx_license_key": "LicenseRef-scancode-oswego-concurrent", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oswego-concurrent.json", + "yml": "oswego-concurrent.yml", + "html": "oswego-concurrent.html", + "text": "oswego-concurrent.LICENSE" + }, + { + "license_key": "other-copyleft", + "spdx_license_key": "LicenseRef-scancode-other-copyleft", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "other-copyleft.json", + "yml": "other-copyleft.yml", + "html": "other-copyleft.html", + "text": "other-copyleft.LICENSE" + }, + { + "license_key": "other-permissive", + "spdx_license_key": "LicenseRef-scancode-other-permissive", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "other-permissive.json", + "yml": "other-permissive.yml", + "html": "other-permissive.html", + "text": "other-permissive.LICENSE" + }, + { + "license_key": "otn-dev-dist-2009", + "spdx_license_key": "LicenseRef-scancode-otn-dev-dist-2009", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "otn-dev-dist-2009.json", + "yml": "otn-dev-dist-2009.yml", + "html": "otn-dev-dist-2009.html", + "text": "otn-dev-dist-2009.LICENSE" + }, + { + "license_key": "otn-dev-dist-2014", + "spdx_license_key": "LicenseRef-scancode-otn-dev-dist-2014", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "otn-dev-dist-2014.json", + "yml": "otn-dev-dist-2014.yml", + "html": "otn-dev-dist-2014.html", + "text": "otn-dev-dist-2014.LICENSE" + }, + { + "license_key": "otn-dev-dist-2016", + "spdx_license_key": "LicenseRef-scancode-otn-dev-dist-2016", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "otn-dev-dist-2016.json", + "yml": "otn-dev-dist-2016.yml", + "html": "otn-dev-dist-2016.html", + "text": "otn-dev-dist-2016.LICENSE" + }, + { + "license_key": "otn-dev-dist", + "spdx_license_key": "LicenseRef-scancode-otn-dev-dist", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "otn-dev-dist.json", + "yml": "otn-dev-dist.yml", + "html": "otn-dev-dist.html", + "text": "otn-dev-dist.LICENSE" + }, + { + "license_key": "otn-early-adopter-development", + "spdx_license_key": "LicenseRef-scancode-otn-early-adopter-development", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "otn-early-adopter-development.json", + "yml": "otn-early-adopter-development.yml", + "html": "otn-early-adopter-development.html", + "text": "otn-early-adopter-development.LICENSE" + }, + { + "license_key": "otn-standard-2014-09", + "spdx_license_key": "LicenseRef-scancode-otn-standard-2014-09", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "otn-standard-2014-09.json", + "yml": "otn-standard-2014-09.yml", + "html": "otn-standard-2014-09.html", + "text": "otn-standard-2014-09.LICENSE" + }, + { + "license_key": "owal-1.0", + "spdx_license_key": "LicenseRef-scancode-owal-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "owal-1.0.json", + "yml": "owal-1.0.yml", + "html": "owal-1.0.html", + "text": "owal-1.0.LICENSE" + }, + { + "license_key": "owfa-1.0", + "spdx_license_key": "LicenseRef-scancode-owfa-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "owfa-1.0.json", + "yml": "owfa-1.0.yml", + "html": "owfa-1.0.html", + "text": "owfa-1.0.LICENSE" + }, + { + "license_key": "owtchart", + "spdx_license_key": "LicenseRef-scancode-owtchart", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "owtchart.json", + "yml": "owtchart.yml", + "html": "owtchart.html", + "text": "owtchart.LICENSE" + }, + { + "license_key": "oxygen-xml-webhelp-eula", + "spdx_license_key": "LicenseRef-scancode-oxygen-xml-webhelp-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oxygen-xml-webhelp-eula.json", + "yml": "oxygen-xml-webhelp-eula.yml", + "html": "oxygen-xml-webhelp-eula.html", + "text": "oxygen-xml-webhelp-eula.LICENSE" + }, + { + "license_key": "ozplb-1.0", + "spdx_license_key": "LicenseRef-scancode-ozplb-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ozplb-1.0.json", + "yml": "ozplb-1.0.yml", + "html": "ozplb-1.0.html", + "text": "ozplb-1.0.LICENSE" + }, + { + "license_key": "ozplb-1.1", + "spdx_license_key": "LicenseRef-scancode-ozplb-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ozplb-1.1.json", + "yml": "ozplb-1.1.yml", + "html": "ozplb-1.1.html", + "text": "ozplb-1.1.LICENSE" + }, + { + "license_key": "paint-net", + "spdx_license_key": "LicenseRef-scancode-paint-net", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "paint-net.json", + "yml": "paint-net.yml", + "html": "paint-net.html", + "text": "paint-net.LICENSE" + }, + { + "license_key": "paolo-messina-2000", + "spdx_license_key": "LicenseRef-scancode-paolo-messina-2000", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "paolo-messina-2000.json", + "yml": "paolo-messina-2000.yml", + "html": "paolo-messina-2000.html", + "text": "paolo-messina-2000.LICENSE" + }, + { + "license_key": "paraview-1.2", + "spdx_license_key": "LicenseRef-scancode-paraview-1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "paraview-1.2.json", + "yml": "paraview-1.2.yml", + "html": "paraview-1.2.html", + "text": "paraview-1.2.LICENSE" + }, + { + "license_key": "parity-6.0.0", + "spdx_license_key": "Parity-6.0.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "parity-6.0.0.json", + "yml": "parity-6.0.0.yml", + "html": "parity-6.0.0.html", + "text": "parity-6.0.0.LICENSE" + }, + { + "license_key": "parity-7.0.0", + "spdx_license_key": "Parity-7.0.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "parity-7.0.0.json", + "yml": "parity-7.0.0.yml", + "html": "parity-7.0.0.html", + "text": "parity-7.0.0.LICENSE" + }, + { + "license_key": "passive-aggressive", + "spdx_license_key": "LicenseRef-scancode-passive-aggressive", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "passive-aggressive.json", + "yml": "passive-aggressive.yml", + "html": "passive-aggressive.html", + "text": "passive-aggressive.LICENSE" + }, + { + "license_key": "patent-disclaimer", + "spdx_license_key": "LicenseRef-scancode-patent-disclaimer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "patent-disclaimer.json", + "yml": "patent-disclaimer.yml", + "html": "patent-disclaimer.html", + "text": "patent-disclaimer.LICENSE" + }, + { + "license_key": "paul-hsieh-derivative", + "spdx_license_key": "LicenseRef-scancode-paul-hsieh-derivative", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "paul-hsieh-derivative.json", + "yml": "paul-hsieh-derivative.yml", + "html": "paul-hsieh-derivative.html", + "text": "paul-hsieh-derivative.LICENSE" + }, + { + "license_key": "paul-hsieh-exposition", + "spdx_license_key": "LicenseRef-scancode-paul-hsieh-exposition", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "paul-hsieh-exposition.json", + "yml": "paul-hsieh-exposition.yml", + "html": "paul-hsieh-exposition.html", + "text": "paul-hsieh-exposition.LICENSE" + }, + { + "license_key": "paul-mackerras-binary", + "spdx_license_key": "LicenseRef-scancode-paul-mackerras-binary", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "paul-mackerras-binary.json", + "yml": "paul-mackerras-binary.yml", + "html": "paul-mackerras-binary.html", + "text": "paul-mackerras-binary.LICENSE" + }, + { + "license_key": "paul-mackerras-new", + "spdx_license_key": "LicenseRef-scancode-paul-mackerras-new", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "paul-mackerras-new.json", + "yml": "paul-mackerras-new.yml", + "html": "paul-mackerras-new.html", + "text": "paul-mackerras-new.LICENSE" + }, + { + "license_key": "paul-mackerras-simplified", + "spdx_license_key": "LicenseRef-scancode-paul-mackerras-simplified", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "paul-mackerras-simplified.json", + "yml": "paul-mackerras-simplified.yml", + "html": "paul-mackerras-simplified.html", + "text": "paul-mackerras-simplified.LICENSE" + }, + { + "license_key": "paul-mackerras", + "spdx_license_key": "LicenseRef-scancode-paul-mackerras", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "paul-mackerras.json", + "yml": "paul-mackerras.yml", + "html": "paul-mackerras.html", + "text": "paul-mackerras.LICENSE" + }, + { + "license_key": "paulo-soares", + "spdx_license_key": "LicenseRef-scancode-paulo-soares", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "paulo-soares.json", + "yml": "paulo-soares.yml", + "html": "paulo-soares.html", + "text": "paulo-soares.LICENSE" + }, + { + "license_key": "pcre", + "spdx_license_key": "LicenseRef-scancode-pcre", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "pcre.json", + "yml": "pcre.yml", + "html": "pcre.html", + "text": "pcre.LICENSE" + }, + { + "license_key": "pd-mit", + "spdx_license_key": "LicenseRef-scancode-pd-mit", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "pd-mit.json", + "yml": "pd-mit.yml", + "html": "pd-mit.html", + "text": "pd-mit.LICENSE" + }, + { + "license_key": "pd-programming", + "spdx_license_key": "LicenseRef-scancode-pd-programming", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "pd-programming.json", + "yml": "pd-programming.yml", + "html": "pd-programming.html", + "text": "pd-programming.LICENSE" + }, + { + "license_key": "pddl-1.0", + "spdx_license_key": "PDDL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "pddl-1.0.json", + "yml": "pddl-1.0.yml", + "html": "pddl-1.0.html", + "text": "pddl-1.0.LICENSE" + }, + { + "license_key": "pdf-creator-pilot", + "spdx_license_key": "LicenseRef-scancode-pdf-creator-pilot", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "pdf-creator-pilot.json", + "yml": "pdf-creator-pilot.yml", + "html": "pdf-creator-pilot.html", + "text": "pdf-creator-pilot.LICENSE" + }, + { + "license_key": "pdl-1.0", + "spdx_license_key": "LicenseRef-scancode-pdl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "pdl-1.0.json", + "yml": "pdl-1.0.yml", + "html": "pdl-1.0.html", + "text": "pdl-1.0.LICENSE" + }, + { + "license_key": "perl-1.0", + "spdx_license_key": "LicenseRef-scancode-perl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "perl-1.0.json", + "yml": "perl-1.0.yml", + "html": "perl-1.0.html", + "text": "perl-1.0.LICENSE" + }, + { + "license_key": "peter-deutsch-document", + "spdx_license_key": "LicenseRef-scancode-peter-deutsch-document", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "peter-deutsch-document.json", + "yml": "peter-deutsch-document.yml", + "html": "peter-deutsch-document.html", + "text": "peter-deutsch-document.LICENSE" + }, + { + "license_key": "pfe-proprietary-notice", + "spdx_license_key": "LicenseRef-scancode-pfe-proprietary-notice", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "pfe-proprietary-notice.json", + "yml": "pfe-proprietary-notice.yml", + "html": "pfe-proprietary-notice.html", + "text": "pfe-proprietary-notice.LICENSE" + }, + { + "license_key": "pftijah-1.1", + "spdx_license_key": "LicenseRef-scancode-pftijah-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "pftijah-1.1.json", + "yml": "pftijah-1.1.yml", + "html": "pftijah-1.1.html", + "text": "pftijah-1.1.LICENSE" + }, + { + "license_key": "pftus-1.1", + "spdx_license_key": "LicenseRef-scancode-pftus-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "pftus-1.1.json", + "yml": "pftus-1.1.yml", + "html": "pftus-1.1.html", + "text": "pftus-1.1.LICENSE" + }, + { + "license_key": "phil-bunce", + "spdx_license_key": "LicenseRef-scancode-phil-bunce", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "phil-bunce.json", + "yml": "phil-bunce.yml", + "html": "phil-bunce.html", + "text": "phil-bunce.LICENSE" + }, + { + "license_key": "philippe-de-muyter", + "spdx_license_key": "LicenseRef-scancode-philippe-de-muyter", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "philippe-de-muyter.json", + "yml": "philippe-de-muyter.yml", + "html": "philippe-de-muyter.html", + "text": "philippe-de-muyter.LICENSE" + }, + { + "license_key": "philips-proprietary-notice-2000", + "spdx_license_key": "LicenseRef-scancode-philips-proprietary-notice-2000", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "philips-proprietary-notice-2000.json", + "yml": "philips-proprietary-notice-2000.yml", + "html": "philips-proprietary-notice-2000.html", + "text": "philips-proprietary-notice-2000.LICENSE" + }, + { + "license_key": "phorum-2.0", + "spdx_license_key": "LicenseRef-scancode-phorum-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "phorum-2.0.json", + "yml": "phorum-2.0.yml", + "html": "phorum-2.0.html", + "text": "phorum-2.0.LICENSE" + }, + { + "license_key": "php-2.0.2", + "spdx_license_key": "LicenseRef-scancode-php-2.0.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "php-2.0.2.json", + "yml": "php-2.0.2.yml", + "html": "php-2.0.2.html", + "text": "php-2.0.2.LICENSE" + }, + { + "license_key": "php-3.0", + "spdx_license_key": "PHP-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "php-3.0.json", + "yml": "php-3.0.yml", + "html": "php-3.0.html", + "text": "php-3.0.LICENSE" + }, + { + "license_key": "php-3.01", + "spdx_license_key": "PHP-3.01", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "php-3.01.json", + "yml": "php-3.01.yml", + "html": "php-3.01.html", + "text": "php-3.01.LICENSE" + }, + { + "license_key": "pine", + "spdx_license_key": "LicenseRef-scancode-pine", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "pine.json", + "yml": "pine.yml", + "html": "pine.html", + "text": "pine.LICENSE" + }, + { + "license_key": "pivotal-tou", + "spdx_license_key": "LicenseRef-scancode-pivotal-tou", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "pivotal-tou.json", + "yml": "pivotal-tou.yml", + "html": "pivotal-tou.html", + "text": "pivotal-tou.LICENSE" + }, + { + "license_key": "planet-source-code", + "spdx_license_key": "LicenseRef-scancode-planet-source-code", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "planet-source-code.json", + "yml": "planet-source-code.yml", + "html": "planet-source-code.html", + "text": "planet-source-code.LICENSE" + }, + { + "license_key": "pngsuite", + "spdx_license_key": "LicenseRef-scancode-pngsuite", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "pngsuite.json", + "yml": "pngsuite.yml", + "html": "pngsuite.html", + "text": "pngsuite.LICENSE" + }, + { + "license_key": "politepix-pl-1.0", + "spdx_license_key": "LicenseRef-scancode-politepix-pl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "politepix-pl-1.0.json", + "yml": "politepix-pl-1.0.yml", + "html": "politepix-pl-1.0.html", + "text": "politepix-pl-1.0.LICENSE" + }, + { + "license_key": "polyform-defensive-1.0.0", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "polyform-defensive-1.0.0.json", + "yml": "polyform-defensive-1.0.0.yml", + "html": "polyform-defensive-1.0.0.html", + "text": "polyform-defensive-1.0.0.LICENSE" + }, + { + "license_key": "polyform-free-trial-1.0.0", + "spdx_license_key": "LicenseRef-scancode-polyform-free-trial-1.0.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "polyform-free-trial-1.0.0.json", + "yml": "polyform-free-trial-1.0.0.yml", + "html": "polyform-free-trial-1.0.0.html", + "text": "polyform-free-trial-1.0.0.LICENSE" + }, + { + "license_key": "polyform-internal-use-1.0.0", + "spdx_license_key": "LicenseRef-scancode-polyform-internal-use-1.0.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "polyform-internal-use-1.0.0.json", + "yml": "polyform-internal-use-1.0.0.yml", + "html": "polyform-internal-use-1.0.0.html", + "text": "polyform-internal-use-1.0.0.LICENSE" + }, + { + "license_key": "polyform-noncommercial-1.0.0", + "spdx_license_key": "PolyForm-Noncommercial-1.0.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "polyform-noncommercial-1.0.0.json", + "yml": "polyform-noncommercial-1.0.0.yml", + "html": "polyform-noncommercial-1.0.0.html", + "text": "polyform-noncommercial-1.0.0.LICENSE" + }, + { + "license_key": "polyform-perimeter-1.0.0", + "spdx_license_key": "LicenseRef-scancode-polyform-perimeter-1.0.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "polyform-perimeter-1.0.0.json", + "yml": "polyform-perimeter-1.0.0.yml", + "html": "polyform-perimeter-1.0.0.html", + "text": "polyform-perimeter-1.0.0.LICENSE" + }, + { + "license_key": "polyform-shield-1.0.0", + "spdx_license_key": "LicenseRef-scancode-polyform-shield-1.0.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-polyform-defensive-1.0.0" + ], + "is_exception": false, + "is_deprecated": false, + "json": "polyform-shield-1.0.0.json", + "yml": "polyform-shield-1.0.0.yml", + "html": "polyform-shield-1.0.0.html", + "text": "polyform-shield-1.0.0.LICENSE" + }, + { + "license_key": "polyform-small-business-1.0.0", + "spdx_license_key": "PolyForm-Small-Business-1.0.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "polyform-small-business-1.0.0.json", + "yml": "polyform-small-business-1.0.0.yml", + "html": "polyform-small-business-1.0.0.html", + "text": "polyform-small-business-1.0.0.LICENSE" + }, + { + "license_key": "polyform-strict-1.0.0", + "spdx_license_key": "LicenseRef-scancode-polyform-strict-1.0.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "polyform-strict-1.0.0.json", + "yml": "polyform-strict-1.0.0.yml", + "html": "polyform-strict-1.0.0.html", + "text": "polyform-strict-1.0.0.LICENSE" + }, + { + "license_key": "postgresql", + "spdx_license_key": "PostgreSQL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "postgresql.json", + "yml": "postgresql.yml", + "html": "postgresql.html", + "text": "postgresql.LICENSE" + }, + { + "license_key": "powervr-tools-software-eula", + "spdx_license_key": "LicenseRef-scancode-powervr-tools-software-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "powervr-tools-software-eula.json", + "yml": "powervr-tools-software-eula.yml", + "html": "powervr-tools-software-eula.html", + "text": "powervr-tools-software-eula.LICENSE" + }, + { + "license_key": "ppp", + "spdx_license_key": "LicenseRef-scancode-ppp", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ppp.json", + "yml": "ppp.yml", + "html": "ppp.html", + "text": "ppp.LICENSE" + }, + { + "license_key": "proguard-exception-2.0", + "spdx_license_key": "LicenseRef-scancode-proguard-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "proguard-exception-2.0.json", + "yml": "proguard-exception-2.0.yml", + "html": "proguard-exception-2.0.html", + "text": "proguard-exception-2.0.LICENSE" + }, + { + "license_key": "proprietary-license", + "spdx_license_key": "LicenseRef-scancode-proprietary-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "proprietary-license.json", + "yml": "proprietary-license.yml", + "html": "proprietary-license.html", + "text": "proprietary-license.LICENSE" + }, + { + "license_key": "proprietary", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "proprietary.json", + "yml": "proprietary.yml", + "html": "proprietary.html", + "text": "proprietary.LICENSE" + }, + { + "license_key": "prosperity-1.0.1", + "spdx_license_key": "LicenseRef-scancode-prosperity-1.0.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "prosperity-1.0.1.json", + "yml": "prosperity-1.0.1.yml", + "html": "prosperity-1.0.1.html", + "text": "prosperity-1.0.1.LICENSE" + }, + { + "license_key": "prosperity-2.0", + "spdx_license_key": "LicenseRef-scancode-prosperity-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "prosperity-2.0.json", + "yml": "prosperity-2.0.yml", + "html": "prosperity-2.0.html", + "text": "prosperity-2.0.LICENSE" + }, + { + "license_key": "prosperity-3.0", + "spdx_license_key": "LicenseRef-scancode-prosperity-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "prosperity-3.0.json", + "yml": "prosperity-3.0.yml", + "html": "prosperity-3.0.html", + "text": "prosperity-3.0.LICENSE" + }, + { + "license_key": "protobuf", + "spdx_license_key": "LicenseRef-scancode-protobuf", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "protobuf.json", + "yml": "protobuf.yml", + "html": "protobuf.html", + "text": "protobuf.LICENSE" + }, + { + "license_key": "ps-or-pdf-font-exception-20170817", + "spdx_license_key": "PS-or-PDF-font-exception-20170817", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "ps-or-pdf-font-exception-20170817.json", + "yml": "ps-or-pdf-font-exception-20170817.yml", + "html": "ps-or-pdf-font-exception-20170817.html", + "text": "ps-or-pdf-font-exception-20170817.LICENSE" + }, + { + "license_key": "psf-2.0", + "spdx_license_key": "PSF-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "psf-2.0.json", + "yml": "psf-2.0.yml", + "html": "psf-2.0.html", + "text": "psf-2.0.LICENSE" + }, + { + "license_key": "psf-3.7.2", + "spdx_license_key": "LicenseRef-scancode-psf-3.7.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "psf-3.7.2.json", + "yml": "psf-3.7.2.yml", + "html": "psf-3.7.2.html", + "text": "psf-3.7.2.LICENSE" + }, + { + "license_key": "psfrag", + "spdx_license_key": "psfrag", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "psfrag.json", + "yml": "psfrag.yml", + "html": "psfrag.html", + "text": "psfrag.LICENSE" + }, + { + "license_key": "psutils", + "spdx_license_key": "psutils", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "psutils.json", + "yml": "psutils.yml", + "html": "psutils.html", + "text": "psutils.LICENSE" + }, + { + "license_key": "psytec-freesoft", + "spdx_license_key": "LicenseRef-scancode-psytec-freesoft", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "psytec-freesoft.json", + "yml": "psytec-freesoft.yml", + "html": "psytec-freesoft.html", + "text": "psytec-freesoft.LICENSE" + }, + { + "license_key": "public-domain-disclaimer", + "spdx_license_key": "LicenseRef-scancode-public-domain-disclaimer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "public-domain-disclaimer.json", + "yml": "public-domain-disclaimer.yml", + "html": "public-domain-disclaimer.html", + "text": "public-domain-disclaimer.LICENSE" + }, + { + "license_key": "public-domain", + "spdx_license_key": "LicenseRef-scancode-public-domain", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "public-domain.json", + "yml": "public-domain.yml", + "html": "public-domain.html", + "text": "public-domain.LICENSE" + }, + { + "license_key": "purdue-bsd", + "spdx_license_key": "LicenseRef-scancode-purdue-bsd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "purdue-bsd.json", + "yml": "purdue-bsd.yml", + "html": "purdue-bsd.html", + "text": "purdue-bsd.LICENSE" + }, + { + "license_key": "pycrypto", + "spdx_license_key": "LicenseRef-scancode-pycrypto", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "pycrypto.json", + "yml": "pycrypto.yml", + "html": "pycrypto.html", + "text": "pycrypto.LICENSE" + }, + { + "license_key": "pygres-2.2", + "spdx_license_key": "LicenseRef-scancode-pygres-2.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "pygres-2.2.json", + "yml": "pygres-2.2.yml", + "html": "pygres-2.2.html", + "text": "pygres-2.2.LICENSE" + }, + { + "license_key": "python-cwi", + "spdx_license_key": "LicenseRef-scancode-python-cwi", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "python-cwi.json", + "yml": "python-cwi.yml", + "html": "python-cwi.html", + "text": "python-cwi.LICENSE" + }, + { + "license_key": "python", + "spdx_license_key": "Python-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "python.json", + "yml": "python.yml", + "html": "python.html", + "text": "python.LICENSE" + }, + { + "license_key": "qaplug", + "spdx_license_key": "LicenseRef-scancode-qaplug", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "qaplug.json", + "yml": "qaplug.yml", + "html": "qaplug.html", + "text": "qaplug.LICENSE" + }, + { + "license_key": "qca-technology", + "spdx_license_key": "LicenseRef-scancode-qca-technology", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "qca-technology.json", + "yml": "qca-technology.yml", + "html": "qca-technology.html", + "text": "qca-technology.LICENSE" + }, + { + "license_key": "qcad-exception-gpl", + "spdx_license_key": "LicenseRef-scancode-qcad-exception-gpl", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "qcad-exception-gpl.json", + "yml": "qcad-exception-gpl.yml", + "html": "qcad-exception-gpl.html", + "text": "qcad-exception-gpl.LICENSE" + }, + { + "license_key": "qhull", + "spdx_license_key": "Qhull", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "qhull.json", + "yml": "qhull.yml", + "html": "qhull.html", + "text": "qhull.LICENSE" + }, + { + "license_key": "qlogic-firmware", + "spdx_license_key": "LicenseRef-scancode-qlogic-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "qlogic-firmware.json", + "yml": "qlogic-firmware.yml", + "html": "qlogic-firmware.html", + "text": "qlogic-firmware.LICENSE" + }, + { + "license_key": "qlogic-microcode", + "spdx_license_key": "LicenseRef-scancode-qlogic-microcode", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "qlogic-microcode.json", + "yml": "qlogic-microcode.yml", + "html": "qlogic-microcode.html", + "text": "qlogic-microcode.LICENSE" + }, + { + "license_key": "qpl-1.0", + "spdx_license_key": "QPL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "qpl-1.0.json", + "yml": "qpl-1.0.yml", + "html": "qpl-1.0.html", + "text": "qpl-1.0.LICENSE" + }, + { + "license_key": "qpopper", + "spdx_license_key": "LicenseRef-scancode-qpopper", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "qpopper.json", + "yml": "qpopper.yml", + "html": "qpopper.html", + "text": "qpopper.LICENSE" + }, + { + "license_key": "qt-commercial-1.1", + "spdx_license_key": "LicenseRef-scancode-qt-commercial-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "qt-commercial-1.1.json", + "yml": "qt-commercial-1.1.yml", + "html": "qt-commercial-1.1.html", + "text": "qt-commercial-1.1.LICENSE" + }, + { + "license_key": "qt-company-exception-2017-lgpl-2.1", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "qt-company-exception-2017-lgpl-2.1.json", + "yml": "qt-company-exception-2017-lgpl-2.1.yml", + "html": "qt-company-exception-2017-lgpl-2.1.html", + "text": "qt-company-exception-2017-lgpl-2.1.LICENSE" + }, + { + "license_key": "qt-company-exception-lgpl-2.1", + "spdx_license_key": "LicenseRef-scancode-qt-company-exception-lgpl-2.1", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "qt-company-exception-lgpl-2.1.json", + "yml": "qt-company-exception-lgpl-2.1.yml", + "html": "qt-company-exception-lgpl-2.1.html", + "text": "qt-company-exception-lgpl-2.1.LICENSE" + }, + { + "license_key": "qt-gpl-exception-1.0", + "spdx_license_key": "Qt-GPL-exception-1.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "qt-gpl-exception-1.0.json", + "yml": "qt-gpl-exception-1.0.yml", + "html": "qt-gpl-exception-1.0.html", + "text": "qt-gpl-exception-1.0.LICENSE" + }, + { + "license_key": "qt-kde-linking-exception", + "spdx_license_key": "LicenseRef-scancode-qt-kde-linking-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "qt-kde-linking-exception.json", + "yml": "qt-kde-linking-exception.yml", + "html": "qt-kde-linking-exception.html", + "text": "qt-kde-linking-exception.LICENSE" + }, + { + "license_key": "qt-lgpl-exception-1.1", + "spdx_license_key": "Qt-LGPL-exception-1.1", + "other_spdx_license_keys": [ + "Nokia-Qt-exception-1.1" + ], + "is_exception": true, + "is_deprecated": false, + "json": "qt-lgpl-exception-1.1.json", + "yml": "qt-lgpl-exception-1.1.yml", + "html": "qt-lgpl-exception-1.1.html", + "text": "qt-lgpl-exception-1.1.LICENSE" + }, + { + "license_key": "qt-qca-exception-2.0", + "spdx_license_key": "LicenseRef-scancode-qt-qca-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "qt-qca-exception-2.0.json", + "yml": "qt-qca-exception-2.0.yml", + "html": "qt-qca-exception-2.0.html", + "text": "qt-qca-exception-2.0.LICENSE" + }, + { + "license_key": "qualcomm-iso", + "spdx_license_key": "LicenseRef-scancode-qualcomm-iso", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "qualcomm-iso.json", + "yml": "qualcomm-iso.yml", + "html": "qualcomm-iso.html", + "text": "qualcomm-iso.LICENSE" + }, + { + "license_key": "qualcomm-turing", + "spdx_license_key": "LicenseRef-scancode-qualcomm-turing", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "qualcomm-turing.json", + "yml": "qualcomm-turing.yml", + "html": "qualcomm-turing.html", + "text": "qualcomm-turing.LICENSE" + }, + { + "license_key": "quicktime", + "spdx_license_key": "LicenseRef-scancode-quicktime", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "quicktime.json", + "yml": "quicktime.yml", + "html": "quicktime.html", + "text": "quicktime.LICENSE" + }, + { + "license_key": "quin-street", + "spdx_license_key": "LicenseRef-scancode-quin-street", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "quin-street.json", + "yml": "quin-street.yml", + "html": "quin-street.html", + "text": "quin-street.LICENSE" + }, + { + "license_key": "quirksmode", + "spdx_license_key": "LicenseRef-scancode-quirksmode", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "quirksmode.json", + "yml": "quirksmode.yml", + "html": "quirksmode.html", + "text": "quirksmode.LICENSE" + }, + { + "license_key": "qwt-1.0", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "qwt-1.0.json", + "yml": "qwt-1.0.yml", + "html": "qwt-1.0.html", + "text": "qwt-1.0.LICENSE" + }, + { + "license_key": "qwt-exception-1.0", + "spdx_license_key": "Qwt-exception-1.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "qwt-exception-1.0.json", + "yml": "qwt-exception-1.0.yml", + "html": "qwt-exception-1.0.html", + "text": "qwt-exception-1.0.LICENSE" + }, + { + "license_key": "rackspace", + "spdx_license_key": "LicenseRef-scancode-rackspace", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rackspace.json", + "yml": "rackspace.yml", + "html": "rackspace.html", + "text": "rackspace.LICENSE" + }, + { + "license_key": "radvd", + "spdx_license_key": "LicenseRef-scancode-radvd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "radvd.json", + "yml": "radvd.yml", + "html": "radvd.html", + "text": "radvd.LICENSE" + }, + { + "license_key": "ralf-corsepius", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "ralf-corsepius.json", + "yml": "ralf-corsepius.yml", + "html": "ralf-corsepius.html", + "text": "ralf-corsepius.LICENSE" + }, + { + "license_key": "ralink-firmware", + "spdx_license_key": "LicenseRef-scancode-ralink-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ralink-firmware.json", + "yml": "ralink-firmware.yml", + "html": "ralink-firmware.html", + "text": "ralink-firmware.LICENSE" + }, + { + "license_key": "rar-winrar-eula", + "spdx_license_key": "LicenseRef-scancode-rar-winrar-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rar-winrar-eula.json", + "yml": "rar-winrar-eula.yml", + "html": "rar-winrar-eula.html", + "text": "rar-winrar-eula.LICENSE" + }, + { + "license_key": "rcsl-2.0", + "spdx_license_key": "LicenseRef-scancode-rcsl-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rcsl-2.0.json", + "yml": "rcsl-2.0.yml", + "html": "rcsl-2.0.html", + "text": "rcsl-2.0.LICENSE" + }, + { + "license_key": "rcsl-3.0", + "spdx_license_key": "LicenseRef-scancode-rcsl-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rcsl-3.0.json", + "yml": "rcsl-3.0.yml", + "html": "rcsl-3.0.html", + "text": "rcsl-3.0.LICENSE" + }, + { + "license_key": "rdisc", + "spdx_license_key": "Rdisc", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rdisc.json", + "yml": "rdisc.yml", + "html": "rdisc.html", + "text": "rdisc.LICENSE" + }, + { + "license_key": "realm-platform-extension-2017", + "spdx_license_key": "LicenseRef-scancode-realm-platform-extension-2017", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "realm-platform-extension-2017.json", + "yml": "realm-platform-extension-2017.yml", + "html": "realm-platform-extension-2017.html", + "text": "realm-platform-extension-2017.LICENSE" + }, + { + "license_key": "red-hat-attribution", + "spdx_license_key": "LicenseRef-scancode-red-hat-attribution", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "red-hat-attribution.json", + "yml": "red-hat-attribution.yml", + "html": "red-hat-attribution.html", + "text": "red-hat-attribution.LICENSE" + }, + { + "license_key": "red-hat-bsd-simplified", + "spdx_license_key": "LicenseRef-scancode-red-hat-bsd-simplified", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "red-hat-bsd-simplified.json", + "yml": "red-hat-bsd-simplified.yml", + "html": "red-hat-bsd-simplified.html", + "text": "red-hat-bsd-simplified.LICENSE" + }, + { + "license_key": "red-hat-logos", + "spdx_license_key": "LicenseRef-scancode-red-hat-logos", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "red-hat-logos.json", + "yml": "red-hat-logos.yml", + "html": "red-hat-logos.html", + "text": "red-hat-logos.LICENSE" + }, + { + "license_key": "red-hat-trademarks", + "spdx_license_key": "LicenseRef-scancode-red-hat-trademarks", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "red-hat-trademarks.json", + "yml": "red-hat-trademarks.yml", + "html": "red-hat-trademarks.html", + "text": "red-hat-trademarks.LICENSE" + }, + { + "license_key": "redis-source-available-1.0", + "spdx_license_key": "LicenseRef-scancode-redis-source-available-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "redis-source-available-1.0.json", + "yml": "redis-source-available-1.0.yml", + "html": "redis-source-available-1.0.html", + "text": "redis-source-available-1.0.LICENSE" + }, + { + "license_key": "regexp", + "spdx_license_key": "Spencer-86", + "other_spdx_license_keys": [ + "LicenseRef-scancode-regexp" + ], + "is_exception": false, + "is_deprecated": false, + "json": "regexp.json", + "yml": "regexp.yml", + "html": "regexp.html", + "text": "regexp.LICENSE" + }, + { + "license_key": "reportbug", + "spdx_license_key": "LicenseRef-scancode-reportbug", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "reportbug.json", + "yml": "reportbug.yml", + "html": "reportbug.html", + "text": "reportbug.LICENSE" + }, + { + "license_key": "repoze", + "spdx_license_key": "BSD-3-Clause-Modification", + "other_spdx_license_keys": [ + "LicenseRef-scancode-repoze" + ], + "is_exception": false, + "is_deprecated": false, + "json": "repoze.json", + "yml": "repoze.yml", + "html": "repoze.html", + "text": "repoze.LICENSE" + }, + { + "license_key": "rh-eula-lgpl", + "spdx_license_key": "LicenseRef-scancode-rh-eula-lgpl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rh-eula-lgpl.json", + "yml": "rh-eula-lgpl.yml", + "html": "rh-eula-lgpl.html", + "text": "rh-eula-lgpl.LICENSE" + }, + { + "license_key": "rh-eula", + "spdx_license_key": "LicenseRef-scancode-rh-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rh-eula.json", + "yml": "rh-eula.yml", + "html": "rh-eula.html", + "text": "rh-eula.LICENSE" + }, + { + "license_key": "ricoh-1.0", + "spdx_license_key": "RSCPL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ricoh-1.0.json", + "yml": "ricoh-1.0.yml", + "html": "ricoh-1.0.html", + "text": "ricoh-1.0.LICENSE" + }, + { + "license_key": "riverbank-sip", + "spdx_license_key": "LicenseRef-scancode-riverbank-sip", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "riverbank-sip.json", + "yml": "riverbank-sip.yml", + "html": "riverbank-sip.html", + "text": "riverbank-sip.LICENSE" + }, + { + "license_key": "robert-hubley", + "spdx_license_key": "LicenseRef-scancode-robert-hubley", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "robert-hubley.json", + "yml": "robert-hubley.yml", + "html": "robert-hubley.html", + "text": "robert-hubley.LICENSE" + }, + { + "license_key": "rogue-wave", + "spdx_license_key": "LicenseRef-scancode-rogue-wave", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rogue-wave.json", + "yml": "rogue-wave.yml", + "html": "rogue-wave.html", + "text": "rogue-wave.LICENSE" + }, + { + "license_key": "rpl-1.1", + "spdx_license_key": "RPL-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rpl-1.1.json", + "yml": "rpl-1.1.yml", + "html": "rpl-1.1.html", + "text": "rpl-1.1.LICENSE" + }, + { + "license_key": "rpl-1.5", + "spdx_license_key": "RPL-1.5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rpl-1.5.json", + "yml": "rpl-1.5.yml", + "html": "rpl-1.5.html", + "text": "rpl-1.5.LICENSE" + }, + { + "license_key": "rpsl-1.0", + "spdx_license_key": "RPSL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rpsl-1.0.json", + "yml": "rpsl-1.0.yml", + "html": "rpsl-1.0.html", + "text": "rpsl-1.0.LICENSE" + }, + { + "license_key": "rrdtool-floss-exception-2.0", + "spdx_license_key": "LicenseRef-scancode-rrdtool-floss-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "rrdtool-floss-exception-2.0.json", + "yml": "rrdtool-floss-exception-2.0.yml", + "html": "rrdtool-floss-exception-2.0.html", + "text": "rrdtool-floss-exception-2.0.LICENSE" + }, + { + "license_key": "rsa-1990", + "spdx_license_key": "LicenseRef-scancode-rsa-1990", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rsa-1990.json", + "yml": "rsa-1990.yml", + "html": "rsa-1990.html", + "text": "rsa-1990.LICENSE" + }, + { + "license_key": "rsa-cryptoki", + "spdx_license_key": "LicenseRef-scancode-rsa-cryptoki", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rsa-cryptoki.json", + "yml": "rsa-cryptoki.yml", + "html": "rsa-cryptoki.html", + "text": "rsa-cryptoki.LICENSE" + }, + { + "license_key": "rsa-demo", + "spdx_license_key": "LicenseRef-scancode-rsa-demo", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rsa-demo.json", + "yml": "rsa-demo.yml", + "html": "rsa-demo.html", + "text": "rsa-demo.LICENSE" + }, + { + "license_key": "rsa-md2", + "spdx_license_key": "LicenseRef-scancode-rsa-md2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rsa-md2.json", + "yml": "rsa-md2.yml", + "html": "rsa-md2.html", + "text": "rsa-md2.LICENSE" + }, + { + "license_key": "rsa-md4", + "spdx_license_key": "LicenseRef-scancode-rsa-md4", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rsa-md4.json", + "yml": "rsa-md4.yml", + "html": "rsa-md4.html", + "text": "rsa-md4.LICENSE" + }, + { + "license_key": "rsa-md5", + "spdx_license_key": "RSA-MD", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rsa-md5.json", + "yml": "rsa-md5.yml", + "html": "rsa-md5.html", + "text": "rsa-md5.LICENSE" + }, + { + "license_key": "rsa-proprietary", + "spdx_license_key": "LicenseRef-scancode-rsa-proprietary", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rsa-proprietary.json", + "yml": "rsa-proprietary.yml", + "html": "rsa-proprietary.html", + "text": "rsa-proprietary.LICENSE" + }, + { + "license_key": "rtools-util", + "spdx_license_key": "LicenseRef-scancode-rtools-util", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rtools-util.json", + "yml": "rtools-util.yml", + "html": "rtools-util.html", + "text": "rtools-util.LICENSE" + }, + { + "license_key": "ruby", + "spdx_license_key": "Ruby", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ruby.json", + "yml": "ruby.yml", + "html": "ruby.html", + "text": "ruby.LICENSE" + }, + { + "license_key": "rubyencoder-commercial", + "spdx_license_key": "LicenseRef-scancode-rubyencoder-commercial", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rubyencoder-commercial.json", + "yml": "rubyencoder-commercial.yml", + "html": "rubyencoder-commercial.html", + "text": "rubyencoder-commercial.LICENSE" + }, + { + "license_key": "rubyencoder-loader", + "spdx_license_key": "LicenseRef-scancode-rubyencoder-loader", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rubyencoder-loader.json", + "yml": "rubyencoder-loader.yml", + "html": "rubyencoder-loader.html", + "text": "rubyencoder-loader.LICENSE" + }, + { + "license_key": "rute", + "spdx_license_key": "LicenseRef-scancode-rute", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rute.json", + "yml": "rute.yml", + "html": "rute.html", + "text": "rute.LICENSE" + }, + { + "license_key": "rxtx-exception-lgpl-2.1", + "spdx_license_key": "LicenseRef-scancode-rxtx-exception-lgpl-2.1", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "rxtx-exception-lgpl-2.1.json", + "yml": "rxtx-exception-lgpl-2.1.yml", + "html": "rxtx-exception-lgpl-2.1.html", + "text": "rxtx-exception-lgpl-2.1.LICENSE" + }, + { + "license_key": "ryszard-szopa", + "spdx_license_key": "LicenseRef-scancode-ryszard-szopa", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ryszard-szopa.json", + "yml": "ryszard-szopa.yml", + "html": "ryszard-szopa.html", + "text": "ryszard-szopa.LICENSE" + }, + { + "license_key": "saas-mit", + "spdx_license_key": "LicenseRef-scancode-saas-mit", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "saas-mit.json", + "yml": "saas-mit.yml", + "html": "saas-mit.html", + "text": "saas-mit.LICENSE" + }, + { + "license_key": "saf", + "spdx_license_key": "LicenseRef-scancode-saf", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "saf.json", + "yml": "saf.yml", + "html": "saf.html", + "text": "saf.LICENSE" + }, + { + "license_key": "safecopy-eula", + "spdx_license_key": "LicenseRef-scancode-safecopy-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "safecopy-eula.json", + "yml": "safecopy-eula.yml", + "html": "safecopy-eula.html", + "text": "safecopy-eula.LICENSE" + }, + { + "license_key": "san-francisco-font", + "spdx_license_key": "LicenseRef-scancode-san-francisco-font", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "san-francisco-font.json", + "yml": "san-francisco-font.yml", + "html": "san-francisco-font.html", + "text": "san-francisco-font.LICENSE" + }, + { + "license_key": "sandeep", + "spdx_license_key": "LicenseRef-scancode-sandeep", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sandeep.json", + "yml": "sandeep.yml", + "html": "sandeep.html", + "text": "sandeep.LICENSE" + }, + { + "license_key": "sane-exception-2.0-plus", + "spdx_license_key": "LicenseRef-scancode-sane-exception-2.0-plus", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "sane-exception-2.0-plus.json", + "yml": "sane-exception-2.0-plus.yml", + "html": "sane-exception-2.0-plus.html", + "text": "sane-exception-2.0-plus.LICENSE" + }, + { + "license_key": "sash", + "spdx_license_key": "LicenseRef-scancode-sash", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sash.json", + "yml": "sash.yml", + "html": "sash.html", + "text": "sash.LICENSE" + }, + { + "license_key": "sata", + "spdx_license_key": "LicenseRef-scancode-sata", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sata.json", + "yml": "sata.yml", + "html": "sata.html", + "text": "sata.LICENSE" + }, + { + "license_key": "sax-pd", + "spdx_license_key": "SAX-PD", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sax-pd.json", + "yml": "sax-pd.yml", + "html": "sax-pd.html", + "text": "sax-pd.LICENSE" + }, + { + "license_key": "saxpath", + "spdx_license_key": "Saxpath", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "saxpath.json", + "yml": "saxpath.yml", + "html": "saxpath.html", + "text": "saxpath.LICENSE" + }, + { + "license_key": "sbia-b", + "spdx_license_key": "LicenseRef-scancode-sbia-b", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sbia-b.json", + "yml": "sbia-b.yml", + "html": "sbia-b.html", + "text": "sbia-b.LICENSE" + }, + { + "license_key": "scancode-acknowledgment", + "spdx_license_key": "LicenseRef-scancode-scancode-acknowledgment", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "scancode-acknowledgment.json", + "yml": "scancode-acknowledgment.yml", + "html": "scancode-acknowledgment.html", + "text": "scancode-acknowledgment.LICENSE" + }, + { + "license_key": "scanlogd-license", + "spdx_license_key": "LicenseRef-scancode-scanlogd-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "scanlogd-license.json", + "yml": "scanlogd-license.yml", + "html": "scanlogd-license.html", + "text": "scanlogd-license.LICENSE" + }, + { + "license_key": "scansoft-1.2", + "spdx_license_key": "LicenseRef-scancode-scansoft-1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "scansoft-1.2.json", + "yml": "scansoft-1.2.yml", + "html": "scansoft-1.2.html", + "text": "scansoft-1.2.LICENSE" + }, + { + "license_key": "scea-1.0", + "spdx_license_key": "SCEA", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "scea-1.0.json", + "yml": "scea-1.0.yml", + "html": "scea-1.0.html", + "text": "scea-1.0.LICENSE" + }, + { + "license_key": "scilab-en", + "spdx_license_key": "LicenseRef-scancode-scilba-en", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "scilab-en.json", + "yml": "scilab-en.yml", + "html": "scilab-en.html", + "text": "scilab-en.LICENSE" + }, + { + "license_key": "scola-en", + "spdx_license_key": "LicenseRef-scancode-scola-en", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "scola-en.json", + "yml": "scola-en.yml", + "html": "scola-en.html", + "text": "scola-en.LICENSE" + }, + { + "license_key": "scribbles", + "spdx_license_key": "LicenseRef-scancode-scribbles", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "scribbles.json", + "yml": "scribbles.yml", + "html": "scribbles.html", + "text": "scribbles.LICENSE" + }, + { + "license_key": "script-asylum", + "spdx_license_key": "LicenseRef-scancode-script-asylum", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "script-asylum.json", + "yml": "script-asylum.yml", + "html": "script-asylum.html", + "text": "script-asylum.LICENSE" + }, + { + "license_key": "script-nikhilk", + "spdx_license_key": "LicenseRef-scancode-script-nikhilk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "script-nikhilk.json", + "yml": "script-nikhilk.yml", + "html": "script-nikhilk.html", + "text": "script-nikhilk.LICENSE" + }, + { + "license_key": "scrub", + "spdx_license_key": "LicenseRef-scancode-scrub", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "scrub.json", + "yml": "scrub.yml", + "html": "scrub.html", + "text": "scrub.LICENSE" + }, + { + "license_key": "scsl-3.0", + "spdx_license_key": "LicenseRef-scancode-scsl-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "scsl-3.0.json", + "yml": "scsl-3.0.yml", + "html": "scsl-3.0.html", + "text": "scsl-3.0.LICENSE" + }, + { + "license_key": "secret-labs-2011", + "spdx_license_key": "LicenseRef-scancode-secret-labs-2011", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "secret-labs-2011.json", + "yml": "secret-labs-2011.yml", + "html": "secret-labs-2011.html", + "text": "secret-labs-2011.LICENSE" + }, + { + "license_key": "see-license", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "see-license.json", + "yml": "see-license.yml", + "html": "see-license.html", + "text": "see-license.LICENSE" + }, + { + "license_key": "selinux-nsa-declaration-1.0", + "spdx_license_key": "libselinux-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "selinux-nsa-declaration-1.0.json", + "yml": "selinux-nsa-declaration-1.0.yml", + "html": "selinux-nsa-declaration-1.0.html", + "text": "selinux-nsa-declaration-1.0.LICENSE" + }, + { + "license_key": "sencha-app-floss-exception", + "spdx_license_key": "LicenseRef-scancode-sencha-app-floss-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "sencha-app-floss-exception.json", + "yml": "sencha-app-floss-exception.yml", + "html": "sencha-app-floss-exception.html", + "text": "sencha-app-floss-exception.LICENSE" + }, + { + "license_key": "sencha-commercial-3.17", + "spdx_license_key": "LicenseRef-scancode-sencha-commercial-3.17", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sencha-commercial-3.17.json", + "yml": "sencha-commercial-3.17.yml", + "html": "sencha-commercial-3.17.html", + "text": "sencha-commercial-3.17.LICENSE" + }, + { + "license_key": "sencha-commercial-3.9", + "spdx_license_key": "LicenseRef-scancode-sencha-commercial-3.9", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sencha-commercial-3.9.json", + "yml": "sencha-commercial-3.9.yml", + "html": "sencha-commercial-3.9.html", + "text": "sencha-commercial-3.9.LICENSE" + }, + { + "license_key": "sencha-commercial", + "spdx_license_key": "LicenseRef-scancode-sencha-commercial", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sencha-commercial.json", + "yml": "sencha-commercial.yml", + "html": "sencha-commercial.html", + "text": "sencha-commercial.LICENSE" + }, + { + "license_key": "sencha-dev-floss-exception", + "spdx_license_key": "LicenseRef-scancode-sencha-dev-floss-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "sencha-dev-floss-exception.json", + "yml": "sencha-dev-floss-exception.yml", + "html": "sencha-dev-floss-exception.html", + "text": "sencha-dev-floss-exception.LICENSE" + }, + { + "license_key": "sendmail-8.23", + "spdx_license_key": "Sendmail-8.23", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sendmail-8.23.json", + "yml": "sendmail-8.23.yml", + "html": "sendmail-8.23.html", + "text": "sendmail-8.23.LICENSE" + }, + { + "license_key": "sendmail", + "spdx_license_key": "Sendmail", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sendmail.json", + "yml": "sendmail.yml", + "html": "sendmail.html", + "text": "sendmail.LICENSE" + }, + { + "license_key": "service-comp-arch", + "spdx_license_key": "LicenseRef-scancode-service-comp-arch", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "service-comp-arch.json", + "yml": "service-comp-arch.yml", + "html": "service-comp-arch.html", + "text": "service-comp-arch.LICENSE" + }, + { + "license_key": "sfl-license", + "spdx_license_key": "iMatix", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sfl-license.json", + "yml": "sfl-license.yml", + "html": "sfl-license.html", + "text": "sfl-license.LICENSE" + }, + { + "license_key": "sgi-cid-1.0", + "spdx_license_key": "LicenseRef-scancode-sgi-cid-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sgi-cid-1.0.json", + "yml": "sgi-cid-1.0.yml", + "html": "sgi-cid-1.0.html", + "text": "sgi-cid-1.0.LICENSE" + }, + { + "license_key": "sgi-freeb-1.1", + "spdx_license_key": "SGI-B-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sgi-freeb-1.1.json", + "yml": "sgi-freeb-1.1.yml", + "html": "sgi-freeb-1.1.html", + "text": "sgi-freeb-1.1.LICENSE" + }, + { + "license_key": "sgi-freeb-2.0", + "spdx_license_key": "SGI-B-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sgi-freeb-2.0.json", + "yml": "sgi-freeb-2.0.yml", + "html": "sgi-freeb-2.0.html", + "text": "sgi-freeb-2.0.LICENSE" + }, + { + "license_key": "sgi-fslb-1.0", + "spdx_license_key": "SGI-B-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sgi-fslb-1.0.json", + "yml": "sgi-fslb-1.0.yml", + "html": "sgi-fslb-1.0.html", + "text": "sgi-fslb-1.0.LICENSE" + }, + { + "license_key": "sgi-glx-1.0", + "spdx_license_key": "LicenseRef-scancode-sgi-glx-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sgi-glx-1.0.json", + "yml": "sgi-glx-1.0.yml", + "html": "sgi-glx-1.0.html", + "text": "sgi-glx-1.0.LICENSE" + }, + { + "license_key": "sglib", + "spdx_license_key": "LicenseRef-scancode-sglib", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sglib.json", + "yml": "sglib.yml", + "html": "sglib.html", + "text": "sglib.LICENSE" + }, + { + "license_key": "shavlik-eula", + "spdx_license_key": "LicenseRef-scancode-shavlik-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "shavlik-eula.json", + "yml": "shavlik-eula.yml", + "html": "shavlik-eula.html", + "text": "shavlik-eula.LICENSE" + }, + { + "license_key": "shital-shah", + "spdx_license_key": "LicenseRef-scancode-shital-shah", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "shital-shah.json", + "yml": "shital-shah.yml", + "html": "shital-shah.html", + "text": "shital-shah.LICENSE" + }, + { + "license_key": "shl-0.5", + "spdx_license_key": "SHL-0.5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "shl-0.5.json", + "yml": "shl-0.5.yml", + "html": "shl-0.5.html", + "text": "shl-0.5.LICENSE" + }, + { + "license_key": "shl-0.51", + "spdx_license_key": "SHL-0.51", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "shl-0.51.json", + "yml": "shl-0.51.yml", + "html": "shl-0.51.html", + "text": "shl-0.51.LICENSE" + }, + { + "license_key": "shl-2.0", + "spdx_license_key": "SHL-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "shl-2.0.json", + "yml": "shl-2.0.yml", + "html": "shl-2.0.html", + "text": "shl-2.0.LICENSE" + }, + { + "license_key": "shl-2.1", + "spdx_license_key": "SHL-2.1", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "shl-2.1.json", + "yml": "shl-2.1.yml", + "html": "shl-2.1.html", + "text": "shl-2.1.LICENSE" + }, + { + "license_key": "simpl-1.1", + "spdx_license_key": "LicenseRef-scancode-simpl-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "simpl-1.1.json", + "yml": "simpl-1.1.yml", + "html": "simpl-1.1.html", + "text": "simpl-1.1.LICENSE" + }, + { + "license_key": "simpl-2.0", + "spdx_license_key": "SimPL-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "simpl-2.0.json", + "yml": "simpl-2.0.yml", + "html": "simpl-2.0.html", + "text": "simpl-2.0.LICENSE" + }, + { + "license_key": "sleepycat", + "spdx_license_key": "Sleepycat", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sleepycat.json", + "yml": "sleepycat.yml", + "html": "sleepycat.html", + "text": "sleepycat.LICENSE" + }, + { + "license_key": "slf4j-2005", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "slf4j-2005.json", + "yml": "slf4j-2005.yml", + "html": "slf4j-2005.html", + "text": "slf4j-2005.LICENSE" + }, + { + "license_key": "slf4j-2008", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "slf4j-2008.json", + "yml": "slf4j-2008.yml", + "html": "slf4j-2008.html", + "text": "slf4j-2008.LICENSE" + }, + { + "license_key": "slysoft-eula", + "spdx_license_key": "LicenseRef-scancode-slysoft-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "slysoft-eula.json", + "yml": "slysoft-eula.yml", + "html": "slysoft-eula.html", + "text": "slysoft-eula.LICENSE" + }, + { + "license_key": "smail-gpl", + "spdx_license_key": "LicenseRef-scancode-smail-gpl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "smail-gpl.json", + "yml": "smail-gpl.yml", + "html": "smail-gpl.html", + "text": "smail-gpl.LICENSE" + }, + { + "license_key": "smartlabs-freeware", + "spdx_license_key": "LicenseRef-scancode-smartlabs-freeware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "smartlabs-freeware.json", + "yml": "smartlabs-freeware.yml", + "html": "smartlabs-freeware.html", + "text": "smartlabs-freeware.LICENSE" + }, + { + "license_key": "smppl", + "spdx_license_key": "SMPPL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "smppl.json", + "yml": "smppl.yml", + "html": "smppl.html", + "text": "smppl.LICENSE" + }, + { + "license_key": "snia", + "spdx_license_key": "SNIA", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "snia.json", + "yml": "snia.yml", + "html": "snia.html", + "text": "snia.LICENSE" + }, + { + "license_key": "snmp4j-smi", + "spdx_license_key": "LicenseRef-scancode-snmp4j-smi", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "snmp4j-smi.json", + "yml": "snmp4j-smi.yml", + "html": "snmp4j-smi.html", + "text": "snmp4j-smi.LICENSE" + }, + { + "license_key": "snprintf", + "spdx_license_key": "LicenseRef-scancode-snprintf", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "snprintf.json", + "yml": "snprintf.yml", + "html": "snprintf.html", + "text": "snprintf.LICENSE" + }, + { + "license_key": "softerra-ldap-browser-eula", + "spdx_license_key": "LicenseRef-scancode-softerra-ldap-browser-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "softerra-ldap-browser-eula.json", + "yml": "softerra-ldap-browser-eula.yml", + "html": "softerra-ldap-browser-eula.html", + "text": "softerra-ldap-browser-eula.LICENSE" + }, + { + "license_key": "softfloat-2.0", + "spdx_license_key": "LicenseRef-scancode-softfloat-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "softfloat-2.0.json", + "yml": "softfloat-2.0.yml", + "html": "softfloat-2.0.html", + "text": "softfloat-2.0.LICENSE" + }, + { + "license_key": "softfloat", + "spdx_license_key": "LicenseRef-scancode-softfloat", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "softfloat.json", + "yml": "softfloat.yml", + "html": "softfloat.html", + "text": "softfloat.LICENSE" + }, + { + "license_key": "softsurfer", + "spdx_license_key": "LicenseRef-scancode-softsurfer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "softsurfer.json", + "yml": "softsurfer.yml", + "html": "softsurfer.html", + "text": "softsurfer.LICENSE" + }, + { + "license_key": "spark-jive", + "spdx_license_key": "LicenseRef-scancode-spark-jive", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "spark-jive.json", + "yml": "spark-jive.yml", + "html": "spark-jive.html", + "text": "spark-jive.LICENSE" + }, + { + "license_key": "sparky", + "spdx_license_key": "LicenseRef-scancode-sparky", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sparky.json", + "yml": "sparky.yml", + "html": "sparky.html", + "text": "sparky.LICENSE" + }, + { + "license_key": "speechworks-1.1", + "spdx_license_key": "LicenseRef-scancode-speechworks-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "speechworks-1.1.json", + "yml": "speechworks-1.1.yml", + "html": "speechworks-1.1.html", + "text": "speechworks-1.1.LICENSE" + }, + { + "license_key": "spell-checker-exception-lgpl-2.1-plus", + "spdx_license_key": "LicenseRef-scancode-spell-checker-exception-lgpl-2.1-plus", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "spell-checker-exception-lgpl-2.1-plus.json", + "yml": "spell-checker-exception-lgpl-2.1-plus.yml", + "html": "spell-checker-exception-lgpl-2.1-plus.html", + "text": "spell-checker-exception-lgpl-2.1-plus.LICENSE" + }, + { + "license_key": "spl-1.0", + "spdx_license_key": "SPL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "spl-1.0.json", + "yml": "spl-1.0.yml", + "html": "spl-1.0.html", + "text": "spl-1.0.LICENSE" + }, + { + "license_key": "splunk-3pp-eula", + "spdx_license_key": "LicenseRef-scancode-splunk-3pp-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "splunk-3pp-eula.json", + "yml": "splunk-3pp-eula.yml", + "html": "splunk-3pp-eula.html", + "text": "splunk-3pp-eula.LICENSE" + }, + { + "license_key": "splunk-mint-tos-2018", + "spdx_license_key": "LicenseRef-scancode-splunk-mint-tos-2018", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "splunk-mint-tos-2018.json", + "yml": "splunk-mint-tos-2018.yml", + "html": "splunk-mint-tos-2018.html", + "text": "splunk-mint-tos-2018.LICENSE" + }, + { + "license_key": "splunk-sla", + "spdx_license_key": "LicenseRef-scancode-splunk-sla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "splunk-sla.json", + "yml": "splunk-sla.yml", + "html": "splunk-sla.html", + "text": "splunk-sla.LICENSE" + }, + { + "license_key": "squeak", + "spdx_license_key": "LicenseRef-scancode-squeak", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "squeak.json", + "yml": "squeak.yml", + "html": "squeak.html", + "text": "squeak.LICENSE" + }, + { + "license_key": "srgb", + "spdx_license_key": "LicenseRef-scancode-srgb", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "srgb.json", + "yml": "srgb.yml", + "html": "srgb.html", + "text": "srgb.LICENSE" + }, + { + "license_key": "ssleay-windows", + "spdx_license_key": "LicenseRef-scancode-ssleay-windows", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ssleay-windows.json", + "yml": "ssleay-windows.yml", + "html": "ssleay-windows.html", + "text": "ssleay-windows.LICENSE" + }, + { + "license_key": "ssleay", + "spdx_license_key": "LicenseRef-scancode-ssleay", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ssleay.json", + "yml": "ssleay.yml", + "html": "ssleay.html", + "text": "ssleay.LICENSE" + }, + { + "license_key": "st-bsd-restricted", + "spdx_license_key": "LicenseRef-scancode-st-bsd-restricted", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "st-bsd-restricted.json", + "yml": "st-bsd-restricted.yml", + "html": "st-bsd-restricted.html", + "text": "st-bsd-restricted.LICENSE" + }, + { + "license_key": "st-mcd-2.0", + "spdx_license_key": "LicenseRef-scancode-st-mcd-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "st-mcd-2.0.json", + "yml": "st-mcd-2.0.yml", + "html": "st-mcd-2.0.html", + "text": "st-mcd-2.0.LICENSE" + }, + { + "license_key": "standard-ml-nj", + "spdx_license_key": "SMLNJ", + "other_spdx_license_keys": [ + "StandardML-NJ" + ], + "is_exception": false, + "is_deprecated": false, + "json": "standard-ml-nj.json", + "yml": "standard-ml-nj.yml", + "html": "standard-ml-nj.html", + "text": "standard-ml-nj.LICENSE" + }, + { + "license_key": "stanford-mrouted", + "spdx_license_key": "LicenseRef-scancode-stanford-mrouted", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "stanford-mrouted.json", + "yml": "stanford-mrouted.yml", + "html": "stanford-mrouted.html", + "text": "stanford-mrouted.LICENSE" + }, + { + "license_key": "stanford-pvrg", + "spdx_license_key": "LicenseRef-scancode-stanford-pvrg", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "stanford-pvrg.json", + "yml": "stanford-pvrg.yml", + "html": "stanford-pvrg.html", + "text": "stanford-pvrg.LICENSE" + }, + { + "license_key": "statewizard", + "spdx_license_key": "LicenseRef-scancode-statewizard", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "statewizard.json", + "yml": "statewizard.yml", + "html": "statewizard.html", + "text": "statewizard.LICENSE" + }, + { + "license_key": "stax", + "spdx_license_key": "LicenseRef-scancode-stax", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "stax.json", + "yml": "stax.yml", + "html": "stax.html", + "text": "stax.LICENSE" + }, + { + "license_key": "stlport-2000", + "spdx_license_key": "LicenseRef-scancode-stlport-2000", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "stlport-2000.json", + "yml": "stlport-2000.yml", + "html": "stlport-2000.html", + "text": "stlport-2000.LICENSE" + }, + { + "license_key": "stlport-4.5", + "spdx_license_key": "LicenseRef-scancode-stlport-4.5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "stlport-4.5.json", + "yml": "stlport-4.5.yml", + "html": "stlport-4.5.html", + "text": "stlport-4.5.LICENSE" + }, + { + "license_key": "stmicroelectronics-centrallabs", + "spdx_license_key": "LicenseRef-scancode-stmicroelectronics-centrallabs", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "stmicroelectronics-centrallabs.json", + "yml": "stmicroelectronics-centrallabs.yml", + "html": "stmicroelectronics-centrallabs.html", + "text": "stmicroelectronics-centrallabs.LICENSE" + }, + { + "license_key": "stream-benchmark", + "spdx_license_key": "LicenseRef-scancode-stream-benchmark", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "stream-benchmark.json", + "yml": "stream-benchmark.yml", + "html": "stream-benchmark.html", + "text": "stream-benchmark.LICENSE" + }, + { + "license_key": "strongswan-exception", + "spdx_license_key": "LicenseRef-scancode-strongswan-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "strongswan-exception.json", + "yml": "strongswan-exception.yml", + "html": "strongswan-exception.html", + "text": "strongswan-exception.LICENSE" + }, + { + "license_key": "stu-nicholls", + "spdx_license_key": "LicenseRef-scancode-stu-nicholls", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "stu-nicholls.json", + "yml": "stu-nicholls.yml", + "html": "stu-nicholls.html", + "text": "stu-nicholls.LICENSE" + }, + { + "license_key": "subcommander-exception-2.0-plus", + "spdx_license_key": "LicenseRef-scancode-subcommander-exception-2.0-plus", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "subcommander-exception-2.0-plus.json", + "yml": "subcommander-exception-2.0-plus.yml", + "html": "subcommander-exception-2.0-plus.html", + "text": "subcommander-exception-2.0-plus.LICENSE" + }, + { + "license_key": "sugarcrm-1.1.3", + "spdx_license_key": "SugarCRM-1.1.3", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sugarcrm-1.1.3.json", + "yml": "sugarcrm-1.1.3.yml", + "html": "sugarcrm-1.1.3.html", + "text": "sugarcrm-1.1.3.LICENSE" + }, + { + "license_key": "sun-bcl-11-06", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-11-06", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-bcl-11-06.json", + "yml": "sun-bcl-11-06.yml", + "html": "sun-bcl-11-06.html", + "text": "sun-bcl-11-06.LICENSE" + }, + { + "license_key": "sun-bcl-11-07", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-11-07", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-bcl-11-07.json", + "yml": "sun-bcl-11-07.yml", + "html": "sun-bcl-11-07.html", + "text": "sun-bcl-11-07.LICENSE" + }, + { + "license_key": "sun-bcl-11-08", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-11-08", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-bcl-11-08.json", + "yml": "sun-bcl-11-08.yml", + "html": "sun-bcl-11-08.html", + "text": "sun-bcl-11-08.LICENSE" + }, + { + "license_key": "sun-bcl-j2re-1.2.x", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-j2re-1.2.x", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-bcl-j2re-1.2.x.json", + "yml": "sun-bcl-j2re-1.2.x.yml", + "html": "sun-bcl-j2re-1.2.x.html", + "text": "sun-bcl-j2re-1.2.x.LICENSE" + }, + { + "license_key": "sun-bcl-j2re-1.4.2", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-j2re-1.4.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-bcl-j2re-1.4.2.json", + "yml": "sun-bcl-j2re-1.4.2.yml", + "html": "sun-bcl-j2re-1.4.2.html", + "text": "sun-bcl-j2re-1.4.2.LICENSE" + }, + { + "license_key": "sun-bcl-j2re-1.4.x", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-j2re-1.4.x", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-bcl-j2re-1.4.x.json", + "yml": "sun-bcl-j2re-1.4.x.yml", + "html": "sun-bcl-j2re-1.4.x.html", + "text": "sun-bcl-j2re-1.4.x.LICENSE" + }, + { + "license_key": "sun-bcl-j2re-5.0", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-j2re-5.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-bcl-j2re-5.0.json", + "yml": "sun-bcl-j2re-5.0.yml", + "html": "sun-bcl-j2re-5.0.html", + "text": "sun-bcl-j2re-5.0.LICENSE" + }, + { + "license_key": "sun-bcl-java-servlet-imp-2.1.1", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-java-servlet-imp-2.1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-bcl-java-servlet-imp-2.1.1.json", + "yml": "sun-bcl-java-servlet-imp-2.1.1.yml", + "html": "sun-bcl-java-servlet-imp-2.1.1.html", + "text": "sun-bcl-java-servlet-imp-2.1.1.LICENSE" + }, + { + "license_key": "sun-bcl-javahelp", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-javahelp", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-bcl-javahelp.json", + "yml": "sun-bcl-javahelp.yml", + "html": "sun-bcl-javahelp.html", + "text": "sun-bcl-javahelp.LICENSE" + }, + { + "license_key": "sun-bcl-jimi-sdk", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-jimi-sdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-bcl-jimi-sdk.json", + "yml": "sun-bcl-jimi-sdk.yml", + "html": "sun-bcl-jimi-sdk.html", + "text": "sun-bcl-jimi-sdk.LICENSE" + }, + { + "license_key": "sun-bcl-jre6", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-jre6", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-bcl-jre6.json", + "yml": "sun-bcl-jre6.yml", + "html": "sun-bcl-jre6.html", + "text": "sun-bcl-jre6.LICENSE" + }, + { + "license_key": "sun-bcl-jsmq", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-jsmq", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-bcl-jsmq.json", + "yml": "sun-bcl-jsmq.yml", + "html": "sun-bcl-jsmq.html", + "text": "sun-bcl-jsmq.LICENSE" + }, + { + "license_key": "sun-bcl-opendmk", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-opendmk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-bcl-opendmk.json", + "yml": "sun-bcl-opendmk.yml", + "html": "sun-bcl-opendmk.html", + "text": "sun-bcl-opendmk.LICENSE" + }, + { + "license_key": "sun-bcl-openjdk", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-openjdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-bcl-openjdk.json", + "yml": "sun-bcl-openjdk.yml", + "html": "sun-bcl-openjdk.html", + "text": "sun-bcl-openjdk.LICENSE" + }, + { + "license_key": "sun-bcl-sdk-1.3", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-sdk-1.3", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-bcl-sdk-1.3.json", + "yml": "sun-bcl-sdk-1.3.yml", + "html": "sun-bcl-sdk-1.3.html", + "text": "sun-bcl-sdk-1.3.LICENSE" + }, + { + "license_key": "sun-bcl-sdk-1.4.2", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-sdk-1.4.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-bcl-sdk-1.4.2.json", + "yml": "sun-bcl-sdk-1.4.2.yml", + "html": "sun-bcl-sdk-1.4.2.html", + "text": "sun-bcl-sdk-1.4.2.LICENSE" + }, + { + "license_key": "sun-bcl-sdk-5.0", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-sdk-5.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-bcl-sdk-5.0.json", + "yml": "sun-bcl-sdk-5.0.yml", + "html": "sun-bcl-sdk-5.0.html", + "text": "sun-bcl-sdk-5.0.LICENSE" + }, + { + "license_key": "sun-bcl-sdk-6.0", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-sdk-6.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-bcl-sdk-6.0.json", + "yml": "sun-bcl-sdk-6.0.yml", + "html": "sun-bcl-sdk-6.0.html", + "text": "sun-bcl-sdk-6.0.LICENSE" + }, + { + "license_key": "sun-bcl-web-start", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-web-start", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-bcl-web-start.json", + "yml": "sun-bcl-web-start.yml", + "html": "sun-bcl-web-start.html", + "text": "sun-bcl-web-start.LICENSE" + }, + { + "license_key": "sun-bsd-extra", + "spdx_license_key": "LicenseRef-scancode-sun-bsd-extra", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-bsd-extra.json", + "yml": "sun-bsd-extra.yml", + "html": "sun-bsd-extra.html", + "text": "sun-bsd-extra.LICENSE" + }, + { + "license_key": "sun-bsd-no-nuclear", + "spdx_license_key": "BSD-3-Clause-No-Nuclear-License", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-bsd-no-nuclear.json", + "yml": "sun-bsd-no-nuclear.yml", + "html": "sun-bsd-no-nuclear.html", + "text": "sun-bsd-no-nuclear.LICENSE" + }, + { + "license_key": "sun-communications-api", + "spdx_license_key": "LicenseRef-scancode-sun-communications-api", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-communications-api.json", + "yml": "sun-communications-api.yml", + "html": "sun-communications-api.html", + "text": "sun-communications-api.LICENSE" + }, + { + "license_key": "sun-ejb-spec-2.1", + "spdx_license_key": "LicenseRef-scancode-sun-ejb-spec-2.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-ejb-spec-2.1.json", + "yml": "sun-ejb-spec-2.1.yml", + "html": "sun-ejb-spec-2.1.html", + "text": "sun-ejb-spec-2.1.LICENSE" + }, + { + "license_key": "sun-ejb-spec-3.0", + "spdx_license_key": "LicenseRef-scancode-sun-ejb-spec-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-ejb-spec-3.0.json", + "yml": "sun-ejb-spec-3.0.yml", + "html": "sun-ejb-spec-3.0.html", + "text": "sun-ejb-spec-3.0.LICENSE" + }, + { + "license_key": "sun-entitlement-03-15", + "spdx_license_key": "LicenseRef-scancode-sun-entitlement-03-15", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-entitlement-03-15.json", + "yml": "sun-entitlement-03-15.yml", + "html": "sun-entitlement-03-15.html", + "text": "sun-entitlement-03-15.LICENSE" + }, + { + "license_key": "sun-entitlement-jaf", + "spdx_license_key": "LicenseRef-scancode-sun-entitlement-jaf", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-entitlement-jaf.json", + "yml": "sun-entitlement-jaf.yml", + "html": "sun-entitlement-jaf.html", + "text": "sun-entitlement-jaf.LICENSE" + }, + { + "license_key": "sun-glassfish", + "spdx_license_key": "LicenseRef-scancode-sun-glassfish", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-glassfish.json", + "yml": "sun-glassfish.yml", + "html": "sun-glassfish.html", + "text": "sun-glassfish.LICENSE" + }, + { + "license_key": "sun-iiop", + "spdx_license_key": "LicenseRef-scancode-sun-iiop", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-iiop.json", + "yml": "sun-iiop.yml", + "html": "sun-iiop.html", + "text": "sun-iiop.LICENSE" + }, + { + "license_key": "sun-java-transaction-api", + "spdx_license_key": "LicenseRef-scancode-sun-java-transaction-api", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-java-transaction-api.json", + "yml": "sun-java-transaction-api.yml", + "html": "sun-java-transaction-api.html", + "text": "sun-java-transaction-api.LICENSE" + }, + { + "license_key": "sun-java-web-services-dev-pack-1.6", + "spdx_license_key": "LicenseRef-scancode-sun-java-web-services-dev-pack-1.6", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-java-web-services-dev-pack-1.6.json", + "yml": "sun-java-web-services-dev-pack-1.6.yml", + "html": "sun-java-web-services-dev-pack-1.6.html", + "text": "sun-java-web-services-dev-pack-1.6.LICENSE" + }, + { + "license_key": "sun-javamail", + "spdx_license_key": "LicenseRef-scancode-sun-javamail", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-javamail.json", + "yml": "sun-javamail.yml", + "html": "sun-javamail.html", + "text": "sun-javamail.LICENSE" + }, + { + "license_key": "sun-jsr-spec-04-2006", + "spdx_license_key": "LicenseRef-scancode-sun-jsr-spec-04-2006", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-jsr-spec-04-2006.json", + "yml": "sun-jsr-spec-04-2006.yml", + "html": "sun-jsr-spec-04-2006.html", + "text": "sun-jsr-spec-04-2006.LICENSE" + }, + { + "license_key": "sun-jta-spec-1.0.1", + "spdx_license_key": "LicenseRef-scancode-sun-jta-spec-1.0.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-jta-spec-1.0.1.json", + "yml": "sun-jta-spec-1.0.1.yml", + "html": "sun-jta-spec-1.0.1.html", + "text": "sun-jta-spec-1.0.1.LICENSE" + }, + { + "license_key": "sun-jta-spec-1.0.1B", + "spdx_license_key": "LicenseRef-scancode-sun-jta-spec-1.0.1B", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-jta-spec-1.0.1B.json", + "yml": "sun-jta-spec-1.0.1B.yml", + "html": "sun-jta-spec-1.0.1B.html", + "text": "sun-jta-spec-1.0.1B.LICENSE" + }, + { + "license_key": "sun-no-high-risk-activities", + "spdx_license_key": "LicenseRef-scancode-sun-no-high-risk-activities", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-no-high-risk-activities.json", + "yml": "sun-no-high-risk-activities.yml", + "html": "sun-no-high-risk-activities.html", + "text": "sun-no-high-risk-activities.LICENSE" + }, + { + "license_key": "sun-project-x", + "spdx_license_key": "LicenseRef-scancode-sun-project-x", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-project-x.json", + "yml": "sun-project-x.yml", + "html": "sun-project-x.html", + "text": "sun-project-x.LICENSE" + }, + { + "license_key": "sun-prop-non-commercial", + "spdx_license_key": "LicenseRef-scancode-sun-prop-non-commercial", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-prop-non-commercial.json", + "yml": "sun-prop-non-commercial.yml", + "html": "sun-prop-non-commercial.html", + "text": "sun-prop-non-commercial.LICENSE" + }, + { + "license_key": "sun-proprietary-jdk", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "sun-proprietary-jdk.json", + "yml": "sun-proprietary-jdk.yml", + "html": "sun-proprietary-jdk.html", + "text": "sun-proprietary-jdk.LICENSE" + }, + { + "license_key": "sun-rpc", + "spdx_license_key": "LicenseRef-scancode-sun-rpc", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-rpc.json", + "yml": "sun-rpc.yml", + "html": "sun-rpc.html", + "text": "sun-rpc.LICENSE" + }, + { + "license_key": "sun-sdk-spec-1.1", + "spdx_license_key": "LicenseRef-scancode-sun-sdk-spec-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-sdk-spec-1.1.json", + "yml": "sun-sdk-spec-1.1.yml", + "html": "sun-sdk-spec-1.1.html", + "text": "sun-sdk-spec-1.1.LICENSE" + }, + { + "license_key": "sun-sissl-1.0", + "spdx_license_key": "LicenseRef-scancode-sun-sissl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-sissl-1.0.json", + "yml": "sun-sissl-1.0.yml", + "html": "sun-sissl-1.0.html", + "text": "sun-sissl-1.0.LICENSE" + }, + { + "license_key": "sun-sissl-1.1", + "spdx_license_key": "SISSL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-sissl-1.1.json", + "yml": "sun-sissl-1.1.yml", + "html": "sun-sissl-1.1.html", + "text": "sun-sissl-1.1.LICENSE" + }, + { + "license_key": "sun-sissl-1.2", + "spdx_license_key": "SISSL-1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-sissl-1.2.json", + "yml": "sun-sissl-1.2.yml", + "html": "sun-sissl-1.2.html", + "text": "sun-sissl-1.2.LICENSE" + }, + { + "license_key": "sun-source", + "spdx_license_key": "LicenseRef-scancode-sun-source", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-source.json", + "yml": "sun-source.yml", + "html": "sun-source.html", + "text": "sun-source.LICENSE" + }, + { + "license_key": "sun-ssscfr-1.1", + "spdx_license_key": "LicenseRef-scancode-sun-ssscfr-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-ssscfr-1.1.json", + "yml": "sun-ssscfr-1.1.yml", + "html": "sun-ssscfr-1.1.html", + "text": "sun-ssscfr-1.1.LICENSE" + }, + { + "license_key": "sunpro", + "spdx_license_key": "LicenseRef-scancode-sunpro", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sunpro.json", + "yml": "sunpro.yml", + "html": "sunpro.html", + "text": "sunpro.LICENSE" + }, + { + "license_key": "sunsoft", + "spdx_license_key": "LicenseRef-scancode-sunsoft", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sunsoft.json", + "yml": "sunsoft.yml", + "html": "sunsoft.html", + "text": "sunsoft.LICENSE" + }, + { + "license_key": "supervisor", + "spdx_license_key": "LicenseRef-scancode-supervisor", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "supervisor.json", + "yml": "supervisor.yml", + "html": "supervisor.html", + "text": "supervisor.LICENSE" + }, + { + "license_key": "svndiff", + "spdx_license_key": "LicenseRef-scancode-svndiff", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "svndiff.json", + "yml": "svndiff.yml", + "html": "svndiff.html", + "text": "svndiff.LICENSE" + }, + { + "license_key": "swig", + "spdx_license_key": "LicenseRef-scancode-swig", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "swig.json", + "yml": "swig.yml", + "html": "swig.html", + "text": "swig.LICENSE" + }, + { + "license_key": "swl", + "spdx_license_key": "SWL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "swl.json", + "yml": "swl.yml", + "html": "swl.html", + "text": "swl.LICENSE" + }, + { + "license_key": "sybase", + "spdx_license_key": "Watcom-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sybase.json", + "yml": "sybase.yml", + "html": "sybase.html", + "text": "sybase.LICENSE" + }, + { + "license_key": "symphonysoft", + "spdx_license_key": "LicenseRef-scancode-symphonysoft", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "symphonysoft.json", + "yml": "symphonysoft.yml", + "html": "symphonysoft.html", + "text": "symphonysoft.LICENSE" + }, + { + "license_key": "synopsys-attribution", + "spdx_license_key": "LicenseRef-scancode-synopsys-attribution", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "synopsys-attribution.json", + "yml": "synopsys-attribution.yml", + "html": "synopsys-attribution.html", + "text": "synopsys-attribution.LICENSE" + }, + { + "license_key": "synopsys-mit", + "spdx_license_key": "LicenseRef-scancode-synopsys-mit", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "synopsys-mit.json", + "yml": "synopsys-mit.yml", + "html": "synopsys-mit.html", + "text": "synopsys-mit.LICENSE" + }, + { + "license_key": "syntext-serna-exception-1.0", + "spdx_license_key": "LicenseRef-scancode-syntext-serna-exception-1.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "syntext-serna-exception-1.0.json", + "yml": "syntext-serna-exception-1.0.yml", + "html": "syntext-serna-exception-1.0.html", + "text": "syntext-serna-exception-1.0.LICENSE" + }, + { + "license_key": "takao-abe", + "spdx_license_key": "LicenseRef-scancode-takao-abe", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "takao-abe.json", + "yml": "takao-abe.yml", + "html": "takao-abe.html", + "text": "takao-abe.LICENSE" + }, + { + "license_key": "takuya-ooura", + "spdx_license_key": "LicenseRef-scancode-takuya-ooura", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "takuya-ooura.json", + "yml": "takuya-ooura.yml", + "html": "takuya-ooura.html", + "text": "takuya-ooura.LICENSE" + }, + { + "license_key": "taligent-jdk", + "spdx_license_key": "LicenseRef-scancode-taligent-jdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "taligent-jdk.json", + "yml": "taligent-jdk.yml", + "html": "taligent-jdk.html", + "text": "taligent-jdk.LICENSE" + }, + { + "license_key": "tanuki-community-sla-1.0", + "spdx_license_key": "LicenseRef-scancode-tanuki-community-sla-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tanuki-community-sla-1.0.json", + "yml": "tanuki-community-sla-1.0.yml", + "html": "tanuki-community-sla-1.0.html", + "text": "tanuki-community-sla-1.0.LICENSE" + }, + { + "license_key": "tanuki-community-sla-1.1", + "spdx_license_key": "LicenseRef-scancode-tanuki-community-sla-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tanuki-community-sla-1.1.json", + "yml": "tanuki-community-sla-1.1.yml", + "html": "tanuki-community-sla-1.1.html", + "text": "tanuki-community-sla-1.1.LICENSE" + }, + { + "license_key": "tanuki-community-sla-1.2", + "spdx_license_key": "LicenseRef-scancode-tanuki-community-sla-1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tanuki-community-sla-1.2.json", + "yml": "tanuki-community-sla-1.2.yml", + "html": "tanuki-community-sla-1.2.html", + "text": "tanuki-community-sla-1.2.LICENSE" + }, + { + "license_key": "tanuki-community-sla-1.3", + "spdx_license_key": "LicenseRef-scancode-tanuki-community-sla-1.3", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tanuki-community-sla-1.3.json", + "yml": "tanuki-community-sla-1.3.yml", + "html": "tanuki-community-sla-1.3.html", + "text": "tanuki-community-sla-1.3.LICENSE" + }, + { + "license_key": "tapr-ohl-1.0", + "spdx_license_key": "TAPR-OHL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tapr-ohl-1.0.json", + "yml": "tapr-ohl-1.0.yml", + "html": "tapr-ohl-1.0.html", + "text": "tapr-ohl-1.0.LICENSE" + }, + { + "license_key": "tatu-ylonen", + "spdx_license_key": "SSH-short", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tatu-ylonen.json", + "yml": "tatu-ylonen.yml", + "html": "tatu-ylonen.html", + "text": "tatu-ylonen.LICENSE" + }, + { + "license_key": "tcl", + "spdx_license_key": "TCL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tcl.json", + "yml": "tcl.yml", + "html": "tcl.html", + "text": "tcl.LICENSE" + }, + { + "license_key": "tcp-wrappers", + "spdx_license_key": "TCP-wrappers", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tcp-wrappers.json", + "yml": "tcp-wrappers.yml", + "html": "tcp-wrappers.html", + "text": "tcp-wrappers.LICENSE" + }, + { + "license_key": "teamdev-services", + "spdx_license_key": "LicenseRef-scancode-teamdev-services", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "teamdev-services.json", + "yml": "teamdev-services.yml", + "html": "teamdev-services.html", + "text": "teamdev-services.LICENSE" + }, + { + "license_key": "telerik-eula", + "spdx_license_key": "LicenseRef-scancode-telerik-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "telerik-eula.json", + "yml": "telerik-eula.yml", + "html": "telerik-eula.html", + "text": "telerik-eula.LICENSE" + }, + { + "license_key": "tenable-nessus", + "spdx_license_key": "LicenseRef-scancode-tenable-nessus", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tenable-nessus.json", + "yml": "tenable-nessus.yml", + "html": "tenable-nessus.html", + "text": "tenable-nessus.LICENSE" + }, + { + "license_key": "term-readkey", + "spdx_license_key": "LicenseRef-scancode-term-readkey", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "term-readkey.json", + "yml": "term-readkey.yml", + "html": "term-readkey.html", + "text": "term-readkey.LICENSE" + }, + { + "license_key": "tested-software", + "spdx_license_key": "LicenseRef-scancode-tested-software", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tested-software.json", + "yml": "tested-software.yml", + "html": "tested-software.html", + "text": "tested-software.LICENSE" + }, + { + "license_key": "tex-exception", + "spdx_license_key": "LicenseRef-scancode-tex-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "tex-exception.json", + "yml": "tex-exception.yml", + "html": "tex-exception.html", + "text": "tex-exception.LICENSE" + }, + { + "license_key": "tex-live", + "spdx_license_key": "LicenseRef-scancode-tex-live", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tex-live.json", + "yml": "tex-live.yml", + "html": "tex-live.html", + "text": "tex-live.LICENSE" + }, + { + "license_key": "tgppl-1.0", + "spdx_license_key": "LicenseRef-scancode-tgppl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tgppl-1.0.json", + "yml": "tgppl-1.0.yml", + "html": "tgppl-1.0.html", + "text": "tgppl-1.0.LICENSE" + }, + { + "license_key": "things-i-made-public-license", + "spdx_license_key": "LicenseRef-scancode-things-i-made-public-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "things-i-made-public-license.json", + "yml": "things-i-made-public-license.yml", + "html": "things-i-made-public-license.html", + "text": "things-i-made-public-license.LICENSE" + }, + { + "license_key": "thomas-bandt", + "spdx_license_key": "LicenseRef-scancode-thomas-bandt", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "thomas-bandt.json", + "yml": "thomas-bandt.yml", + "html": "thomas-bandt.html", + "text": "thomas-bandt.LICENSE" + }, + { + "license_key": "ti-broadband-apps", + "spdx_license_key": "LicenseRef-scancode-ti-broadband-apps", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ti-broadband-apps.json", + "yml": "ti-broadband-apps.yml", + "html": "ti-broadband-apps.html", + "text": "ti-broadband-apps.LICENSE" + }, + { + "license_key": "ti-restricted", + "spdx_license_key": "LicenseRef-scancode-ti-restricted", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ti-restricted.json", + "yml": "ti-restricted.yml", + "html": "ti-restricted.html", + "text": "ti-restricted.LICENSE" + }, + { + "license_key": "tidy", + "spdx_license_key": "HTMLTIDY", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tidy.json", + "yml": "tidy.yml", + "html": "tidy.html", + "text": "tidy.LICENSE" + }, + { + "license_key": "tiger-crypto", + "spdx_license_key": "LicenseRef-scancode-tiger-crypto", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tiger-crypto.json", + "yml": "tiger-crypto.yml", + "html": "tiger-crypto.html", + "text": "tiger-crypto.LICENSE" + }, + { + "license_key": "tigra-calendar-3.2", + "spdx_license_key": "LicenseRef-scancode-tigra-calendar-3.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tigra-calendar-3.2.json", + "yml": "tigra-calendar-3.2.yml", + "html": "tigra-calendar-3.2.html", + "text": "tigra-calendar-3.2.LICENSE" + }, + { + "license_key": "tigra-calendar-4.0", + "spdx_license_key": "LicenseRef-scancode-tigra-calendar-4.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tigra-calendar-4.0.json", + "yml": "tigra-calendar-4.0.yml", + "html": "tigra-calendar-4.0.html", + "text": "tigra-calendar-4.0.LICENSE" + }, + { + "license_key": "timestamp-picker", + "spdx_license_key": "LicenseRef-scancode-timestamp-picker", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "timestamp-picker.json", + "yml": "timestamp-picker.yml", + "html": "timestamp-picker.html", + "text": "timestamp-picker.LICENSE" + }, + { + "license_key": "tizen-sdk", + "spdx_license_key": "LicenseRef-scancode-tizen-sdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tizen-sdk.json", + "yml": "tizen-sdk.yml", + "html": "tizen-sdk.html", + "text": "tizen-sdk.LICENSE" + }, + { + "license_key": "tmate", + "spdx_license_key": "TMate", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tmate.json", + "yml": "tmate.yml", + "html": "tmate.html", + "text": "tmate.LICENSE" + }, + { + "license_key": "torque-1.1", + "spdx_license_key": "TORQUE-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "torque-1.1.json", + "yml": "torque-1.1.yml", + "html": "torque-1.1.html", + "text": "torque-1.1.LICENSE" + }, + { + "license_key": "tosl", + "spdx_license_key": "TOSL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tosl.json", + "yml": "tosl.yml", + "html": "tosl.html", + "text": "tosl.LICENSE" + }, + { + "license_key": "tpl-1.0", + "spdx_license_key": "LicenseRef-scancode-tpl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tpl-1.0.json", + "yml": "tpl-1.0.yml", + "html": "tpl-1.0.html", + "text": "tpl-1.0.LICENSE" + }, + { + "license_key": "trademark-notice", + "spdx_license_key": "LicenseRef-scancode-trademark-notice", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "trademark-notice.json", + "yml": "trademark-notice.yml", + "html": "trademark-notice.html", + "text": "trademark-notice.LICENSE" + }, + { + "license_key": "trca-odl-1.0", + "spdx_license_key": "LicenseRef-scancode-trca-odl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "trca-odl-1.0.json", + "yml": "trca-odl-1.0.yml", + "html": "trca-odl-1.0.html", + "text": "trca-odl-1.0.LICENSE" + }, + { + "license_key": "treeview-developer", + "spdx_license_key": "LicenseRef-scancode-treeview-developer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "treeview-developer.json", + "yml": "treeview-developer.yml", + "html": "treeview-developer.html", + "text": "treeview-developer.LICENSE" + }, + { + "license_key": "treeview-distributor", + "spdx_license_key": "LicenseRef-scancode-treeview-distributor", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "treeview-distributor.json", + "yml": "treeview-distributor.yml", + "html": "treeview-distributor.html", + "text": "treeview-distributor.LICENSE" + }, + { + "license_key": "triptracker", + "spdx_license_key": "LicenseRef-scancode-triptracker", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "triptracker.json", + "yml": "triptracker.yml", + "html": "triptracker.html", + "text": "triptracker.LICENSE" + }, + { + "license_key": "trolltech-gpl-exception-1.0", + "spdx_license_key": "LicenseRef-scancode-trolltech-gpl-exception-1.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "trolltech-gpl-exception-1.0.json", + "yml": "trolltech-gpl-exception-1.0.yml", + "html": "trolltech-gpl-exception-1.0.html", + "text": "trolltech-gpl-exception-1.0.LICENSE" + }, + { + "license_key": "trolltech-gpl-exception-1.1", + "spdx_license_key": "LicenseRef-scancode-trolltech-gpl-exception-1.1", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "trolltech-gpl-exception-1.1.json", + "yml": "trolltech-gpl-exception-1.1.yml", + "html": "trolltech-gpl-exception-1.1.html", + "text": "trolltech-gpl-exception-1.1.LICENSE" + }, + { + "license_key": "trolltech-gpl-exception-1.2", + "spdx_license_key": "LicenseRef-scancode-trolltech-gpl-exception-1.2", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "trolltech-gpl-exception-1.2.json", + "yml": "trolltech-gpl-exception-1.2.yml", + "html": "trolltech-gpl-exception-1.2.html", + "text": "trolltech-gpl-exception-1.2.LICENSE" + }, + { + "license_key": "truecrypt-3.1", + "spdx_license_key": "LicenseRef-scancode-truecrypt-3.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "truecrypt-3.1.json", + "yml": "truecrypt-3.1.yml", + "html": "truecrypt-3.1.html", + "text": "truecrypt-3.1.LICENSE" + }, + { + "license_key": "tsl-2018", + "spdx_license_key": "LicenseRef-scancode-tsl-2018", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tsl-2018.json", + "yml": "tsl-2018.yml", + "html": "tsl-2018.html", + "text": "tsl-2018.LICENSE" + }, + { + "license_key": "tso-license", + "spdx_license_key": "LicenseRef-scancode-tso-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tso-license.json", + "yml": "tso-license.yml", + "html": "tso-license.html", + "text": "tso-license.LICENSE" + }, + { + "license_key": "ttf2pt1", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "ttf2pt1.json", + "yml": "ttf2pt1.yml", + "html": "ttf2pt1.html", + "text": "ttf2pt1.LICENSE" + }, + { + "license_key": "tu-berlin-2.0", + "spdx_license_key": "TU-Berlin-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tu-berlin-2.0.json", + "yml": "tu-berlin-2.0.yml", + "html": "tu-berlin-2.0.html", + "text": "tu-berlin-2.0.LICENSE" + }, + { + "license_key": "tu-berlin", + "spdx_license_key": "TU-Berlin-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tu-berlin.json", + "yml": "tu-berlin.yml", + "html": "tu-berlin.html", + "text": "tu-berlin.LICENSE" + }, + { + "license_key": "tumbolia", + "spdx_license_key": "LicenseRef-scancode-tumbolia", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tumbolia.json", + "yml": "tumbolia.yml", + "html": "tumbolia.html", + "text": "tumbolia.LICENSE" + }, + { + "license_key": "twisted-snmp", + "spdx_license_key": "LicenseRef-scancode-twisted-snmp", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "twisted-snmp.json", + "yml": "twisted-snmp.yml", + "html": "twisted-snmp.html", + "text": "twisted-snmp.LICENSE" + }, + { + "license_key": "txl-10.5", + "spdx_license_key": "LicenseRef-scancode-txl-10.5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "txl-10.5.json", + "yml": "txl-10.5.yml", + "html": "txl-10.5.html", + "text": "txl-10.5.LICENSE" + }, + { + "license_key": "u-boot-exception-2.0", + "spdx_license_key": "u-boot-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "u-boot-exception-2.0.json", + "yml": "u-boot-exception-2.0.yml", + "html": "u-boot-exception-2.0.html", + "text": "u-boot-exception-2.0.LICENSE" + }, + { + "license_key": "ubc", + "spdx_license_key": "LicenseRef-scancode-ubc", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ubc.json", + "yml": "ubc.yml", + "html": "ubc.html", + "text": "ubc.LICENSE" + }, + { + "license_key": "ubdl", + "spdx_license_key": "LicenseRef-scancode-ubdl", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "ubdl.json", + "yml": "ubdl.yml", + "html": "ubdl.html", + "text": "ubdl.LICENSE" + }, + { + "license_key": "ubuntu-font-1.0", + "spdx_license_key": "LicenseRef-scancode-ubuntu-font-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ubuntu-font-1.0.json", + "yml": "ubuntu-font-1.0.yml", + "html": "ubuntu-font-1.0.html", + "text": "ubuntu-font-1.0.LICENSE" + }, + { + "license_key": "ucl-1.0", + "spdx_license_key": "UCL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ucl-1.0.json", + "yml": "ucl-1.0.yml", + "html": "ucl-1.0.html", + "text": "ucl-1.0.LICENSE" + }, + { + "license_key": "unbuntu-font-1.0", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "unbuntu-font-1.0.json", + "yml": "unbuntu-font-1.0.yml", + "html": "unbuntu-font-1.0.html", + "text": "unbuntu-font-1.0.LICENSE" + }, + { + "license_key": "unicode-data-software", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "unicode-data-software.json", + "yml": "unicode-data-software.yml", + "html": "unicode-data-software.html", + "text": "unicode-data-software.LICENSE" + }, + { + "license_key": "unicode-dfs-2015", + "spdx_license_key": "Unicode-DFS-2015", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "unicode-dfs-2015.json", + "yml": "unicode-dfs-2015.yml", + "html": "unicode-dfs-2015.html", + "text": "unicode-dfs-2015.LICENSE" + }, + { + "license_key": "unicode-dfs-2016", + "spdx_license_key": "Unicode-DFS-2016", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "unicode-dfs-2016.json", + "yml": "unicode-dfs-2016.yml", + "html": "unicode-dfs-2016.html", + "text": "unicode-dfs-2016.LICENSE" + }, + { + "license_key": "unicode-icu-58", + "spdx_license_key": "LicenseRef-scancode-unicode-icu-58", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "unicode-icu-58.json", + "yml": "unicode-icu-58.yml", + "html": "unicode-icu-58.html", + "text": "unicode-icu-58.LICENSE" + }, + { + "license_key": "unicode-mappings", + "spdx_license_key": "LicenseRef-scancode-unicode-mappings", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "unicode-mappings.json", + "yml": "unicode-mappings.yml", + "html": "unicode-mappings.html", + "text": "unicode-mappings.LICENSE" + }, + { + "license_key": "unicode-tou", + "spdx_license_key": "Unicode-TOU", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "unicode-tou.json", + "yml": "unicode-tou.yml", + "html": "unicode-tou.html", + "text": "unicode-tou.LICENSE" + }, + { + "license_key": "unicode", + "spdx_license_key": "LicenseRef-scancode-unicode", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "unicode.json", + "yml": "unicode.yml", + "html": "unicode.html", + "text": "unicode.LICENSE" + }, + { + "license_key": "universal-foss-exception-1.0", + "spdx_license_key": "Universal-FOSS-exception-1.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "universal-foss-exception-1.0.json", + "yml": "universal-foss-exception-1.0.yml", + "html": "universal-foss-exception-1.0.html", + "text": "universal-foss-exception-1.0.LICENSE" + }, + { + "license_key": "unknown-license-reference", + "spdx_license_key": "LicenseRef-scancode-unknown-license-reference", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "unknown-license-reference.json", + "yml": "unknown-license-reference.yml", + "html": "unknown-license-reference.html", + "text": "unknown-license-reference.LICENSE" + }, + { + "license_key": "unknown-spdx", + "spdx_license_key": "LicenseRef-scancode-unknown-spdx", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "unknown-spdx.json", + "yml": "unknown-spdx.yml", + "html": "unknown-spdx.html", + "text": "unknown-spdx.LICENSE" + }, + { + "license_key": "unknown", + "spdx_license_key": "LicenseRef-scancode-unknown", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "unknown.json", + "yml": "unknown.yml", + "html": "unknown.html", + "text": "unknown.LICENSE" + }, + { + "license_key": "unlicense", + "spdx_license_key": "Unlicense", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "unlicense.json", + "yml": "unlicense.yml", + "html": "unlicense.html", + "text": "unlicense.LICENSE" + }, + { + "license_key": "unlimited-binary-linking", + "spdx_license_key": "LicenseRef-scancode-unlimited-binary-linking", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "unlimited-binary-linking.json", + "yml": "unlimited-binary-linking.yml", + "html": "unlimited-binary-linking.html", + "text": "unlimited-binary-linking.LICENSE" + }, + { + "license_key": "unlimited-linking-exception-gpl", + "spdx_license_key": "LicenseRef-scancode-unlimited-linking-exception-gpl", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "unlimited-linking-exception-gpl.json", + "yml": "unlimited-linking-exception-gpl.yml", + "html": "unlimited-linking-exception-gpl.html", + "text": "unlimited-linking-exception-gpl.LICENSE" + }, + { + "license_key": "unlimited-linking-exception-lgpl", + "spdx_license_key": "LicenseRef-scancode-unlimited-linking-exception-lgpl", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "unlimited-linking-exception-lgpl.json", + "yml": "unlimited-linking-exception-lgpl.yml", + "html": "unlimited-linking-exception-lgpl.html", + "text": "unlimited-linking-exception-lgpl.LICENSE" + }, + { + "license_key": "unpbook", + "spdx_license_key": "LicenseRef-scancode-unpbook", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "unpbook.json", + "yml": "unpbook.yml", + "html": "unpbook.html", + "text": "unpbook.LICENSE" + }, + { + "license_key": "unpublished-source", + "spdx_license_key": "LicenseRef-scancode-unpublished-source", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "unpublished-source.json", + "yml": "unpublished-source.yml", + "html": "unpublished-source.html", + "text": "unpublished-source.LICENSE" + }, + { + "license_key": "unrar", + "spdx_license_key": "LicenseRef-scancode-unrar", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "unrar.json", + "yml": "unrar.yml", + "html": "unrar.html", + "text": "unrar.LICENSE" + }, + { + "license_key": "uofu-rfpl", + "spdx_license_key": "LicenseRef-scancode-uofu-rfpl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "uofu-rfpl.json", + "yml": "uofu-rfpl.yml", + "html": "uofu-rfpl.html", + "text": "uofu-rfpl.LICENSE" + }, + { + "license_key": "uoi-ncsa", + "spdx_license_key": "NCSA", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "uoi-ncsa.json", + "yml": "uoi-ncsa.yml", + "html": "uoi-ncsa.html", + "text": "uoi-ncsa.LICENSE" + }, + { + "license_key": "upl-1.0", + "spdx_license_key": "UPL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "upl-1.0.json", + "yml": "upl-1.0.yml", + "html": "upl-1.0.html", + "text": "upl-1.0.LICENSE" + }, + { + "license_key": "upx-exception-2.0-plus", + "spdx_license_key": "LicenseRef-scancode-upx-exception-2.0-plus", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "upx-exception-2.0-plus.json", + "yml": "upx-exception-2.0-plus.yml", + "html": "upx-exception-2.0-plus.html", + "text": "upx-exception-2.0-plus.LICENSE" + }, + { + "license_key": "us-govt-public-domain", + "spdx_license_key": "LicenseRef-scancode-us-govt-public-domain", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "us-govt-public-domain.json", + "yml": "us-govt-public-domain.yml", + "html": "us-govt-public-domain.html", + "text": "us-govt-public-domain.LICENSE" + }, + { + "license_key": "us-govt-unlimited-rights", + "spdx_license_key": "LicenseRef-scancode-us-govt-unlimited-rights", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "us-govt-unlimited-rights.json", + "yml": "us-govt-unlimited-rights.yml", + "html": "us-govt-unlimited-rights.html", + "text": "us-govt-unlimited-rights.LICENSE" + }, + { + "license_key": "usrobotics-permissive", + "spdx_license_key": "LicenseRef-scancode-usrobotics-permissive", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "usrobotics-permissive.json", + "yml": "usrobotics-permissive.yml", + "html": "usrobotics-permissive.html", + "text": "usrobotics-permissive.LICENSE" + }, + { + "license_key": "utopia", + "spdx_license_key": "LicenseRef-scancode-utopia", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "utopia.json", + "yml": "utopia.yml", + "html": "utopia.html", + "text": "utopia.LICENSE" + }, + { + "license_key": "vbaccelerator", + "spdx_license_key": "LicenseRef-scancode-vbaccelerator", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "vbaccelerator.json", + "yml": "vbaccelerator.yml", + "html": "vbaccelerator.html", + "text": "vbaccelerator.LICENSE" + }, + { + "license_key": "vcalendar", + "spdx_license_key": "LicenseRef-scancode-vcalendar", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "vcalendar.json", + "yml": "vcalendar.yml", + "html": "vcalendar.html", + "text": "vcalendar.LICENSE" + }, + { + "license_key": "verbatim-manual", + "spdx_license_key": "LicenseRef-scancode-verbatim-manual", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "verbatim-manual.json", + "yml": "verbatim-manual.yml", + "html": "verbatim-manual.html", + "text": "verbatim-manual.LICENSE" + }, + { + "license_key": "verisign", + "spdx_license_key": "LicenseRef-scancode-verisign", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "verisign.json", + "yml": "verisign.yml", + "html": "verisign.html", + "text": "verisign.LICENSE" + }, + { + "license_key": "vhfpl-1.1", + "spdx_license_key": "LicenseRef-scancode-vhfpl-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "vhfpl-1.1.json", + "yml": "vhfpl-1.1.yml", + "html": "vhfpl-1.1.html", + "text": "vhfpl-1.1.LICENSE" + }, + { + "license_key": "vic-metcalfe-pd", + "spdx_license_key": "LicenseRef-scancode-vic-metcalfe-pd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "vic-metcalfe-pd.json", + "yml": "vic-metcalfe-pd.yml", + "html": "vic-metcalfe-pd.html", + "text": "vic-metcalfe-pd.LICENSE" + }, + { + "license_key": "vicomsoft-software", + "spdx_license_key": "LicenseRef-scancode-vicomsoft-software", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "vicomsoft-software.json", + "yml": "vicomsoft-software.yml", + "html": "vicomsoft-software.html", + "text": "vicomsoft-software.LICENSE" + }, + { + "license_key": "viewflow-agpl-3.0-exception", + "spdx_license_key": "LicenseRef-scancode-viewflow-agpl-3.0-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "viewflow-agpl-3.0-exception.json", + "yml": "viewflow-agpl-3.0-exception.yml", + "html": "viewflow-agpl-3.0-exception.html", + "text": "viewflow-agpl-3.0-exception.LICENSE" + }, + { + "license_key": "vim", + "spdx_license_key": "Vim", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "vim.json", + "yml": "vim.yml", + "html": "vim.html", + "text": "vim.LICENSE" + }, + { + "license_key": "visual-idiot", + "spdx_license_key": "LicenseRef-scancode-visual-idiot", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "visual-idiot.json", + "yml": "visual-idiot.yml", + "html": "visual-idiot.html", + "text": "visual-idiot.LICENSE" + }, + { + "license_key": "visual-numerics", + "spdx_license_key": "LicenseRef-scancode-visual-numerics", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "visual-numerics.json", + "yml": "visual-numerics.yml", + "html": "visual-numerics.html", + "text": "visual-numerics.LICENSE" + }, + { + "license_key": "vitesse-prop", + "spdx_license_key": "LicenseRef-scancode-vitesse-prop", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "vitesse-prop.json", + "yml": "vitesse-prop.yml", + "html": "vitesse-prop.html", + "text": "vitesse-prop.LICENSE" + }, + { + "license_key": "vixie-cron", + "spdx_license_key": "LicenseRef-scancode-vixie-cron", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "vixie-cron.json", + "yml": "vixie-cron.yml", + "html": "vixie-cron.html", + "text": "vixie-cron.LICENSE" + }, + { + "license_key": "vnc-viewer-ios", + "spdx_license_key": "LicenseRef-scancode-vnc-viewer-ios", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "vnc-viewer-ios.json", + "yml": "vnc-viewer-ios.yml", + "html": "vnc-viewer-ios.html", + "text": "vnc-viewer-ios.LICENSE" + }, + { + "license_key": "volatility-vsl-v1.0", + "spdx_license_key": "LicenseRef-scancode-volatility-vsl-v1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "volatility-vsl-v1.0.json", + "yml": "volatility-vsl-v1.0.yml", + "html": "volatility-vsl-v1.0.html", + "text": "volatility-vsl-v1.0.LICENSE" + }, + { + "license_key": "vostrom", + "spdx_license_key": "VOSTROM", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "vostrom.json", + "yml": "vostrom.yml", + "html": "vostrom.html", + "text": "vostrom.LICENSE" + }, + { + "license_key": "vpl-1.1", + "spdx_license_key": "LicenseRef-scancode-vpl-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "vpl-1.1.json", + "yml": "vpl-1.1.yml", + "html": "vpl-1.1.html", + "text": "vpl-1.1.LICENSE" + }, + { + "license_key": "vpl-1.2", + "spdx_license_key": "LicenseRef-scancode-vpl-1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "vpl-1.2.json", + "yml": "vpl-1.2.yml", + "html": "vpl-1.2.html", + "text": "vpl-1.2.LICENSE" + }, + { + "license_key": "vs10x-code-map", + "spdx_license_key": "LicenseRef-scancode-vs10x-code-map", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "vs10x-code-map.json", + "yml": "vs10x-code-map.yml", + "html": "vs10x-code-map.html", + "text": "vs10x-code-map.LICENSE" + }, + { + "license_key": "vsl-1.0", + "spdx_license_key": "VSL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "vsl-1.0.json", + "yml": "vsl-1.0.yml", + "html": "vsl-1.0.html", + "text": "vsl-1.0.LICENSE" + }, + { + "license_key": "vuforia-2013-07-29", + "spdx_license_key": "LicenseRef-scancode-vuforia-2013-07-29", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "vuforia-2013-07-29.json", + "yml": "vuforia-2013-07-29.yml", + "html": "vuforia-2013-07-29.html", + "text": "vuforia-2013-07-29.LICENSE" + }, + { + "license_key": "w3c-docs-19990405", + "spdx_license_key": "LicenseRef-scancode-w3c-docs-19990405", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "w3c-docs-19990405.json", + "yml": "w3c-docs-19990405.yml", + "html": "w3c-docs-19990405.html", + "text": "w3c-docs-19990405.LICENSE" + }, + { + "license_key": "w3c-docs-20021231", + "spdx_license_key": "LicenseRef-scancode-w3c-docs-20021231", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "w3c-docs-20021231.json", + "yml": "w3c-docs-20021231.yml", + "html": "w3c-docs-20021231.html", + "text": "w3c-docs-20021231.LICENSE" + }, + { + "license_key": "w3c-documentation", + "spdx_license_key": "LicenseRef-scancode-w3c-documentation", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "w3c-documentation.json", + "yml": "w3c-documentation.yml", + "html": "w3c-documentation.html", + "text": "w3c-documentation.LICENSE" + }, + { + "license_key": "w3c-software-19980720", + "spdx_license_key": "W3C-19980720", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "w3c-software-19980720.json", + "yml": "w3c-software-19980720.yml", + "html": "w3c-software-19980720.html", + "text": "w3c-software-19980720.LICENSE" + }, + { + "license_key": "w3c-software-20021231", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "w3c-software-20021231.json", + "yml": "w3c-software-20021231.yml", + "html": "w3c-software-20021231.html", + "text": "w3c-software-20021231.LICENSE" + }, + { + "license_key": "w3c-software-doc-20150513", + "spdx_license_key": "W3C-20150513", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "w3c-software-doc-20150513.json", + "yml": "w3c-software-doc-20150513.yml", + "html": "w3c-software-doc-20150513.html", + "text": "w3c-software-doc-20150513.LICENSE" + }, + { + "license_key": "w3c", + "spdx_license_key": "W3C", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "w3c.json", + "yml": "w3c.yml", + "html": "w3c.html", + "text": "w3c.LICENSE" + }, + { + "license_key": "warranty-disclaimer", + "spdx_license_key": "LicenseRef-scancode-warranty-disclaimer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "warranty-disclaimer.json", + "yml": "warranty-disclaimer.yml", + "html": "warranty-disclaimer.html", + "text": "warranty-disclaimer.LICENSE" + }, + { + "license_key": "waterfall-feed-parser", + "spdx_license_key": "LicenseRef-scancode-waterfall-feed-parser", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "waterfall-feed-parser.json", + "yml": "waterfall-feed-parser.yml", + "html": "waterfall-feed-parser.html", + "text": "waterfall-feed-parser.LICENSE" + }, + { + "license_key": "westhawk", + "spdx_license_key": "LicenseRef-scancode-westhawk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "westhawk.json", + "yml": "westhawk.yml", + "html": "westhawk.html", + "text": "westhawk.LICENSE" + }, + { + "license_key": "whistle", + "spdx_license_key": "LicenseRef-scancode-whistle", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "whistle.json", + "yml": "whistle.yml", + "html": "whistle.html", + "text": "whistle.LICENSE" + }, + { + "license_key": "wide-license", + "spdx_license_key": "LicenseRef-scancode-wide-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "wide-license.json", + "yml": "wide-license.yml", + "html": "wide-license.html", + "text": "wide-license.LICENSE" + }, + { + "license_key": "wifi-alliance", + "spdx_license_key": "LicenseRef-scancode-wifi-alliance", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "wifi-alliance.json", + "yml": "wifi-alliance.yml", + "html": "wifi-alliance.html", + "text": "wifi-alliance.LICENSE" + }, + { + "license_key": "william-alexander", + "spdx_license_key": "LicenseRef-scancode-william-alexander", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "william-alexander.json", + "yml": "william-alexander.yml", + "html": "william-alexander.html", + "text": "william-alexander.LICENSE" + }, + { + "license_key": "wince-50-shared-source", + "spdx_license_key": "LicenseRef-scancode-wince-50-shared-source", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "wince-50-shared-source.json", + "yml": "wince-50-shared-source.yml", + "html": "wince-50-shared-source.html", + "text": "wince-50-shared-source.LICENSE" + }, + { + "license_key": "windriver-commercial", + "spdx_license_key": "LicenseRef-scancode-windriver-commercial", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "windriver-commercial.json", + "yml": "windriver-commercial.yml", + "html": "windriver-commercial.html", + "text": "windriver-commercial.LICENSE" + }, + { + "license_key": "wingo", + "spdx_license_key": "LicenseRef-scancode-wingo", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "wingo.json", + "yml": "wingo.yml", + "html": "wingo.html", + "text": "wingo.LICENSE" + }, + { + "license_key": "wink", + "spdx_license_key": "LicenseRef-scancode-wink", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "wink.json", + "yml": "wink.yml", + "html": "wink.html", + "text": "wink.LICENSE" + }, + { + "license_key": "winzip-eula", + "spdx_license_key": "LicenseRef-scancode-winzip-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "winzip-eula.json", + "yml": "winzip-eula.yml", + "html": "winzip-eula.html", + "text": "winzip-eula.LICENSE" + }, + { + "license_key": "winzip-self-extractor", + "spdx_license_key": "LicenseRef-scancode-winzip-self-extractor", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "winzip-self-extractor.json", + "yml": "winzip-self-extractor.yml", + "html": "winzip-self-extractor.html", + "text": "winzip-self-extractor.LICENSE" + }, + { + "license_key": "wol", + "spdx_license_key": "LicenseRef-scancode-wol", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "wol.json", + "yml": "wol.yml", + "html": "wol.html", + "text": "wol.LICENSE" + }, + { + "license_key": "wordnet", + "spdx_license_key": "LicenseRef-scancode-wordnet", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "wordnet.json", + "yml": "wordnet.yml", + "html": "wordnet.html", + "text": "wordnet.LICENSE" + }, + { + "license_key": "wrox-download", + "spdx_license_key": "LicenseRef-scancode-wrox-download", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "wrox-download.json", + "yml": "wrox-download.yml", + "html": "wrox-download.html", + "text": "wrox-download.LICENSE" + }, + { + "license_key": "wrox", + "spdx_license_key": "LicenseRef-scancode-wrox", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "wrox.json", + "yml": "wrox.yml", + "html": "wrox.html", + "text": "wrox.LICENSE" + }, + { + "license_key": "ws-addressing-spec", + "spdx_license_key": "LicenseRef-scancode-ws-addressing-spec", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ws-addressing-spec.json", + "yml": "ws-addressing-spec.yml", + "html": "ws-addressing-spec.html", + "text": "ws-addressing-spec.LICENSE" + }, + { + "license_key": "ws-policy-specification", + "spdx_license_key": "LicenseRef-scancode-ws-policy-specification", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ws-policy-specification.json", + "yml": "ws-policy-specification.yml", + "html": "ws-policy-specification.html", + "text": "ws-policy-specification.LICENSE" + }, + { + "license_key": "ws-trust-specification", + "spdx_license_key": "LicenseRef-scancode-ws-trust-specification", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ws-trust-specification.json", + "yml": "ws-trust-specification.yml", + "html": "ws-trust-specification.html", + "text": "ws-trust-specification.LICENSE" + }, + { + "license_key": "wsuipa", + "spdx_license_key": "Wsuipa", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "wsuipa.json", + "yml": "wsuipa.yml", + "html": "wsuipa.html", + "text": "wsuipa.LICENSE" + }, + { + "license_key": "wtfnmfpl-1.0", + "spdx_license_key": "LicenseRef-scancode-wtfnmfpl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "wtfnmfpl-1.0.json", + "yml": "wtfnmfpl-1.0.yml", + "html": "wtfnmfpl-1.0.html", + "text": "wtfnmfpl-1.0.LICENSE" + }, + { + "license_key": "wtfpl-1.0", + "spdx_license_key": "LicenseRef-scancode-wtfpl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "wtfpl-1.0.json", + "yml": "wtfpl-1.0.yml", + "html": "wtfpl-1.0.html", + "text": "wtfpl-1.0.LICENSE" + }, + { + "license_key": "wtfpl-2.0", + "spdx_license_key": "WTFPL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "wtfpl-2.0.json", + "yml": "wtfpl-2.0.yml", + "html": "wtfpl-2.0.html", + "text": "wtfpl-2.0.LICENSE" + }, + { + "license_key": "wthpl-1.0", + "spdx_license_key": "LicenseRef-scancode-wthpl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "wthpl-1.0.json", + "yml": "wthpl-1.0.yml", + "html": "wthpl-1.0.html", + "text": "wthpl-1.0.LICENSE" + }, + { + "license_key": "wxwidgets", + "spdx_license_key": "LicenseRef-scancode-wxwidgets", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "wxwidgets.json", + "yml": "wxwidgets.yml", + "html": "wxwidgets.html", + "text": "wxwidgets.LICENSE" + }, + { + "license_key": "wxwindows-exception-3.1", + "spdx_license_key": "WxWindows-exception-3.1", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "wxwindows-exception-3.1.json", + "yml": "wxwindows-exception-3.1.yml", + "html": "wxwindows-exception-3.1.html", + "text": "wxwindows-exception-3.1.LICENSE" + }, + { + "license_key": "wxwindows-r-3.0", + "spdx_license_key": "LicenseRef-scancode-wxwindows-r-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "wxwindows-r-3.0.json", + "yml": "wxwindows-r-3.0.yml", + "html": "wxwindows-r-3.0.html", + "text": "wxwindows-r-3.0.LICENSE" + }, + { + "license_key": "wxwindows-u-3.0", + "spdx_license_key": "LicenseRef-scancode-wxwindows-u-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "wxwindows-u-3.0.json", + "yml": "wxwindows-u-3.0.yml", + "html": "wxwindows-u-3.0.html", + "text": "wxwindows-u-3.0.LICENSE" + }, + { + "license_key": "wxwindows", + "spdx_license_key": "wxWindows", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "wxwindows.json", + "yml": "wxwindows.yml", + "html": "wxwindows.html", + "text": "wxwindows.LICENSE" + }, + { + "license_key": "x11-adobe-dec", + "spdx_license_key": "LicenseRef-scancode-x11-adobe-dec", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "x11-adobe-dec.json", + "yml": "x11-adobe-dec.yml", + "html": "x11-adobe-dec.html", + "text": "x11-adobe-dec.LICENSE" + }, + { + "license_key": "x11-adobe", + "spdx_license_key": "LicenseRef-scancode-x11-adobe", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "x11-adobe.json", + "yml": "x11-adobe.yml", + "html": "x11-adobe.html", + "text": "x11-adobe.LICENSE" + }, + { + "license_key": "x11-bitstream", + "spdx_license_key": "LicenseRef-scancode-x11-bitstream", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "x11-bitstream.json", + "yml": "x11-bitstream.yml", + "html": "x11-bitstream.html", + "text": "x11-bitstream.LICENSE" + }, + { + "license_key": "x11-dec1", + "spdx_license_key": "LicenseRef-scancode-x11-dec1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "x11-dec1.json", + "yml": "x11-dec1.yml", + "html": "x11-dec1.html", + "text": "x11-dec1.LICENSE" + }, + { + "license_key": "x11-dec2", + "spdx_license_key": "LicenseRef-scancode-x11-dec2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "x11-dec2.json", + "yml": "x11-dec2.yml", + "html": "x11-dec2.html", + "text": "x11-dec2.LICENSE" + }, + { + "license_key": "x11-doc", + "spdx_license_key": "LicenseRef-scancode-x11-doc", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "x11-doc.json", + "yml": "x11-doc.yml", + "html": "x11-doc.html", + "text": "x11-doc.LICENSE" + }, + { + "license_key": "x11-dsc", + "spdx_license_key": "LicenseRef-scancode-x11-dsc", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "x11-dsc.json", + "yml": "x11-dsc.yml", + "html": "x11-dsc.html", + "text": "x11-dsc.LICENSE" + }, + { + "license_key": "x11-fsf", + "spdx_license_key": "LicenseRef-scancode-x11-fsf", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "x11-fsf.json", + "yml": "x11-fsf.yml", + "html": "x11-fsf.html", + "text": "x11-fsf.LICENSE" + }, + { + "license_key": "x11-hanson", + "spdx_license_key": "LicenseRef-scancode-x11-hanson", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "x11-hanson.json", + "yml": "x11-hanson.yml", + "html": "x11-hanson.html", + "text": "x11-hanson.LICENSE" + }, + { + "license_key": "x11-ibm", + "spdx_license_key": "LicenseRef-scancode-x11-ibm", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "x11-ibm.json", + "yml": "x11-ibm.yml", + "html": "x11-ibm.html", + "text": "x11-ibm.LICENSE" + }, + { + "license_key": "x11-keith-packard", + "spdx_license_key": "HPND-sell-variant", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "x11-keith-packard.json", + "yml": "x11-keith-packard.yml", + "html": "x11-keith-packard.html", + "text": "x11-keith-packard.LICENSE" + }, + { + "license_key": "x11-lucent", + "spdx_license_key": "LicenseRef-scancode-x11-lucent", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "x11-lucent.json", + "yml": "x11-lucent.yml", + "html": "x11-lucent.html", + "text": "x11-lucent.LICENSE" + }, + { + "license_key": "x11-oar", + "spdx_license_key": "LicenseRef-scancode-x11-oar", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "x11-oar.json", + "yml": "x11-oar.yml", + "html": "x11-oar.html", + "text": "x11-oar.LICENSE" + }, + { + "license_key": "x11-opengl", + "spdx_license_key": "LicenseRef-scancode-x11-opengl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "x11-opengl.json", + "yml": "x11-opengl.yml", + "html": "x11-opengl.html", + "text": "x11-opengl.LICENSE" + }, + { + "license_key": "x11-opengroup", + "spdx_license_key": "MIT-open-group", + "other_spdx_license_keys": [ + "LicenseRef-scancode-x11-opengroup" + ], + "is_exception": false, + "is_deprecated": false, + "json": "x11-opengroup.json", + "yml": "x11-opengroup.yml", + "html": "x11-opengroup.html", + "text": "x11-opengroup.LICENSE" + }, + { + "license_key": "x11-quarterdeck", + "spdx_license_key": "LicenseRef-scancode-x11-quarterdeck", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "x11-quarterdeck.json", + "yml": "x11-quarterdeck.yml", + "html": "x11-quarterdeck.html", + "text": "x11-quarterdeck.LICENSE" + }, + { + "license_key": "x11-r75", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "x11-r75.json", + "yml": "x11-r75.yml", + "html": "x11-r75.html", + "text": "x11-r75.LICENSE" + }, + { + "license_key": "x11-realmode", + "spdx_license_key": "LicenseRef-scancode-x11-realmode", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "x11-realmode.json", + "yml": "x11-realmode.yml", + "html": "x11-realmode.html", + "text": "x11-realmode.LICENSE" + }, + { + "license_key": "x11-sg", + "spdx_license_key": "LicenseRef-scancode-x11-sg", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "x11-sg.json", + "yml": "x11-sg.yml", + "html": "x11-sg.html", + "text": "x11-sg.LICENSE" + }, + { + "license_key": "x11-stanford", + "spdx_license_key": "LicenseRef-scancode-x11-stanford", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "x11-stanford.json", + "yml": "x11-stanford.yml", + "html": "x11-stanford.html", + "text": "x11-stanford.LICENSE" + }, + { + "license_key": "x11-tektronix", + "spdx_license_key": "LicenseRef-scancode-x11-tektronix", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "x11-tektronix.json", + "yml": "x11-tektronix.yml", + "html": "x11-tektronix.html", + "text": "x11-tektronix.LICENSE" + }, + { + "license_key": "x11-tiff", + "spdx_license_key": "libtiff", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "x11-tiff.json", + "yml": "x11-tiff.yml", + "html": "x11-tiff.html", + "text": "x11-tiff.LICENSE" + }, + { + "license_key": "x11-x11r5", + "spdx_license_key": "LicenseRef-scancode-x11-x11r5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "x11-x11r5.json", + "yml": "x11-x11r5.yml", + "html": "x11-x11r5.html", + "text": "x11-x11r5.LICENSE" + }, + { + "license_key": "x11-xconsortium", + "spdx_license_key": "X11", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "x11-xconsortium.json", + "yml": "x11-xconsortium.yml", + "html": "x11-xconsortium.html", + "text": "x11-xconsortium.LICENSE" + }, + { + "license_key": "x11-xconsortium_veillard", + "spdx_license_key": "LicenseRef-scancode-x11-xconsortium_veillard", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "x11-xconsortium_veillard.json", + "yml": "x11-xconsortium_veillard.yml", + "html": "x11-xconsortium_veillard.html", + "text": "x11-xconsortium_veillard.LICENSE" + }, + { + "license_key": "x11", + "spdx_license_key": "ICU", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "x11.json", + "yml": "x11.yml", + "html": "x11.html", + "text": "x11.LICENSE" + }, + { + "license_key": "x11r5-authors", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "x11r5-authors.json", + "yml": "x11r5-authors.yml", + "html": "x11r5-authors.html", + "text": "x11r5-authors.LICENSE" + }, + { + "license_key": "xfree86-1.0", + "spdx_license_key": "LicenseRef-scancode-xfree86-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "xfree86-1.0.json", + "yml": "xfree86-1.0.yml", + "html": "xfree86-1.0.html", + "text": "xfree86-1.0.LICENSE" + }, + { + "license_key": "xfree86-1.1", + "spdx_license_key": "XFree86-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "xfree86-1.1.json", + "yml": "xfree86-1.1.yml", + "html": "xfree86-1.1.html", + "text": "xfree86-1.1.LICENSE" + }, + { + "license_key": "xilinx-2016", + "spdx_license_key": "LicenseRef-scancode-xilinx-2016", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "xilinx-2016.json", + "yml": "xilinx-2016.yml", + "html": "xilinx-2016.html", + "text": "xilinx-2016.LICENSE" + }, + { + "license_key": "xinetd", + "spdx_license_key": "xinetd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "xinetd.json", + "yml": "xinetd.yml", + "html": "xinetd.html", + "text": "xinetd.LICENSE" + }, + { + "license_key": "xming", + "spdx_license_key": "LicenseRef-scancode-xming", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "xming.json", + "yml": "xming.yml", + "html": "xming.html", + "text": "xming.LICENSE" + }, + { + "license_key": "xmldb-1.0", + "spdx_license_key": "LicenseRef-scancode-xmldb-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "xmldb-1.0.json", + "yml": "xmldb-1.0.yml", + "html": "xmldb-1.0.html", + "text": "xmldb-1.0.LICENSE" + }, + { + "license_key": "xnet", + "spdx_license_key": "Xnet", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "xnet.json", + "yml": "xnet.yml", + "html": "xnet.html", + "text": "xnet.LICENSE" + }, + { + "license_key": "xskat", + "spdx_license_key": "XSkat", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "xskat.json", + "yml": "xskat.yml", + "html": "xskat.html", + "text": "xskat.LICENSE" + }, + { + "license_key": "xxd", + "spdx_license_key": "LicenseRef-scancode-xxd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "xxd.json", + "yml": "xxd.yml", + "html": "xxd.html", + "text": "xxd.LICENSE" + }, + { + "license_key": "yahoo-browserplus-eula", + "spdx_license_key": "LicenseRef-scancode-yahoo-browserplus-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "yahoo-browserplus-eula.json", + "yml": "yahoo-browserplus-eula.yml", + "html": "yahoo-browserplus-eula.html", + "text": "yahoo-browserplus-eula.LICENSE" + }, + { + "license_key": "yahoo-messenger-eula", + "spdx_license_key": "LicenseRef-scancode-yahoo-messenger-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "yahoo-messenger-eula.json", + "yml": "yahoo-messenger-eula.yml", + "html": "yahoo-messenger-eula.html", + "text": "yahoo-messenger-eula.LICENSE" + }, + { + "license_key": "yensdesign", + "spdx_license_key": "LicenseRef-scancode-yensdesign", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "yensdesign.json", + "yml": "yensdesign.yml", + "html": "yensdesign.html", + "text": "yensdesign.LICENSE" + }, + { + "license_key": "yolo-1.0", + "spdx_license_key": "LicenseRef-scancode-yolo-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "yolo-1.0.json", + "yml": "yolo-1.0.yml", + "html": "yolo-1.0.html", + "text": "yolo-1.0.LICENSE" + }, + { + "license_key": "yolo-2.0", + "spdx_license_key": "LicenseRef-scancode-yolo-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "yolo-2.0.json", + "yml": "yolo-2.0.yml", + "html": "yolo-2.0.html", + "text": "yolo-2.0.LICENSE" + }, + { + "license_key": "ypl-1.0", + "spdx_license_key": "YPL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ypl-1.0.json", + "yml": "ypl-1.0.yml", + "html": "ypl-1.0.html", + "text": "ypl-1.0.LICENSE" + }, + { + "license_key": "ypl-1.1", + "spdx_license_key": "YPL-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ypl-1.1.json", + "yml": "ypl-1.1.yml", + "html": "ypl-1.1.html", + "text": "ypl-1.1.LICENSE" + }, + { + "license_key": "zapatec-calendar", + "spdx_license_key": "LicenseRef-scancode-zapatec-calendar", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "zapatec-calendar.json", + "yml": "zapatec-calendar.yml", + "html": "zapatec-calendar.html", + "text": "zapatec-calendar.LICENSE" + }, + { + "license_key": "zed", + "spdx_license_key": "Zed", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "zed.json", + "yml": "zed.yml", + "html": "zed.html", + "text": "zed.LICENSE" + }, + { + "license_key": "zend-2.0", + "spdx_license_key": "Zend-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "zend-2.0.json", + "yml": "zend-2.0.yml", + "html": "zend-2.0.html", + "text": "zend-2.0.LICENSE" + }, + { + "license_key": "zeromq-exception-lgpl-3.0", + "spdx_license_key": "LicenseRef-scancode-zeromq-exception-lgpl-3.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "zeromq-exception-lgpl-3.0.json", + "yml": "zeromq-exception-lgpl-3.0.yml", + "html": "zeromq-exception-lgpl-3.0.html", + "text": "zeromq-exception-lgpl-3.0.LICENSE" + }, + { + "license_key": "zeusbench", + "spdx_license_key": "LicenseRef-scancode-zeusbench", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "zeusbench.json", + "yml": "zeusbench.yml", + "html": "zeusbench.html", + "text": "zeusbench.LICENSE" + }, + { + "license_key": "zhorn-stickies", + "spdx_license_key": "LicenseRef-scancode-zhorn-stickies", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "zhorn-stickies.json", + "yml": "zhorn-stickies.yml", + "html": "zhorn-stickies.html", + "text": "zhorn-stickies.LICENSE" + }, + { + "license_key": "zimbra-1.3", + "spdx_license_key": "Zimbra-1.3", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "zimbra-1.3.json", + "yml": "zimbra-1.3.yml", + "html": "zimbra-1.3.html", + "text": "zimbra-1.3.LICENSE" + }, + { + "license_key": "zimbra-1.4", + "spdx_license_key": "Zimbra-1.4", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "zimbra-1.4.json", + "yml": "zimbra-1.4.yml", + "html": "zimbra-1.4.html", + "text": "zimbra-1.4.LICENSE" + }, + { + "license_key": "zipeg", + "spdx_license_key": "LicenseRef-scancode-zipeg", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "zipeg.json", + "yml": "zipeg.yml", + "html": "zipeg.html", + "text": "zipeg.LICENSE" + }, + { + "license_key": "ziplist5-geocode-duplication-addendum", + "spdx_license_key": "LicenseRef-scancode-ziplist5-geocode-duplication-addendum", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ziplist5-geocode-duplication-addendum.json", + "yml": "ziplist5-geocode-duplication-addendum.yml", + "html": "ziplist5-geocode-duplication-addendum.html", + "text": "ziplist5-geocode-duplication-addendum.LICENSE" + }, + { + "license_key": "ziplist5-geocode-end-user-enterprise", + "spdx_license_key": "LicenseRef-scancode-ziplist5-geocode-end-user-enterprise", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ziplist5-geocode-end-user-enterprise.json", + "yml": "ziplist5-geocode-end-user-enterprise.yml", + "html": "ziplist5-geocode-end-user-enterprise.html", + "text": "ziplist5-geocode-end-user-enterprise.LICENSE" + }, + { + "license_key": "ziplist5-geocode-end-user-workstation", + "spdx_license_key": "LicenseRef-scancode-ziplist5-geocode-end-user-workstation", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ziplist5-geocode-end-user-workstation.json", + "yml": "ziplist5-geocode-end-user-workstation.yml", + "html": "ziplist5-geocode-end-user-workstation.html", + "text": "ziplist5-geocode-end-user-workstation.LICENSE" + }, + { + "license_key": "zlib-acknowledgement", + "spdx_license_key": "zlib-acknowledgement", + "other_spdx_license_keys": [ + "Nunit" + ], + "is_exception": false, + "is_deprecated": false, + "json": "zlib-acknowledgement.json", + "yml": "zlib-acknowledgement.yml", + "html": "zlib-acknowledgement.html", + "text": "zlib-acknowledgement.LICENSE" + }, + { + "license_key": "zlib", + "spdx_license_key": "Zlib", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "zlib.json", + "yml": "zlib.yml", + "html": "zlib.html", + "text": "zlib.LICENSE" + }, + { + "license_key": "zpl-1.0", + "spdx_license_key": "LicenseRef-scancode-zpl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "zpl-1.0.json", + "yml": "zpl-1.0.yml", + "html": "zpl-1.0.html", + "text": "zpl-1.0.LICENSE" + }, + { + "license_key": "zpl-1.1", + "spdx_license_key": "ZPL-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "zpl-1.1.json", + "yml": "zpl-1.1.yml", + "html": "zpl-1.1.html", + "text": "zpl-1.1.LICENSE" + }, + { + "license_key": "zpl-2.0", + "spdx_license_key": "ZPL-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "zpl-2.0.json", + "yml": "zpl-2.0.yml", + "html": "zpl-2.0.html", + "text": "zpl-2.0.LICENSE" + }, + { + "license_key": "zpl-2.1", + "spdx_license_key": "ZPL-2.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "zpl-2.1.json", + "yml": "zpl-2.1.yml", + "html": "zpl-2.1.html", + "text": "zpl-2.1.LICENSE" + }, + { + "license_key": "zsh", + "spdx_license_key": "LicenseRef-scancode-zsh", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "zsh.json", + "yml": "zsh.yml", + "html": "zsh.html", + "text": "zsh.LICENSE" + }, + { + "license_key": "zuora-software", + "spdx_license_key": "LicenseRef-scancode-zuora-software", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "zuora-software.json", + "yml": "zuora-software.yml", + "html": "zuora-software.html", + "text": "zuora-software.LICENSE" + }, + { + "license_key": "zveno-research", + "spdx_license_key": "LicenseRef-scancode-zveno-research", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "zveno-research.json", + "yml": "zveno-research.yml", + "html": "zveno-research.html", + "text": "zveno-research.LICENSE" + } +] \ No newline at end of file diff --git a/tests/data/test_license_key_index.json b/tests/data/test_license_key_index.json new file mode 100644 index 0000000..f8a7ec4 --- /dev/null +++ b/tests/data/test_license_key_index.json @@ -0,0 +1,43 @@ +[ + { + "license_key": "389-exception", + "spdx_license_key": "389-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "json": "389-exception.json", + "yml": "389-exception.yml", + "html": "389-exception.html", + "text": "389-exception.LICENSE" + }, + { + "license_key": "3com-microcode", + "spdx_license_key": "LicenseRef-scancode-3com-microcode", + "other_spdx_license_keys": [], + "is_exception": false, + "json": "3com-microcode.json", + "yml": "3com-microcode.yml", + "html": "3com-microcode.html", + "text": "3com-microcode.LICENSE" + }, + { + "license_key": "3dslicer-1.0", + "spdx_license_key": "LicenseRef-scancode-3dslicer-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "json": "3dslicer-1.0.json", + "yml": "3dslicer-1.0.yml", + "html": "3dslicer-1.0.html", + "text": "3dslicer-1.0.LICENSE" + }, + { + "license_key": "aladdin-md5", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "aladdin-md5.json", + "yml": "aladdin-md5.yml", + "html": "aladdin-md5.html", + "text": "aladdin-md5.LICENSE" + } +] \ No newline at end of file diff --git a/tests/test_license_expression.py b/tests/test_license_expression.py index 62cc2fb..0b09340 100644 --- a/tests/test_license_expression.py +++ b/tests/test_license_expression.py @@ -5,11 +5,14 @@ # See https://github.com/nexB/license-expression for support or download. # See https://aboutcode.org for more information about nexB OSS projects. # - +import json +import pathlib import sys from collections import namedtuple from unittest import TestCase -from unittest.case import expectedFailure +from os.path import abspath +from os.path import join +from os.path import dirname from boolean.boolean import PARSE_UNBALANCED_CLOSING_PARENS from boolean.boolean import PARSE_INVALID_SYMBOL_SEQUENCE @@ -39,6 +42,10 @@ from license_expression import TOKEN_RPAR from license_expression import TOKEN_SYMBOL from license_expression import TOKEN_WITH +from license_expression import build_licensing +from license_expression import build_spdx_licensing +from license_expression import get_license_index +from license_expression import load_licensing_from_license_index def _parse_error_as_dict(pe): @@ -2219,3 +2226,139 @@ def test_tokenize_or_or(self): ] assert expected == results + +class LicensingValidateTest(TestCase): + licensing = Licensing( + [ + LicenseSymbol(key='GPL-2.0-or-later', is_exception=False), + LicenseSymbol(key='MIT', is_exception=False), + LicenseSymbol(key='Apache-2.0', is_exception=False), + LicenseSymbol(key='WxWindows-exception-3.1', is_exception=True), + ] + ) + + def test_validate_simple(self): + result = self.licensing.validate('GPL-2.0-or-later AND MIT') + assert result.original_expression == 'GPL-2.0-or-later AND MIT' + assert result.normalized_expression == 'GPL-2.0-or-later AND MIT' + assert result.errors == [] + assert result.invalid_symbols == [] + + def test_validation_invalid_license_key(self): + result = self.licensing.validate('cool-license') + assert result.original_expression == 'cool-license' + assert not result.normalized_expression + assert result.errors == ['Unknown license key(s): cool-license'] + assert result.invalid_symbols == ['cool-license'] + + def test_validate_exception(self): + result = self.licensing.validate('GPL-2.0-or-later WITH WxWindows-exception-3.1') + assert result.original_expression == 'GPL-2.0-or-later WITH WxWindows-exception-3.1' + assert result.normalized_expression == 'GPL-2.0-or-later WITH WxWindows-exception-3.1' + assert result.errors == [] + assert result.invalid_symbols == [] + + def test_validation_exception_with_choice(self): + result = self.licensing.validate('GPL-2.0-or-later WITH WxWindows-exception-3.1 OR MIT') + assert result.original_expression == 'GPL-2.0-or-later WITH WxWindows-exception-3.1 OR MIT' + assert result.normalized_expression == 'GPL-2.0-or-later WITH WxWindows-exception-3.1 OR MIT' + assert result.errors == [] + assert result.invalid_symbols == [] + + def test_validation_exception_as_regular_key(self): + result = self.licensing.validate('GPL-2.0-or-later AND WxWindows-exception-3.1') + assert result.original_expression == 'GPL-2.0-or-later AND WxWindows-exception-3.1' + assert not result.normalized_expression + assert result.errors == ['A license exception symbol can only be used as an exception in a "WITH exception" statement. for token: "WxWindows-exception-3.1" at position: 21'] + assert result.invalid_symbols == ['WxWindows-exception-3.1'] + + def test_validation_bad_syntax(self): + result = self.licensing.validate('Apache-2.0 + MIT') + assert result.original_expression == 'Apache-2.0 + MIT' + assert not result.normalized_expression + assert result.errors == ['Invalid symbols sequence such as (A B) for token: "+" at position: 11'] + assert result.invalid_symbols == ['+'] + + def test_validation_invalid_license_exception(self): + result = self.licensing.validate('Apache-2.0 WITH MIT') + assert result.original_expression == 'Apache-2.0 WITH MIT' + assert not result.normalized_expression + assert result.errors == ["A plain license symbol cannot be used as an exception in a \"WITH symbol\" statement. for token: \"MIT\" at position: 16"] + assert result.invalid_symbols == ['MIT'] + + def test_validation_invalid_license_exception_strict_false(self): + result = self.licensing.validate('Apache-2.0 WITH MIT', strict=False) + assert result.original_expression == 'Apache-2.0 WITH MIT' + assert result.normalized_expression == 'Apache-2.0 WITH MIT' + assert result.errors == [] + assert result.invalid_symbols == [] + + +class UtilTest(TestCase): + test_data_dir = join(dirname(__file__), 'data') + + def test_build_licensing(self): + test_license_index_location = join(self.test_data_dir, 'test_license_key_index.json') + with open(test_license_index_location) as f: + license_info = json.load(f) + lics = [ + { + 'key': l.get('license_key', ''), + 'is_exception': l.get('is_exception', ''), + } for l in license_info if l.get('spdx_license_key') + ] + syms = [LicenseSymbol(**l) for l in lics] + expected = Licensing(syms) + + test_license_index = get_license_index(license_index_location=test_license_index_location) + result = build_licensing(test_license_index) + + assert result.known_symbols == expected.known_symbols + assert result.known_symbols_lowercase == expected.known_symbols_lowercase + # Ensure deprecated licenses are not loaded + assert 'aladdin-md5' not in result.known_symbols + assert 'aladdin-md5' not in result.known_symbols_lowercase + + def test_build_spdx_licensing(self): + test_license_index_location = join(self.test_data_dir, 'test_license_key_index.json') + with open(test_license_index_location) as f: + license_info = json.load(f) + lics = [ + { + 'key': l.get('spdx_license_key', ''), + 'aliases': l.get('other_spdx_license_keys', ''), + 'is_exception': l.get('is_exception', ''), + } for l in license_info if l.get('spdx_license_key') + ] + syms = [LicenseSymbol(**l) for l in lics] + expected = Licensing(syms) + + test_license_index = get_license_index(license_index_location=test_license_index_location) + result = build_spdx_licensing(test_license_index) + + assert result.known_symbols == expected.known_symbols + assert result.known_symbols_lowercase == expected.known_symbols_lowercase + # Ensure deprecated licenses are not loaded + assert 'aladdin-md5' not in result.known_symbols + assert 'aladdin-md5' not in result.known_symbols_lowercase + + def test_get_license_key_info(self): + test_license_index_location = join(self.test_data_dir, 'test_license_key_index.json') + with open(test_license_index_location) as f: + expected = json.load(f) + result = get_license_index(test_license_index_location) + assert expected == result + + def test_get_license_key_info_vendored(self): + curr_dir = dirname(abspath(__file__)) + parent_dir = pathlib.Path(curr_dir).parent + vendored_license_key_index_location = parent_dir.joinpath( + 'src', + 'license_expression', + 'data', + 'scancode-licensedb-index.json' + ) + with open(vendored_license_key_index_location) as f: + expected = json.load(f) + result = get_license_index() + assert expected == result