license

License Lookup

Returns ID, name, priority, URL, description, text, shortName and spdxIdentifier for a given license ID.

Request
query Parameters
licenseId
required
integer <int64>

ID of the license

Example: licenseId=1
header Parameters
Authorization
required
string
Default:

Bearer JWT Token

Example: Bearer JWT_TOKEN
Responses
200

OK

400

Bad request

500

Internal Server Error

get/license/lookup
Response samples
application/json
{
  • "id": 0,
  • "name": "string",
  • "priority": 0,
  • "url": "string",
  • "description": "string",
  • "text": "string",
  • "shortName": "string",
  • "spdxIdentifier": "string"
}

Create a Custom License

Creates a custom license.

Request
header Parameters
Authorization
required
string
Default:

Bearer JWT Token

Example: Bearer JWT_TOKEN
Request Body schema: application/json

To create a custom license the name, shortName and licenseText is required.

Allowable values for familyName(Optional) are: GNU LGPL 2.1 Style | Artistic License 1.0 Style | Proprietary Style | BSD 3-Clause Style | Apache 1.1 Style | CPL 1.0 Style | MIT Style | Public Domain Style | MPL 1.1 Style | MPL 1.0 Style | Academic Free License Style | Apache 2.0 Style | Sleepycat Style | EPL 1.0 Style | CDDL 1.0 Style | Commercial Style | GNU GPL 3 Style |GNU LGPL 2.0 Style | GNU LGPL 3.0 Style | GNU AGPL 3.0 Style | Ambiguous License Style | GNU GPL 2 Style | Artistic License 2.0 Style | BSD 2-Clause Style | GNU GPL 2 w/CPE Style | CDDL 1.1 Style | Apache 1.0 Style | BSD 4-Clause Style | GNU GPL 2+ Style | GNU GPL 3+ Style | GNU LGPL 2.1+ Style | GNU LGPL 3.0+ Style | GNU LGPL 2.0+ Style | MirOS Style | zlib Style | GNU GPL Style | GNU LGPL Style | GNU AGPL 3.0+ Style

name
required
string [ 0 .. 127 ] characters

name

shortName
required
string [ 0 .. 255 ] characters

shortName

licenseText
required
string [ 0 .. 16777215 ] characters

licenseText

priority
stringP1|P2|P3

priority

Enum: "P1" "P2" "P3"
url
string [ 0 .. 2400 ] characters (^https?:\/\/(www\.)?[-a-zA-Z0-9@:%._\+~#=]{2...

url

description
string [ 0 .. 65535 ] characters

description

familyName
string

familyName

Responses
201

Created

400

Bad Request

500

Internal Server Error

post/licenses
Request samples
application/json
{
  • "name": "General Public License",
  • "shortName": "GPL",
  • "licenseText": "License Text",
  • "priority": "P1 | P2 | P3 | default: P3",
  • "url": "https://abc.xyz",
  • "description": "License description",
  • "familyName": "License family"
}

License Lookup Based on Short Name

Returns id, name, priority, url, description, text and spdxIdentifier for a given shortName.

Request
path Parameters
shortName
required
string

Short name of the license

header Parameters
Authorization
required
string
Default:

Bearer JWT Token

Example: Bearer JWT_TOKEN
Responses
200

OK

400

Bad Request

404

Not Found

500

Internal Server Error

get/licenses/{shortName}
Response samples
application/json
{
  • "id": 0,
  • "name": "string",
  • "priority": 0,
  • "url": "string",
  • "description": "string",
  • "text": "string",
  • "shortName": "string",
  • "spdxIdentifier": "string"
}