changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "count": {
+ "description": "Number of licenses in filtered results",
+ "type": "integer"
+ },
+ "licenseListVersion": {
+ "description": "Version of the SPDX license list",
+ "type": "string"
+ },
+ "licenses": {
+ "items": {
+ "properties": {
+ "isDeprecatedLicenseId": {
+ "description": "Whether license is deprecated",
+ "type": "boolean"
+ },
+ "isFsfLibre": {
+ "description": "Whether FSF Free/Libre",
+ "type": "boolean"
+ },
+ "isOsiApproved": {
+ "description": "Whether OSI approved",
+ "type": "boolean"
+ },
+ "licenseId": {
+ "description": "SPDX license identifier",
+ "type": "string"
+ },
+ "name": {
+ "description": "Full license name",
+ "type": "string"
+ },
+ "reference": {
+ "description": "Reference URL for the license",
+ "type": "string"
+ }
+ },
+ "required": [
+ "licenseId",
+ "name",
+ "isOsiApproved",
+ "isFsfLibre",
+ "isDeprecatedLicenseId",
+ "reference"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "releaseDate": {
+ "description": "Release date of the license list",
+ "type": "string"
+ }
+ },
+ "required": [
+ "licenseListVersion",
+ "releaseDate",
+ "count",
+ "licenses"
+ ],
+ "type": "object"
+}