licenses.json 207 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951
  1. {
  2. "licenseListVersion": "fafa781",
  3. "licenses": [
  4. {
  5. "reference": "https://spdx.org/licenses/eGenix.html",
  6. "isDeprecatedLicenseId": false,
  7. "detailsUrl": "https://spdx.org/licenses/eGenix.json",
  8. "referenceNumber": 0,
  9. "name": "eGenix.com Public License 1.1.0",
  10. "licenseId": "eGenix",
  11. "seeAlso": [
  12. "http://www.egenix.com/products/eGenix.com-Public-License-1.1.0.pdf",
  13. "https://fedoraproject.org/wiki/Licensing/eGenix.com_Public_License_1.1.0"
  14. ],
  15. "isOsiApproved": false
  16. },
  17. {
  18. "reference": "https://spdx.org/licenses/IPA.html",
  19. "isDeprecatedLicenseId": false,
  20. "detailsUrl": "https://spdx.org/licenses/IPA.json",
  21. "referenceNumber": 1,
  22. "name": "IPA Font License",
  23. "licenseId": "IPA",
  24. "seeAlso": [
  25. "https://opensource.org/licenses/IPA"
  26. ],
  27. "isOsiApproved": true,
  28. "isFsfLibre": true
  29. },
  30. {
  31. "reference": "https://spdx.org/licenses/OLDAP-1.1.html",
  32. "isDeprecatedLicenseId": false,
  33. "detailsUrl": "https://spdx.org/licenses/OLDAP-1.1.json",
  34. "referenceNumber": 2,
  35. "name": "Open LDAP Public License v1.1",
  36. "licenseId": "OLDAP-1.1",
  37. "seeAlso": [
  38. "http://www.openldap.org/devel/gitweb.cgi?p\u003dopenldap.git;a\u003dblob;f\u003dLICENSE;hb\u003d806557a5ad59804ef3a44d5abfbe91d706b0791f"
  39. ],
  40. "isOsiApproved": false
  41. },
  42. {
  43. "reference": "https://spdx.org/licenses/CC0-1.0.html",
  44. "isDeprecatedLicenseId": false,
  45. "detailsUrl": "https://spdx.org/licenses/CC0-1.0.json",
  46. "referenceNumber": 3,
  47. "name": "Creative Commons Zero v1.0 Universal",
  48. "licenseId": "CC0-1.0",
  49. "seeAlso": [
  50. "https://creativecommons.org/publicdomain/zero/1.0/legalcode"
  51. ],
  52. "isOsiApproved": false,
  53. "isFsfLibre": true
  54. },
  55. {
  56. "reference": "https://spdx.org/licenses/CDL-1.0.html",
  57. "isDeprecatedLicenseId": false,
  58. "detailsUrl": "https://spdx.org/licenses/CDL-1.0.json",
  59. "referenceNumber": 4,
  60. "name": "Common Documentation License 1.0",
  61. "licenseId": "CDL-1.0",
  62. "seeAlso": [
  63. "http://www.opensource.apple.com/cdl/",
  64. "https://fedoraproject.org/wiki/Licensing/Common_Documentation_License",
  65. "https://www.gnu.org/licenses/license-list.html#ACDL"
  66. ],
  67. "isOsiApproved": false
  68. },
  69. {
  70. "reference": "https://spdx.org/licenses/ANTLR-PD.html",
  71. "isDeprecatedLicenseId": false,
  72. "detailsUrl": "https://spdx.org/licenses/ANTLR-PD.json",
  73. "referenceNumber": 5,
  74. "name": "ANTLR Software Rights Notice",
  75. "licenseId": "ANTLR-PD",
  76. "seeAlso": [
  77. "http://www.antlr2.org/license.html"
  78. ],
  79. "isOsiApproved": false
  80. },
  81. {
  82. "reference": "https://spdx.org/licenses/NAIST-2003.html",
  83. "isDeprecatedLicenseId": false,
  84. "detailsUrl": "https://spdx.org/licenses/NAIST-2003.json",
  85. "referenceNumber": 6,
  86. "name": "Nara Institute of Science and Technology License (2003)",
  87. "licenseId": "NAIST-2003",
  88. "seeAlso": [
  89. "https://enterprise.dejacode.com/licenses/public/naist-2003/#license-text",
  90. "https://github.com/nodejs/node/blob/4a19cc8947b1bba2b2d27816ec3d0edf9b28e503/LICENSE#L343"
  91. ],
  92. "isOsiApproved": false
  93. },
  94. {
  95. "reference": "https://spdx.org/licenses/SISSL.html",
  96. "isDeprecatedLicenseId": false,
  97. "detailsUrl": "https://spdx.org/licenses/SISSL.json",
  98. "referenceNumber": 7,
  99. "name": "Sun Industry Standards Source License v1.1",
  100. "licenseId": "SISSL",
  101. "seeAlso": [
  102. "http://www.openoffice.org/licenses/sissl_license.html",
  103. "https://opensource.org/licenses/SISSL"
  104. ],
  105. "isOsiApproved": true,
  106. "isFsfLibre": true
  107. },
  108. {
  109. "reference": "https://spdx.org/licenses/TAPR-OHL-1.0.html",
  110. "isDeprecatedLicenseId": false,
  111. "detailsUrl": "https://spdx.org/licenses/TAPR-OHL-1.0.json",
  112. "referenceNumber": 8,
  113. "name": "TAPR Open Hardware License v1.0",
  114. "licenseId": "TAPR-OHL-1.0",
  115. "seeAlso": [
  116. "https://www.tapr.org/OHL"
  117. ],
  118. "isOsiApproved": false
  119. },
  120. {
  121. "reference": "https://spdx.org/licenses/CC-BY-NC-ND-2.5.html",
  122. "isDeprecatedLicenseId": false,
  123. "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-ND-2.5.json",
  124. "referenceNumber": 9,
  125. "name": "Creative Commons Attribution Non Commercial No Derivatives 2.5 Generic",
  126. "licenseId": "CC-BY-NC-ND-2.5",
  127. "seeAlso": [
  128. "https://creativecommons.org/licenses/by-nc-nd/2.5/legalcode"
  129. ],
  130. "isOsiApproved": false
  131. },
  132. {
  133. "reference": "https://spdx.org/licenses/Nokia.html",
  134. "isDeprecatedLicenseId": false,
  135. "detailsUrl": "https://spdx.org/licenses/Nokia.json",
  136. "referenceNumber": 10,
  137. "name": "Nokia Open Source License",
  138. "licenseId": "Nokia",
  139. "seeAlso": [
  140. "https://opensource.org/licenses/nokia"
  141. ],
  142. "isOsiApproved": true,
  143. "isFsfLibre": true
  144. },
  145. {
  146. "reference": "https://spdx.org/licenses/JPNIC.html",
  147. "isDeprecatedLicenseId": false,
  148. "detailsUrl": "https://spdx.org/licenses/JPNIC.json",
  149. "referenceNumber": 11,
  150. "name": "Japan Network Information Center License",
  151. "licenseId": "JPNIC",
  152. "seeAlso": [
  153. "https://gitlab.isc.org/isc-projects/bind9/blob/master/COPYRIGHT#L366"
  154. ],
  155. "isOsiApproved": false
  156. },
  157. {
  158. "reference": "https://spdx.org/licenses/MulanPSL-2.0.html",
  159. "isDeprecatedLicenseId": false,
  160. "detailsUrl": "https://spdx.org/licenses/MulanPSL-2.0.json",
  161. "referenceNumber": 12,
  162. "name": "Mulan Permissive Software License, Version 2",
  163. "licenseId": "MulanPSL-2.0",
  164. "seeAlso": [
  165. "https://license.coscl.org.cn/MulanPSL2/"
  166. ],
  167. "isOsiApproved": true
  168. },
  169. {
  170. "reference": "https://spdx.org/licenses/FreeBSD-DOC.html",
  171. "isDeprecatedLicenseId": false,
  172. "detailsUrl": "https://spdx.org/licenses/FreeBSD-DOC.json",
  173. "referenceNumber": 13,
  174. "name": "FreeBSD Documentation License",
  175. "licenseId": "FreeBSD-DOC",
  176. "seeAlso": [
  177. "https://www.freebsd.org/copyright/freebsd-doc-license/"
  178. ],
  179. "isOsiApproved": false
  180. },
  181. {
  182. "reference": "https://spdx.org/licenses/AGPL-3.0-only.html",
  183. "isDeprecatedLicenseId": false,
  184. "detailsUrl": "https://spdx.org/licenses/AGPL-3.0-only.json",
  185. "referenceNumber": 14,
  186. "name": "GNU Affero General Public License v3.0 only",
  187. "licenseId": "AGPL-3.0-only",
  188. "seeAlso": [
  189. "https://www.gnu.org/licenses/agpl.txt",
  190. "https://opensource.org/licenses/AGPL-3.0"
  191. ],
  192. "isOsiApproved": true,
  193. "isFsfLibre": true
  194. },
  195. {
  196. "reference": "https://spdx.org/licenses/NRL.html",
  197. "isDeprecatedLicenseId": false,
  198. "detailsUrl": "https://spdx.org/licenses/NRL.json",
  199. "referenceNumber": 15,
  200. "name": "NRL License",
  201. "licenseId": "NRL",
  202. "seeAlso": [
  203. "http://web.mit.edu/network/isakmp/nrllicense.html"
  204. ],
  205. "isOsiApproved": false
  206. },
  207. {
  208. "reference": "https://spdx.org/licenses/etalab-2.0.html",
  209. "isDeprecatedLicenseId": false,
  210. "detailsUrl": "https://spdx.org/licenses/etalab-2.0.json",
  211. "referenceNumber": 16,
  212. "name": "Etalab Open License 2.0",
  213. "licenseId": "etalab-2.0",
  214. "seeAlso": [
  215. "https://github.com/DISIC/politique-de-contribution-open-source/blob/master/LICENSE.pdf",
  216. "https://raw.githubusercontent.com/DISIC/politique-de-contribution-open-source/master/LICENSE"
  217. ],
  218. "isOsiApproved": false
  219. },
  220. {
  221. "reference": "https://spdx.org/licenses/GFDL-1.2-or-later.html",
  222. "isDeprecatedLicenseId": false,
  223. "detailsUrl": "https://spdx.org/licenses/GFDL-1.2-or-later.json",
  224. "referenceNumber": 17,
  225. "name": "GNU Free Documentation License v1.2 or later",
  226. "licenseId": "GFDL-1.2-or-later",
  227. "seeAlso": [
  228. "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt"
  229. ],
  230. "isOsiApproved": false,
  231. "isFsfLibre": true
  232. },
  233. {
  234. "reference": "https://spdx.org/licenses/MTLL.html",
  235. "isDeprecatedLicenseId": false,
  236. "detailsUrl": "https://spdx.org/licenses/MTLL.json",
  237. "referenceNumber": 18,
  238. "name": "Matrix Template Library License",
  239. "licenseId": "MTLL",
  240. "seeAlso": [
  241. "https://fedoraproject.org/wiki/Licensing/Matrix_Template_Library_License"
  242. ],
  243. "isOsiApproved": false
  244. },
  245. {
  246. "reference": "https://spdx.org/licenses/Sendmail.html",
  247. "isDeprecatedLicenseId": false,
  248. "detailsUrl": "https://spdx.org/licenses/Sendmail.json",
  249. "referenceNumber": 19,
  250. "name": "Sendmail License",
  251. "licenseId": "Sendmail",
  252. "seeAlso": [
  253. "http://www.sendmail.com/pdfs/open_source/sendmail_license.pdf",
  254. "https://web.archive.org/web/20160322142305/https://www.sendmail.com/pdfs/open_source/sendmail_license.pdf"
  255. ],
  256. "isOsiApproved": false
  257. },
  258. {
  259. "reference": "https://spdx.org/licenses/psfrag.html",
  260. "isDeprecatedLicenseId": false,
  261. "detailsUrl": "https://spdx.org/licenses/psfrag.json",
  262. "referenceNumber": 20,
  263. "name": "psfrag License",
  264. "licenseId": "psfrag",
  265. "seeAlso": [
  266. "https://fedoraproject.org/wiki/Licensing/psfrag"
  267. ],
  268. "isOsiApproved": false
  269. },
  270. {
  271. "reference": "https://spdx.org/licenses/Nunit.html",
  272. "isDeprecatedLicenseId": true,
  273. "detailsUrl": "https://spdx.org/licenses/Nunit.json",
  274. "referenceNumber": 21,
  275. "name": "Nunit License",
  276. "licenseId": "Nunit",
  277. "seeAlso": [
  278. "https://fedoraproject.org/wiki/Licensing/Nunit"
  279. ],
  280. "isOsiApproved": false
  281. },
  282. {
  283. "reference": "https://spdx.org/licenses/APSL-1.2.html",
  284. "isDeprecatedLicenseId": false,
  285. "detailsUrl": "https://spdx.org/licenses/APSL-1.2.json",
  286. "referenceNumber": 22,
  287. "name": "Apple Public Source License 1.2",
  288. "licenseId": "APSL-1.2",
  289. "seeAlso": [
  290. "http://www.samurajdata.se/opensource/mirror/licenses/apsl.php"
  291. ],
  292. "isOsiApproved": true
  293. },
  294. {
  295. "reference": "https://spdx.org/licenses/GFDL-1.3-invariants-only.html",
  296. "isDeprecatedLicenseId": false,
  297. "detailsUrl": "https://spdx.org/licenses/GFDL-1.3-invariants-only.json",
  298. "referenceNumber": 23,
  299. "name": "GNU Free Documentation License v1.3 only - invariants",
  300. "licenseId": "GFDL-1.3-invariants-only",
  301. "seeAlso": [
  302. "https://www.gnu.org/licenses/fdl-1.3.txt"
  303. ],
  304. "isOsiApproved": false
  305. },
  306. {
  307. "reference": "https://spdx.org/licenses/Xerox.html",
  308. "isDeprecatedLicenseId": false,
  309. "detailsUrl": "https://spdx.org/licenses/Xerox.json",
  310. "referenceNumber": 24,
  311. "name": "Xerox License",
  312. "licenseId": "Xerox",
  313. "seeAlso": [
  314. "https://fedoraproject.org/wiki/Licensing/Xerox"
  315. ],
  316. "isOsiApproved": false
  317. },
  318. {
  319. "reference": "https://spdx.org/licenses/GFDL-1.3-no-invariants-only.html",
  320. "isDeprecatedLicenseId": false,
  321. "detailsUrl": "https://spdx.org/licenses/GFDL-1.3-no-invariants-only.json",
  322. "referenceNumber": 25,
  323. "name": "GNU Free Documentation License v1.3 only - no invariants",
  324. "licenseId": "GFDL-1.3-no-invariants-only",
  325. "seeAlso": [
  326. "https://www.gnu.org/licenses/fdl-1.3.txt"
  327. ],
  328. "isOsiApproved": false
  329. },
  330. {
  331. "reference": "https://spdx.org/licenses/CC-BY-ND-2.0.html",
  332. "isDeprecatedLicenseId": false,
  333. "detailsUrl": "https://spdx.org/licenses/CC-BY-ND-2.0.json",
  334. "referenceNumber": 26,
  335. "name": "Creative Commons Attribution No Derivatives 2.0 Generic",
  336. "licenseId": "CC-BY-ND-2.0",
  337. "seeAlso": [
  338. "https://creativecommons.org/licenses/by-nd/2.0/legalcode"
  339. ],
  340. "isOsiApproved": false
  341. },
  342. {
  343. "reference": "https://spdx.org/licenses/Zed.html",
  344. "isDeprecatedLicenseId": false,
  345. "detailsUrl": "https://spdx.org/licenses/Zed.json",
  346. "referenceNumber": 27,
  347. "name": "Zed License",
  348. "licenseId": "Zed",
  349. "seeAlso": [
  350. "https://fedoraproject.org/wiki/Licensing/Zed"
  351. ],
  352. "isOsiApproved": false
  353. },
  354. {
  355. "reference": "https://spdx.org/licenses/Artistic-2.0.html",
  356. "isDeprecatedLicenseId": false,
  357. "detailsUrl": "https://spdx.org/licenses/Artistic-2.0.json",
  358. "referenceNumber": 28,
  359. "name": "Artistic License 2.0",
  360. "licenseId": "Artistic-2.0",
  361. "seeAlso": [
  362. "http://www.perlfoundation.org/artistic_license_2_0",
  363. "https://www.perlfoundation.org/artistic-license-20.html",
  364. "https://opensource.org/licenses/artistic-license-2.0"
  365. ],
  366. "isOsiApproved": true,
  367. "isFsfLibre": true
  368. },
  369. {
  370. "reference": "https://spdx.org/licenses/LPL-1.0.html",
  371. "isDeprecatedLicenseId": false,
  372. "detailsUrl": "https://spdx.org/licenses/LPL-1.0.json",
  373. "referenceNumber": 29,
  374. "name": "Lucent Public License Version 1.0",
  375. "licenseId": "LPL-1.0",
  376. "seeAlso": [
  377. "https://opensource.org/licenses/LPL-1.0"
  378. ],
  379. "isOsiApproved": true
  380. },
  381. {
  382. "reference": "https://spdx.org/licenses/CC-BY-SA-2.0.html",
  383. "isDeprecatedLicenseId": false,
  384. "detailsUrl": "https://spdx.org/licenses/CC-BY-SA-2.0.json",
  385. "referenceNumber": 30,
  386. "name": "Creative Commons Attribution Share Alike 2.0 Generic",
  387. "licenseId": "CC-BY-SA-2.0",
  388. "seeAlso": [
  389. "https://creativecommons.org/licenses/by-sa/2.0/legalcode"
  390. ],
  391. "isOsiApproved": false
  392. },
  393. {
  394. "reference": "https://spdx.org/licenses/CDLA-Permissive-1.0.html",
  395. "isDeprecatedLicenseId": false,
  396. "detailsUrl": "https://spdx.org/licenses/CDLA-Permissive-1.0.json",
  397. "referenceNumber": 31,
  398. "name": "Community Data License Agreement Permissive 1.0",
  399. "licenseId": "CDLA-Permissive-1.0",
  400. "seeAlso": [
  401. "https://cdla.io/permissive-1-0"
  402. ],
  403. "isOsiApproved": false
  404. },
  405. {
  406. "reference": "https://spdx.org/licenses/Libpng.html",
  407. "isDeprecatedLicenseId": false,
  408. "detailsUrl": "https://spdx.org/licenses/Libpng.json",
  409. "referenceNumber": 32,
  410. "name": "libpng License",
  411. "licenseId": "Libpng",
  412. "seeAlso": [
  413. "http://www.libpng.org/pub/png/src/libpng-LICENSE.txt"
  414. ],
  415. "isOsiApproved": false
  416. },
  417. {
  418. "reference": "https://spdx.org/licenses/MIT-feh.html",
  419. "isDeprecatedLicenseId": false,
  420. "detailsUrl": "https://spdx.org/licenses/MIT-feh.json",
  421. "referenceNumber": 33,
  422. "name": "feh License",
  423. "licenseId": "MIT-feh",
  424. "seeAlso": [
  425. "https://fedoraproject.org/wiki/Licensing/MIT#feh"
  426. ],
  427. "isOsiApproved": false
  428. },
  429. {
  430. "reference": "https://spdx.org/licenses/Wsuipa.html",
  431. "isDeprecatedLicenseId": false,
  432. "detailsUrl": "https://spdx.org/licenses/Wsuipa.json",
  433. "referenceNumber": 34,
  434. "name": "Wsuipa License",
  435. "licenseId": "Wsuipa",
  436. "seeAlso": [
  437. "https://fedoraproject.org/wiki/Licensing/Wsuipa"
  438. ],
  439. "isOsiApproved": false
  440. },
  441. {
  442. "reference": "https://spdx.org/licenses/IJG.html",
  443. "isDeprecatedLicenseId": false,
  444. "detailsUrl": "https://spdx.org/licenses/IJG.json",
  445. "referenceNumber": 35,
  446. "name": "Independent JPEG Group License",
  447. "licenseId": "IJG",
  448. "seeAlso": [
  449. "http://dev.w3.org/cvsweb/Amaya/libjpeg/Attic/README?rev\u003d1.2"
  450. ],
  451. "isOsiApproved": false,
  452. "isFsfLibre": true
  453. },
  454. {
  455. "reference": "https://spdx.org/licenses/OML.html",
  456. "isDeprecatedLicenseId": false,
  457. "detailsUrl": "https://spdx.org/licenses/OML.json",
  458. "referenceNumber": 36,
  459. "name": "Open Market License",
  460. "licenseId": "OML",
  461. "seeAlso": [
  462. "https://fedoraproject.org/wiki/Licensing/Open_Market_License"
  463. ],
  464. "isOsiApproved": false
  465. },
  466. {
  467. "reference": "https://spdx.org/licenses/OLDAP-2.3.html",
  468. "isDeprecatedLicenseId": false,
  469. "detailsUrl": "https://spdx.org/licenses/OLDAP-2.3.json",
  470. "referenceNumber": 37,
  471. "name": "Open LDAP Public License v2.3",
  472. "licenseId": "OLDAP-2.3",
  473. "seeAlso": [
  474. "http://www.openldap.org/devel/gitweb.cgi?p\u003dopenldap.git;a\u003dblob;f\u003dLICENSE;hb\u003dd32cf54a32d581ab475d23c810b0a7fbaf8d63c3"
  475. ],
  476. "isOsiApproved": false,
  477. "isFsfLibre": true
  478. },
  479. {
  480. "reference": "https://spdx.org/licenses/ImageMagick.html",
  481. "isDeprecatedLicenseId": false,
  482. "detailsUrl": "https://spdx.org/licenses/ImageMagick.json",
  483. "referenceNumber": 38,
  484. "name": "ImageMagick License",
  485. "licenseId": "ImageMagick",
  486. "seeAlso": [
  487. "http://www.imagemagick.org/script/license.php"
  488. ],
  489. "isOsiApproved": false
  490. },
  491. {
  492. "reference": "https://spdx.org/licenses/TCP-wrappers.html",
  493. "isDeprecatedLicenseId": false,
  494. "detailsUrl": "https://spdx.org/licenses/TCP-wrappers.json",
  495. "referenceNumber": 39,
  496. "name": "TCP Wrappers License",
  497. "licenseId": "TCP-wrappers",
  498. "seeAlso": [
  499. "http://rc.quest.com/topics/openssh/license.php#tcpwrappers"
  500. ],
  501. "isOsiApproved": false
  502. },
  503. {
  504. "reference": "https://spdx.org/licenses/BSD-4-Clause-Shortened.html",
  505. "isDeprecatedLicenseId": false,
  506. "detailsUrl": "https://spdx.org/licenses/BSD-4-Clause-Shortened.json",
  507. "referenceNumber": 40,
  508. "name": "BSD 4 Clause Shortened",
  509. "licenseId": "BSD-4-Clause-Shortened",
  510. "seeAlso": [
  511. "https://metadata.ftp-master.debian.org/changelogs//main/a/arpwatch/arpwatch_2.1a15-7_copyright"
  512. ],
  513. "isOsiApproved": false
  514. },
  515. {
  516. "reference": "https://spdx.org/licenses/CNRI-Python-GPL-Compatible.html",
  517. "isDeprecatedLicenseId": false,
  518. "detailsUrl": "https://spdx.org/licenses/CNRI-Python-GPL-Compatible.json",
  519. "referenceNumber": 41,
  520. "name": "CNRI Python Open Source GPL Compatible License Agreement",
  521. "licenseId": "CNRI-Python-GPL-Compatible",
  522. "seeAlso": [
  523. "http://www.python.org/download/releases/1.6.1/download_win/"
  524. ],
  525. "isOsiApproved": false
  526. },
  527. {
  528. "reference": "https://spdx.org/licenses/BUSL-1.1.html",
  529. "isDeprecatedLicenseId": false,
  530. "detailsUrl": "https://spdx.org/licenses/BUSL-1.1.json",
  531. "referenceNumber": 42,
  532. "name": "Business Source License 1.1",
  533. "licenseId": "BUSL-1.1",
  534. "seeAlso": [
  535. "https://mariadb.com/bsl11/"
  536. ],
  537. "isOsiApproved": false
  538. },
  539. {
  540. "reference": "https://spdx.org/licenses/CUA-OPL-1.0.html",
  541. "isDeprecatedLicenseId": false,
  542. "detailsUrl": "https://spdx.org/licenses/CUA-OPL-1.0.json",
  543. "referenceNumber": 43,
  544. "name": "CUA Office Public License v1.0",
  545. "licenseId": "CUA-OPL-1.0",
  546. "seeAlso": [
  547. "https://opensource.org/licenses/CUA-OPL-1.0"
  548. ],
  549. "isOsiApproved": true
  550. },
  551. {
  552. "reference": "https://spdx.org/licenses/Afmparse.html",
  553. "isDeprecatedLicenseId": false,
  554. "detailsUrl": "https://spdx.org/licenses/Afmparse.json",
  555. "referenceNumber": 44,
  556. "name": "Afmparse License",
  557. "licenseId": "Afmparse",
  558. "seeAlso": [
  559. "https://fedoraproject.org/wiki/Licensing/Afmparse"
  560. ],
  561. "isOsiApproved": false
  562. },
  563. {
  564. "reference": "https://spdx.org/licenses/LiLiQ-Rplus-1.1.html",
  565. "isDeprecatedLicenseId": false,
  566. "detailsUrl": "https://spdx.org/licenses/LiLiQ-Rplus-1.1.json",
  567. "referenceNumber": 45,
  568. "name": "Licence Libre du Québec – Réciprocité forte version 1.1",
  569. "licenseId": "LiLiQ-Rplus-1.1",
  570. "seeAlso": [
  571. "https://www.forge.gouv.qc.ca/participez/licence-logicielle/licence-libre-du-quebec-liliq-en-francais/licence-libre-du-quebec-reciprocite-forte-liliq-r-v1-1/",
  572. "http://opensource.org/licenses/LiLiQ-Rplus-1.1"
  573. ],
  574. "isOsiApproved": true
  575. },
  576. {
  577. "reference": "https://spdx.org/licenses/CC-BY-NC-ND-1.0.html",
  578. "isDeprecatedLicenseId": false,
  579. "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-ND-1.0.json",
  580. "referenceNumber": 46,
  581. "name": "Creative Commons Attribution Non Commercial No Derivatives 1.0 Generic",
  582. "licenseId": "CC-BY-NC-ND-1.0",
  583. "seeAlso": [
  584. "https://creativecommons.org/licenses/by-nd-nc/1.0/legalcode"
  585. ],
  586. "isOsiApproved": false
  587. },
  588. {
  589. "reference": "https://spdx.org/licenses/Bahyph.html",
  590. "isDeprecatedLicenseId": false,
  591. "detailsUrl": "https://spdx.org/licenses/Bahyph.json",
  592. "referenceNumber": 47,
  593. "name": "Bahyph License",
  594. "licenseId": "Bahyph",
  595. "seeAlso": [
  596. "https://fedoraproject.org/wiki/Licensing/Bahyph"
  597. ],
  598. "isOsiApproved": false
  599. },
  600. {
  601. "reference": "https://spdx.org/licenses/Unicode-DFS-2015.html",
  602. "isDeprecatedLicenseId": false,
  603. "detailsUrl": "https://spdx.org/licenses/Unicode-DFS-2015.json",
  604. "referenceNumber": 48,
  605. "name": "Unicode License Agreement - Data Files and Software (2015)",
  606. "licenseId": "Unicode-DFS-2015",
  607. "seeAlso": [
  608. "https://web.archive.org/web/20151224134844/http://unicode.org/copyright.html"
  609. ],
  610. "isOsiApproved": false
  611. },
  612. {
  613. "reference": "https://spdx.org/licenses/Latex2e.html",
  614. "isDeprecatedLicenseId": false,
  615. "detailsUrl": "https://spdx.org/licenses/Latex2e.json",
  616. "referenceNumber": 49,
  617. "name": "Latex2e License",
  618. "licenseId": "Latex2e",
  619. "seeAlso": [
  620. "https://fedoraproject.org/wiki/Licensing/Latex2e"
  621. ],
  622. "isOsiApproved": false
  623. },
  624. {
  625. "reference": "https://spdx.org/licenses/GPL-1.0-only.html",
  626. "isDeprecatedLicenseId": false,
  627. "detailsUrl": "https://spdx.org/licenses/GPL-1.0-only.json",
  628. "referenceNumber": 50,
  629. "name": "GNU General Public License v1.0 only",
  630. "licenseId": "GPL-1.0-only",
  631. "seeAlso": [
  632. "https://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html"
  633. ],
  634. "isOsiApproved": false
  635. },
  636. {
  637. "reference": "https://spdx.org/licenses/ZPL-2.0.html",
  638. "isDeprecatedLicenseId": false,
  639. "detailsUrl": "https://spdx.org/licenses/ZPL-2.0.json",
  640. "referenceNumber": 51,
  641. "name": "Zope Public License 2.0",
  642. "licenseId": "ZPL-2.0",
  643. "seeAlso": [
  644. "http://old.zope.org/Resources/License/ZPL-2.0",
  645. "https://opensource.org/licenses/ZPL-2.0"
  646. ],
  647. "isOsiApproved": true,
  648. "isFsfLibre": true
  649. },
  650. {
  651. "reference": "https://spdx.org/licenses/NetCDF.html",
  652. "isDeprecatedLicenseId": false,
  653. "detailsUrl": "https://spdx.org/licenses/NetCDF.json",
  654. "referenceNumber": 52,
  655. "name": "NetCDF license",
  656. "licenseId": "NetCDF",
  657. "seeAlso": [
  658. "http://www.unidata.ucar.edu/software/netcdf/copyright.html"
  659. ],
  660. "isOsiApproved": false
  661. },
  662. {
  663. "reference": "https://spdx.org/licenses/xinetd.html",
  664. "isDeprecatedLicenseId": false,
  665. "detailsUrl": "https://spdx.org/licenses/xinetd.json",
  666. "referenceNumber": 53,
  667. "name": "xinetd License",
  668. "licenseId": "xinetd",
  669. "seeAlso": [
  670. "https://fedoraproject.org/wiki/Licensing/Xinetd_License"
  671. ],
  672. "isOsiApproved": false,
  673. "isFsfLibre": true
  674. },
  675. {
  676. "reference": "https://spdx.org/licenses/PHP-3.01.html",
  677. "isDeprecatedLicenseId": false,
  678. "detailsUrl": "https://spdx.org/licenses/PHP-3.01.json",
  679. "referenceNumber": 54,
  680. "name": "PHP License v3.01",
  681. "licenseId": "PHP-3.01",
  682. "seeAlso": [
  683. "http://www.php.net/license/3_01.txt"
  684. ],
  685. "isOsiApproved": true,
  686. "isFsfLibre": true
  687. },
  688. {
  689. "reference": "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License.html",
  690. "isDeprecatedLicenseId": false,
  691. "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License.json",
  692. "referenceNumber": 55,
  693. "name": "BSD 3-Clause No Nuclear License",
  694. "licenseId": "BSD-3-Clause-No-Nuclear-License",
  695. "seeAlso": [
  696. "http://download.oracle.com/otn-pub/java/licenses/bsd.txt?AuthParam\u003d1467140197_43d516ce1776bd08a58235a7785be1cc"
  697. ],
  698. "isOsiApproved": false
  699. },
  700. {
  701. "reference": "https://spdx.org/licenses/NPOSL-3.0.html",
  702. "isDeprecatedLicenseId": false,
  703. "detailsUrl": "https://spdx.org/licenses/NPOSL-3.0.json",
  704. "referenceNumber": 56,
  705. "name": "Non-Profit Open Software License 3.0",
  706. "licenseId": "NPOSL-3.0",
  707. "seeAlso": [
  708. "https://opensource.org/licenses/NOSL3.0"
  709. ],
  710. "isOsiApproved": true
  711. },
  712. {
  713. "reference": "https://spdx.org/licenses/Mup.html",
  714. "isDeprecatedLicenseId": false,
  715. "detailsUrl": "https://spdx.org/licenses/Mup.json",
  716. "referenceNumber": 57,
  717. "name": "Mup License",
  718. "licenseId": "Mup",
  719. "seeAlso": [
  720. "https://fedoraproject.org/wiki/Licensing/Mup"
  721. ],
  722. "isOsiApproved": false
  723. },
  724. {
  725. "reference": "https://spdx.org/licenses/GFDL-1.2-only.html",
  726. "isDeprecatedLicenseId": false,
  727. "detailsUrl": "https://spdx.org/licenses/GFDL-1.2-only.json",
  728. "referenceNumber": 58,
  729. "name": "GNU Free Documentation License v1.2 only",
  730. "licenseId": "GFDL-1.2-only",
  731. "seeAlso": [
  732. "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt"
  733. ],
  734. "isOsiApproved": false,
  735. "isFsfLibre": true
  736. },
  737. {
  738. "reference": "https://spdx.org/licenses/CC-BY-NC-ND-3.0-IGO.html",
  739. "isDeprecatedLicenseId": false,
  740. "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-ND-3.0-IGO.json",
  741. "referenceNumber": 59,
  742. "name": "Creative Commons Attribution Non Commercial No Derivatives 3.0 IGO",
  743. "licenseId": "CC-BY-NC-ND-3.0-IGO",
  744. "seeAlso": [
  745. "https://creativecommons.org/licenses/by-nc-nd/3.0/igo/legalcode"
  746. ],
  747. "isOsiApproved": false
  748. },
  749. {
  750. "reference": "https://spdx.org/licenses/OGDL-Taiwan-1.0.html",
  751. "isDeprecatedLicenseId": false,
  752. "detailsUrl": "https://spdx.org/licenses/OGDL-Taiwan-1.0.json",
  753. "referenceNumber": 60,
  754. "name": "Taiwan Open Government Data License, version 1.0",
  755. "licenseId": "OGDL-Taiwan-1.0",
  756. "seeAlso": [
  757. "https://data.gov.tw/license"
  758. ],
  759. "isOsiApproved": false
  760. },
  761. {
  762. "reference": "https://spdx.org/licenses/CC-BY-NC-SA-3.0.html",
  763. "isDeprecatedLicenseId": false,
  764. "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-SA-3.0.json",
  765. "referenceNumber": 61,
  766. "name": "Creative Commons Attribution Non Commercial Share Alike 3.0 Unported",
  767. "licenseId": "CC-BY-NC-SA-3.0",
  768. "seeAlso": [
  769. "https://creativecommons.org/licenses/by-nc-sa/3.0/legalcode"
  770. ],
  771. "isOsiApproved": false
  772. },
  773. {
  774. "reference": "https://spdx.org/licenses/psutils.html",
  775. "isDeprecatedLicenseId": false,
  776. "detailsUrl": "https://spdx.org/licenses/psutils.json",
  777. "referenceNumber": 62,
  778. "name": "psutils License",
  779. "licenseId": "psutils",
  780. "seeAlso": [
  781. "https://fedoraproject.org/wiki/Licensing/psutils"
  782. ],
  783. "isOsiApproved": false
  784. },
  785. {
  786. "reference": "https://spdx.org/licenses/Artistic-1.0-cl8.html",
  787. "isDeprecatedLicenseId": false,
  788. "detailsUrl": "https://spdx.org/licenses/Artistic-1.0-cl8.json",
  789. "referenceNumber": 63,
  790. "name": "Artistic License 1.0 w/clause 8",
  791. "licenseId": "Artistic-1.0-cl8",
  792. "seeAlso": [
  793. "https://opensource.org/licenses/Artistic-1.0"
  794. ],
  795. "isOsiApproved": true
  796. },
  797. {
  798. "reference": "https://spdx.org/licenses/GFDL-1.1-or-later.html",
  799. "isDeprecatedLicenseId": false,
  800. "detailsUrl": "https://spdx.org/licenses/GFDL-1.1-or-later.json",
  801. "referenceNumber": 64,
  802. "name": "GNU Free Documentation License v1.1 or later",
  803. "licenseId": "GFDL-1.1-or-later",
  804. "seeAlso": [
  805. "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt"
  806. ],
  807. "isOsiApproved": false,
  808. "isFsfLibre": true
  809. },
  810. {
  811. "reference": "https://spdx.org/licenses/EUPL-1.1.html",
  812. "isDeprecatedLicenseId": false,
  813. "detailsUrl": "https://spdx.org/licenses/EUPL-1.1.json",
  814. "referenceNumber": 65,
  815. "name": "European Union Public License 1.1",
  816. "licenseId": "EUPL-1.1",
  817. "seeAlso": [
  818. "https://joinup.ec.europa.eu/software/page/eupl/licence-eupl",
  819. "https://joinup.ec.europa.eu/sites/default/files/custom-page/attachment/eupl1.1.-licence-en_0.pdf",
  820. "https://opensource.org/licenses/EUPL-1.1"
  821. ],
  822. "isOsiApproved": true,
  823. "isFsfLibre": true
  824. },
  825. {
  826. "reference": "https://spdx.org/licenses/FTL.html",
  827. "isDeprecatedLicenseId": false,
  828. "detailsUrl": "https://spdx.org/licenses/FTL.json",
  829. "referenceNumber": 66,
  830. "name": "Freetype Project License",
  831. "licenseId": "FTL",
  832. "seeAlso": [
  833. "http://freetype.fis.uniroma2.it/FTL.TXT",
  834. "http://git.savannah.gnu.org/cgit/freetype/freetype2.git/tree/docs/FTL.TXT",
  835. "http://gitlab.freedesktop.org/freetype/freetype/-/raw/master/docs/FTL.TXT"
  836. ],
  837. "isOsiApproved": false,
  838. "isFsfLibre": true
  839. },
  840. {
  841. "reference": "https://spdx.org/licenses/OGL-Canada-2.0.html",
  842. "isDeprecatedLicenseId": false,
  843. "detailsUrl": "https://spdx.org/licenses/OGL-Canada-2.0.json",
  844. "referenceNumber": 67,
  845. "name": "Open Government Licence - Canada",
  846. "licenseId": "OGL-Canada-2.0",
  847. "seeAlso": [
  848. "https://open.canada.ca/en/open-government-licence-canada"
  849. ],
  850. "isOsiApproved": false
  851. },
  852. {
  853. "reference": "https://spdx.org/licenses/Sendmail-8.23.html",
  854. "isDeprecatedLicenseId": false,
  855. "detailsUrl": "https://spdx.org/licenses/Sendmail-8.23.json",
  856. "referenceNumber": 68,
  857. "name": "Sendmail License 8.23",
  858. "licenseId": "Sendmail-8.23",
  859. "seeAlso": [
  860. "https://www.proofpoint.com/sites/default/files/sendmail-license.pdf",
  861. "https://web.archive.org/web/20181003101040/https://www.proofpoint.com/sites/default/files/sendmail-license.pdf"
  862. ],
  863. "isOsiApproved": false
  864. },
  865. {
  866. "reference": "https://spdx.org/licenses/Unicode-DFS-2016.html",
  867. "isDeprecatedLicenseId": false,
  868. "detailsUrl": "https://spdx.org/licenses/Unicode-DFS-2016.json",
  869. "referenceNumber": 69,
  870. "name": "Unicode License Agreement - Data Files and Software (2016)",
  871. "licenseId": "Unicode-DFS-2016",
  872. "seeAlso": [
  873. "http://www.unicode.org/copyright.html"
  874. ],
  875. "isOsiApproved": true
  876. },
  877. {
  878. "reference": "https://spdx.org/licenses/MakeIndex.html",
  879. "isDeprecatedLicenseId": false,
  880. "detailsUrl": "https://spdx.org/licenses/MakeIndex.json",
  881. "referenceNumber": 70,
  882. "name": "MakeIndex License",
  883. "licenseId": "MakeIndex",
  884. "seeAlso": [
  885. "https://fedoraproject.org/wiki/Licensing/MakeIndex"
  886. ],
  887. "isOsiApproved": false
  888. },
  889. {
  890. "reference": "https://spdx.org/licenses/PostgreSQL.html",
  891. "isDeprecatedLicenseId": false,
  892. "detailsUrl": "https://spdx.org/licenses/PostgreSQL.json",
  893. "referenceNumber": 71,
  894. "name": "PostgreSQL License",
  895. "licenseId": "PostgreSQL",
  896. "seeAlso": [
  897. "http://www.postgresql.org/about/licence",
  898. "https://opensource.org/licenses/PostgreSQL"
  899. ],
  900. "isOsiApproved": true
  901. },
  902. {
  903. "reference": "https://spdx.org/licenses/CPAL-1.0.html",
  904. "isDeprecatedLicenseId": false,
  905. "detailsUrl": "https://spdx.org/licenses/CPAL-1.0.json",
  906. "referenceNumber": 72,
  907. "name": "Common Public Attribution License 1.0",
  908. "licenseId": "CPAL-1.0",
  909. "seeAlso": [
  910. "https://opensource.org/licenses/CPAL-1.0"
  911. ],
  912. "isOsiApproved": true,
  913. "isFsfLibre": true
  914. },
  915. {
  916. "reference": "https://spdx.org/licenses/BSD-3-Clause-No-Military-License.html",
  917. "isDeprecatedLicenseId": false,
  918. "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-No-Military-License.json",
  919. "referenceNumber": 73,
  920. "name": "BSD 3-Clause No Military License",
  921. "licenseId": "BSD-3-Clause-No-Military-License",
  922. "seeAlso": [
  923. "https://gitlab.syncad.com/hive/dhive/-/blob/master/LICENSE",
  924. "https://github.com/greymass/swift-eosio/blob/master/LICENSE"
  925. ],
  926. "isOsiApproved": false
  927. },
  928. {
  929. "reference": "https://spdx.org/licenses/BSD-3-Clause-Modification.html",
  930. "isDeprecatedLicenseId": false,
  931. "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-Modification.json",
  932. "referenceNumber": 74,
  933. "name": "BSD 3-Clause Modification",
  934. "licenseId": "BSD-3-Clause-Modification",
  935. "seeAlso": [
  936. "https://fedoraproject.org/wiki/Licensing:BSD#Modification_Variant"
  937. ],
  938. "isOsiApproved": false
  939. },
  940. {
  941. "reference": "https://spdx.org/licenses/CERN-OHL-W-2.0.html",
  942. "isDeprecatedLicenseId": false,
  943. "detailsUrl": "https://spdx.org/licenses/CERN-OHL-W-2.0.json",
  944. "referenceNumber": 75,
  945. "name": "CERN Open Hardware Licence Version 2 - Weakly Reciprocal",
  946. "licenseId": "CERN-OHL-W-2.0",
  947. "seeAlso": [
  948. "https://www.ohwr.org/project/cernohl/wikis/Documents/CERN-OHL-version-2"
  949. ],
  950. "isOsiApproved": true
  951. },
  952. {
  953. "reference": "https://spdx.org/licenses/Spencer-86.html",
  954. "isDeprecatedLicenseId": false,
  955. "detailsUrl": "https://spdx.org/licenses/Spencer-86.json",
  956. "referenceNumber": 76,
  957. "name": "Spencer License 86",
  958. "licenseId": "Spencer-86",
  959. "seeAlso": [
  960. "https://fedoraproject.org/wiki/Licensing/Henry_Spencer_Reg-Ex_Library_License"
  961. ],
  962. "isOsiApproved": false
  963. },
  964. {
  965. "reference": "https://spdx.org/licenses/OLDAP-2.6.html",
  966. "isDeprecatedLicenseId": false,
  967. "detailsUrl": "https://spdx.org/licenses/OLDAP-2.6.json",
  968. "referenceNumber": 77,
  969. "name": "Open LDAP Public License v2.6",
  970. "licenseId": "OLDAP-2.6",
  971. "seeAlso": [
  972. "http://www.openldap.org/devel/gitweb.cgi?p\u003dopenldap.git;a\u003dblob;f\u003dLICENSE;hb\u003d1cae062821881f41b73012ba816434897abf4205"
  973. ],
  974. "isOsiApproved": false
  975. },
  976. {
  977. "reference": "https://spdx.org/licenses/LPPL-1.0.html",
  978. "isDeprecatedLicenseId": false,
  979. "detailsUrl": "https://spdx.org/licenses/LPPL-1.0.json",
  980. "referenceNumber": 78,
  981. "name": "LaTeX Project Public License v1.0",
  982. "licenseId": "LPPL-1.0",
  983. "seeAlso": [
  984. "http://www.latex-project.org/lppl/lppl-1-0.txt"
  985. ],
  986. "isOsiApproved": false
  987. },
  988. {
  989. "reference": "https://spdx.org/licenses/GPL-2.0-with-autoconf-exception.html",
  990. "isDeprecatedLicenseId": true,
  991. "detailsUrl": "https://spdx.org/licenses/GPL-2.0-with-autoconf-exception.json",
  992. "referenceNumber": 79,
  993. "name": "GNU General Public License v2.0 w/Autoconf exception",
  994. "licenseId": "GPL-2.0-with-autoconf-exception",
  995. "seeAlso": [
  996. "http://ac-archive.sourceforge.net/doc/copyright.html"
  997. ],
  998. "isOsiApproved": false
  999. },
  1000. {
  1001. "reference": "https://spdx.org/licenses/CC-BY-NC-SA-3.0-DE.html",
  1002. "isDeprecatedLicenseId": false,
  1003. "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-SA-3.0-DE.json",
  1004. "referenceNumber": 80,
  1005. "name": "Creative Commons Attribution Non Commercial Share Alike 3.0 Germany",
  1006. "licenseId": "CC-BY-NC-SA-3.0-DE",
  1007. "seeAlso": [
  1008. "https://creativecommons.org/licenses/by-nc-sa/3.0/de/legalcode"
  1009. ],
  1010. "isOsiApproved": false
  1011. },
  1012. {
  1013. "reference": "https://spdx.org/licenses/CC-BY-3.0.html",
  1014. "isDeprecatedLicenseId": false,
  1015. "detailsUrl": "https://spdx.org/licenses/CC-BY-3.0.json",
  1016. "referenceNumber": 81,
  1017. "name": "Creative Commons Attribution 3.0 Unported",
  1018. "licenseId": "CC-BY-3.0",
  1019. "seeAlso": [
  1020. "https://creativecommons.org/licenses/by/3.0/legalcode"
  1021. ],
  1022. "isOsiApproved": false
  1023. },
  1024. {
  1025. "reference": "https://spdx.org/licenses/CATOSL-1.1.html",
  1026. "isDeprecatedLicenseId": false,
  1027. "detailsUrl": "https://spdx.org/licenses/CATOSL-1.1.json",
  1028. "referenceNumber": 82,
  1029. "name": "Computer Associates Trusted Open Source License 1.1",
  1030. "licenseId": "CATOSL-1.1",
  1031. "seeAlso": [
  1032. "https://opensource.org/licenses/CATOSL-1.1"
  1033. ],
  1034. "isOsiApproved": true
  1035. },
  1036. {
  1037. "reference": "https://spdx.org/licenses/BSD-3-Clause.html",
  1038. "isDeprecatedLicenseId": false,
  1039. "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause.json",
  1040. "referenceNumber": 83,
  1041. "name": "BSD 3-Clause \"New\" or \"Revised\" License",
  1042. "licenseId": "BSD-3-Clause",
  1043. "seeAlso": [
  1044. "https://opensource.org/licenses/BSD-3-Clause"
  1045. ],
  1046. "isOsiApproved": true,
  1047. "isFsfLibre": true
  1048. },
  1049. {
  1050. "reference": "https://spdx.org/licenses/LGPL-3.0-only.html",
  1051. "isDeprecatedLicenseId": false,
  1052. "detailsUrl": "https://spdx.org/licenses/LGPL-3.0-only.json",
  1053. "referenceNumber": 84,
  1054. "name": "GNU Lesser General Public License v3.0 only",
  1055. "licenseId": "LGPL-3.0-only",
  1056. "seeAlso": [
  1057. "https://www.gnu.org/licenses/lgpl-3.0-standalone.html",
  1058. "https://opensource.org/licenses/LGPL-3.0"
  1059. ],
  1060. "isOsiApproved": true,
  1061. "isFsfLibre": true
  1062. },
  1063. {
  1064. "reference": "https://spdx.org/licenses/NCSA.html",
  1065. "isDeprecatedLicenseId": false,
  1066. "detailsUrl": "https://spdx.org/licenses/NCSA.json",
  1067. "referenceNumber": 85,
  1068. "name": "University of Illinois/NCSA Open Source License",
  1069. "licenseId": "NCSA",
  1070. "seeAlso": [
  1071. "http://otm.illinois.edu/uiuc_openSource",
  1072. "https://opensource.org/licenses/NCSA"
  1073. ],
  1074. "isOsiApproved": true,
  1075. "isFsfLibre": true
  1076. },
  1077. {
  1078. "reference": "https://spdx.org/licenses/Naumen.html",
  1079. "isDeprecatedLicenseId": false,
  1080. "detailsUrl": "https://spdx.org/licenses/Naumen.json",
  1081. "referenceNumber": 86,
  1082. "name": "Naumen Public License",
  1083. "licenseId": "Naumen",
  1084. "seeAlso": [
  1085. "https://opensource.org/licenses/Naumen"
  1086. ],
  1087. "isOsiApproved": true
  1088. },
  1089. {
  1090. "reference": "https://spdx.org/licenses/CrystalStacker.html",
  1091. "isDeprecatedLicenseId": false,
  1092. "detailsUrl": "https://spdx.org/licenses/CrystalStacker.json",
  1093. "referenceNumber": 87,
  1094. "name": "CrystalStacker License",
  1095. "licenseId": "CrystalStacker",
  1096. "seeAlso": [
  1097. "https://fedoraproject.org/wiki/Licensing:CrystalStacker?rd\u003dLicensing/CrystalStacker"
  1098. ],
  1099. "isOsiApproved": false
  1100. },
  1101. {
  1102. "reference": "https://spdx.org/licenses/Multics.html",
  1103. "isDeprecatedLicenseId": false,
  1104. "detailsUrl": "https://spdx.org/licenses/Multics.json",
  1105. "referenceNumber": 88,
  1106. "name": "Multics License",
  1107. "licenseId": "Multics",
  1108. "seeAlso": [
  1109. "https://opensource.org/licenses/Multics"
  1110. ],
  1111. "isOsiApproved": true
  1112. },
  1113. {
  1114. "reference": "https://spdx.org/licenses/Intel-ACPI.html",
  1115. "isDeprecatedLicenseId": false,
  1116. "detailsUrl": "https://spdx.org/licenses/Intel-ACPI.json",
  1117. "referenceNumber": 89,
  1118. "name": "Intel ACPI Software License Agreement",
  1119. "licenseId": "Intel-ACPI",
  1120. "seeAlso": [
  1121. "https://fedoraproject.org/wiki/Licensing/Intel_ACPI_Software_License_Agreement"
  1122. ],
  1123. "isOsiApproved": false
  1124. },
  1125. {
  1126. "reference": "https://spdx.org/licenses/AFL-3.0.html",
  1127. "isDeprecatedLicenseId": false,
  1128. "detailsUrl": "https://spdx.org/licenses/AFL-3.0.json",
  1129. "referenceNumber": 90,
  1130. "name": "Academic Free License v3.0",
  1131. "licenseId": "AFL-3.0",
  1132. "seeAlso": [
  1133. "http://www.rosenlaw.com/AFL3.0.htm",
  1134. "https://opensource.org/licenses/afl-3.0"
  1135. ],
  1136. "isOsiApproved": true,
  1137. "isFsfLibre": true
  1138. },
  1139. {
  1140. "reference": "https://spdx.org/licenses/LGPL-2.0.html",
  1141. "isDeprecatedLicenseId": true,
  1142. "detailsUrl": "https://spdx.org/licenses/LGPL-2.0.json",
  1143. "referenceNumber": 91,
  1144. "name": "GNU Library General Public License v2 only",
  1145. "licenseId": "LGPL-2.0",
  1146. "seeAlso": [
  1147. "https://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html"
  1148. ],
  1149. "isOsiApproved": true
  1150. },
  1151. {
  1152. "reference": "https://spdx.org/licenses/CECILL-B.html",
  1153. "isDeprecatedLicenseId": false,
  1154. "detailsUrl": "https://spdx.org/licenses/CECILL-B.json",
  1155. "referenceNumber": 92,
  1156. "name": "CeCILL-B Free Software License Agreement",
  1157. "licenseId": "CECILL-B",
  1158. "seeAlso": [
  1159. "http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html"
  1160. ],
  1161. "isOsiApproved": false,
  1162. "isFsfLibre": true
  1163. },
  1164. {
  1165. "reference": "https://spdx.org/licenses/APL-1.0.html",
  1166. "isDeprecatedLicenseId": false,
  1167. "detailsUrl": "https://spdx.org/licenses/APL-1.0.json",
  1168. "referenceNumber": 93,
  1169. "name": "Adaptive Public License 1.0",
  1170. "licenseId": "APL-1.0",
  1171. "seeAlso": [
  1172. "https://opensource.org/licenses/APL-1.0"
  1173. ],
  1174. "isOsiApproved": true
  1175. },
  1176. {
  1177. "reference": "https://spdx.org/licenses/XFree86-1.1.html",
  1178. "isDeprecatedLicenseId": false,
  1179. "detailsUrl": "https://spdx.org/licenses/XFree86-1.1.json",
  1180. "referenceNumber": 94,
  1181. "name": "XFree86 License 1.1",
  1182. "licenseId": "XFree86-1.1",
  1183. "seeAlso": [
  1184. "http://www.xfree86.org/current/LICENSE4.html"
  1185. ],
  1186. "isOsiApproved": false,
  1187. "isFsfLibre": true
  1188. },
  1189. {
  1190. "reference": "https://spdx.org/licenses/ECL-1.0.html",
  1191. "isDeprecatedLicenseId": false,
  1192. "detailsUrl": "https://spdx.org/licenses/ECL-1.0.json",
  1193. "referenceNumber": 95,
  1194. "name": "Educational Community License v1.0",
  1195. "licenseId": "ECL-1.0",
  1196. "seeAlso": [
  1197. "https://opensource.org/licenses/ECL-1.0"
  1198. ],
  1199. "isOsiApproved": true
  1200. },
  1201. {
  1202. "reference": "https://spdx.org/licenses/MIT-0.html",
  1203. "isDeprecatedLicenseId": false,
  1204. "detailsUrl": "https://spdx.org/licenses/MIT-0.json",
  1205. "referenceNumber": 96,
  1206. "name": "MIT No Attribution",
  1207. "licenseId": "MIT-0",
  1208. "seeAlso": [
  1209. "https://github.com/aws/mit-0",
  1210. "https://romanrm.net/mit-zero",
  1211. "https://github.com/awsdocs/aws-cloud9-user-guide/blob/master/LICENSE-SAMPLECODE"
  1212. ],
  1213. "isOsiApproved": true
  1214. },
  1215. {
  1216. "reference": "https://spdx.org/licenses/LiLiQ-R-1.1.html",
  1217. "isDeprecatedLicenseId": false,
  1218. "detailsUrl": "https://spdx.org/licenses/LiLiQ-R-1.1.json",
  1219. "referenceNumber": 97,
  1220. "name": "Licence Libre du Québec – Réciprocité version 1.1",
  1221. "licenseId": "LiLiQ-R-1.1",
  1222. "seeAlso": [
  1223. "https://www.forge.gouv.qc.ca/participez/licence-logicielle/licence-libre-du-quebec-liliq-en-francais/licence-libre-du-quebec-reciprocite-liliq-r-v1-1/",
  1224. "http://opensource.org/licenses/LiLiQ-R-1.1"
  1225. ],
  1226. "isOsiApproved": true
  1227. },
  1228. {
  1229. "reference": "https://spdx.org/licenses/OLDAP-1.3.html",
  1230. "isDeprecatedLicenseId": false,
  1231. "detailsUrl": "https://spdx.org/licenses/OLDAP-1.3.json",
  1232. "referenceNumber": 98,
  1233. "name": "Open LDAP Public License v1.3",
  1234. "licenseId": "OLDAP-1.3",
  1235. "seeAlso": [
  1236. "http://www.openldap.org/devel/gitweb.cgi?p\u003dopenldap.git;a\u003dblob;f\u003dLICENSE;hb\u003de5f8117f0ce088d0bd7a8e18ddf37eaa40eb09b1"
  1237. ],
  1238. "isOsiApproved": false
  1239. },
  1240. {
  1241. "reference": "https://spdx.org/licenses/Python-2.0.html",
  1242. "isDeprecatedLicenseId": false,
  1243. "detailsUrl": "https://spdx.org/licenses/Python-2.0.json",
  1244. "referenceNumber": 99,
  1245. "name": "Python License 2.0",
  1246. "licenseId": "Python-2.0",
  1247. "seeAlso": [
  1248. "https://opensource.org/licenses/Python-2.0"
  1249. ],
  1250. "isOsiApproved": true,
  1251. "isFsfLibre": true
  1252. },
  1253. {
  1254. "reference": "https://spdx.org/licenses/NPL-1.0.html",
  1255. "isDeprecatedLicenseId": false,
  1256. "detailsUrl": "https://spdx.org/licenses/NPL-1.0.json",
  1257. "referenceNumber": 100,
  1258. "name": "Netscape Public License v1.0",
  1259. "licenseId": "NPL-1.0",
  1260. "seeAlso": [
  1261. "http://www.mozilla.org/MPL/NPL/1.0/"
  1262. ],
  1263. "isOsiApproved": false,
  1264. "isFsfLibre": true
  1265. },
  1266. {
  1267. "reference": "https://spdx.org/licenses/O-UDA-1.0.html",
  1268. "isDeprecatedLicenseId": false,
  1269. "detailsUrl": "https://spdx.org/licenses/O-UDA-1.0.json",
  1270. "referenceNumber": 101,
  1271. "name": "Open Use of Data Agreement v1.0",
  1272. "licenseId": "O-UDA-1.0",
  1273. "seeAlso": [
  1274. "https://github.com/microsoft/Open-Use-of-Data-Agreement/blob/v1.0/O-UDA-1.0.md",
  1275. "https://cdla.dev/open-use-of-data-agreement-v1-0/"
  1276. ],
  1277. "isOsiApproved": false
  1278. },
  1279. {
  1280. "reference": "https://spdx.org/licenses/ClArtistic.html",
  1281. "isDeprecatedLicenseId": false,
  1282. "detailsUrl": "https://spdx.org/licenses/ClArtistic.json",
  1283. "referenceNumber": 102,
  1284. "name": "Clarified Artistic License",
  1285. "licenseId": "ClArtistic",
  1286. "seeAlso": [
  1287. "http://gianluca.dellavedova.org/2011/01/03/clarified-artistic-license/",
  1288. "http://www.ncftp.com/ncftp/doc/LICENSE.txt"
  1289. ],
  1290. "isOsiApproved": false,
  1291. "isFsfLibre": true
  1292. },
  1293. {
  1294. "reference": "https://spdx.org/licenses/MPL-1.1.html",
  1295. "isDeprecatedLicenseId": false,
  1296. "detailsUrl": "https://spdx.org/licenses/MPL-1.1.json",
  1297. "referenceNumber": 103,
  1298. "name": "Mozilla Public License 1.1",
  1299. "licenseId": "MPL-1.1",
  1300. "seeAlso": [
  1301. "http://www.mozilla.org/MPL/MPL-1.1.html",
  1302. "https://opensource.org/licenses/MPL-1.1"
  1303. ],
  1304. "isOsiApproved": true,
  1305. "isFsfLibre": true
  1306. },
  1307. {
  1308. "reference": "https://spdx.org/licenses/LiLiQ-P-1.1.html",
  1309. "isDeprecatedLicenseId": false,
  1310. "detailsUrl": "https://spdx.org/licenses/LiLiQ-P-1.1.json",
  1311. "referenceNumber": 104,
  1312. "name": "Licence Libre du Québec – Permissive version 1.1",
  1313. "licenseId": "LiLiQ-P-1.1",
  1314. "seeAlso": [
  1315. "https://forge.gouv.qc.ca/licence/fr/liliq-v1-1/",
  1316. "http://opensource.org/licenses/LiLiQ-P-1.1"
  1317. ],
  1318. "isOsiApproved": true
  1319. },
  1320. {
  1321. "reference": "https://spdx.org/licenses/PDDL-1.0.html",
  1322. "isDeprecatedLicenseId": false,
  1323. "detailsUrl": "https://spdx.org/licenses/PDDL-1.0.json",
  1324. "referenceNumber": 105,
  1325. "name": "Open Data Commons Public Domain Dedication \u0026 License 1.0",
  1326. "licenseId": "PDDL-1.0",
  1327. "seeAlso": [
  1328. "http://opendatacommons.org/licenses/pddl/1.0/",
  1329. "https://opendatacommons.org/licenses/pddl/"
  1330. ],
  1331. "isOsiApproved": false
  1332. },
  1333. {
  1334. "reference": "https://spdx.org/licenses/APSL-1.1.html",
  1335. "isDeprecatedLicenseId": false,
  1336. "detailsUrl": "https://spdx.org/licenses/APSL-1.1.json",
  1337. "referenceNumber": 106,
  1338. "name": "Apple Public Source License 1.1",
  1339. "licenseId": "APSL-1.1",
  1340. "seeAlso": [
  1341. "http://www.opensource.apple.com/source/IOSerialFamily/IOSerialFamily-7/APPLE_LICENSE"
  1342. ],
  1343. "isOsiApproved": true
  1344. },
  1345. {
  1346. "reference": "https://spdx.org/licenses/CECILL-1.0.html",
  1347. "isDeprecatedLicenseId": false,
  1348. "detailsUrl": "https://spdx.org/licenses/CECILL-1.0.json",
  1349. "referenceNumber": 107,
  1350. "name": "CeCILL Free Software License Agreement v1.0",
  1351. "licenseId": "CECILL-1.0",
  1352. "seeAlso": [
  1353. "http://www.cecill.info/licences/Licence_CeCILL_V1-fr.html"
  1354. ],
  1355. "isOsiApproved": false
  1356. },
  1357. {
  1358. "reference": "https://spdx.org/licenses/SugarCRM-1.1.3.html",
  1359. "isDeprecatedLicenseId": false,
  1360. "detailsUrl": "https://spdx.org/licenses/SugarCRM-1.1.3.json",
  1361. "referenceNumber": 108,
  1362. "name": "SugarCRM Public License v1.1.3",
  1363. "licenseId": "SugarCRM-1.1.3",
  1364. "seeAlso": [
  1365. "http://www.sugarcrm.com/crm/SPL"
  1366. ],
  1367. "isOsiApproved": false
  1368. },
  1369. {
  1370. "reference": "https://spdx.org/licenses/SimPL-2.0.html",
  1371. "isDeprecatedLicenseId": false,
  1372. "detailsUrl": "https://spdx.org/licenses/SimPL-2.0.json",
  1373. "referenceNumber": 109,
  1374. "name": "Simple Public License 2.0",
  1375. "licenseId": "SimPL-2.0",
  1376. "seeAlso": [
  1377. "https://opensource.org/licenses/SimPL-2.0"
  1378. ],
  1379. "isOsiApproved": true
  1380. },
  1381. {
  1382. "reference": "https://spdx.org/licenses/bzip2-1.0.6.html",
  1383. "isDeprecatedLicenseId": false,
  1384. "detailsUrl": "https://spdx.org/licenses/bzip2-1.0.6.json",
  1385. "referenceNumber": 110,
  1386. "name": "bzip2 and libbzip2 License v1.0.6",
  1387. "licenseId": "bzip2-1.0.6",
  1388. "seeAlso": [
  1389. "https://sourceware.org/git/?p\u003dbzip2.git;a\u003dblob;f\u003dLICENSE;hb\u003dbzip2-1.0.6",
  1390. "http://bzip.org/1.0.5/bzip2-manual-1.0.5.html"
  1391. ],
  1392. "isOsiApproved": false
  1393. },
  1394. {
  1395. "reference": "https://spdx.org/licenses/Newsletr.html",
  1396. "isDeprecatedLicenseId": false,
  1397. "detailsUrl": "https://spdx.org/licenses/Newsletr.json",
  1398. "referenceNumber": 111,
  1399. "name": "Newsletr License",
  1400. "licenseId": "Newsletr",
  1401. "seeAlso": [
  1402. "https://fedoraproject.org/wiki/Licensing/Newsletr"
  1403. ],
  1404. "isOsiApproved": false
  1405. },
  1406. {
  1407. "reference": "https://spdx.org/licenses/QPL-1.0.html",
  1408. "isDeprecatedLicenseId": false,
  1409. "detailsUrl": "https://spdx.org/licenses/QPL-1.0.json",
  1410. "referenceNumber": 112,
  1411. "name": "Q Public License 1.0",
  1412. "licenseId": "QPL-1.0",
  1413. "seeAlso": [
  1414. "http://doc.qt.nokia.com/3.3/license.html",
  1415. "https://opensource.org/licenses/QPL-1.0",
  1416. "https://doc.qt.io/archives/3.3/license.html"
  1417. ],
  1418. "isOsiApproved": true,
  1419. "isFsfLibre": true
  1420. },
  1421. {
  1422. "reference": "https://spdx.org/licenses/iMatix.html",
  1423. "isDeprecatedLicenseId": false,
  1424. "detailsUrl": "https://spdx.org/licenses/iMatix.json",
  1425. "referenceNumber": 113,
  1426. "name": "iMatix Standard Function Library Agreement",
  1427. "licenseId": "iMatix",
  1428. "seeAlso": [
  1429. "http://legacy.imatix.com/html/sfl/sfl4.htm#license"
  1430. ],
  1431. "isOsiApproved": false,
  1432. "isFsfLibre": true
  1433. },
  1434. {
  1435. "reference": "https://spdx.org/licenses/Zimbra-1.3.html",
  1436. "isDeprecatedLicenseId": false,
  1437. "detailsUrl": "https://spdx.org/licenses/Zimbra-1.3.json",
  1438. "referenceNumber": 114,
  1439. "name": "Zimbra Public License v1.3",
  1440. "licenseId": "Zimbra-1.3",
  1441. "seeAlso": [
  1442. "http://web.archive.org/web/20100302225219/http://www.zimbra.com/license/zimbra-public-license-1-3.html"
  1443. ],
  1444. "isOsiApproved": false,
  1445. "isFsfLibre": true
  1446. },
  1447. {
  1448. "reference": "https://spdx.org/licenses/Qhull.html",
  1449. "isDeprecatedLicenseId": false,
  1450. "detailsUrl": "https://spdx.org/licenses/Qhull.json",
  1451. "referenceNumber": 115,
  1452. "name": "Qhull License",
  1453. "licenseId": "Qhull",
  1454. "seeAlso": [
  1455. "https://fedoraproject.org/wiki/Licensing/Qhull"
  1456. ],
  1457. "isOsiApproved": false
  1458. },
  1459. {
  1460. "reference": "https://spdx.org/licenses/C-UDA-1.0.html",
  1461. "isDeprecatedLicenseId": false,
  1462. "detailsUrl": "https://spdx.org/licenses/C-UDA-1.0.json",
  1463. "referenceNumber": 116,
  1464. "name": "Computational Use of Data Agreement v1.0",
  1465. "licenseId": "C-UDA-1.0",
  1466. "seeAlso": [
  1467. "https://github.com/microsoft/Computational-Use-of-Data-Agreement/blob/master/C-UDA-1.0.md",
  1468. "https://cdla.dev/computational-use-of-data-agreement-v1-0/"
  1469. ],
  1470. "isOsiApproved": false
  1471. },
  1472. {
  1473. "reference": "https://spdx.org/licenses/CC-BY-NC-ND-3.0.html",
  1474. "isDeprecatedLicenseId": false,
  1475. "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-ND-3.0.json",
  1476. "referenceNumber": 117,
  1477. "name": "Creative Commons Attribution Non Commercial No Derivatives 3.0 Unported",
  1478. "licenseId": "CC-BY-NC-ND-3.0",
  1479. "seeAlso": [
  1480. "https://creativecommons.org/licenses/by-nc-nd/3.0/legalcode"
  1481. ],
  1482. "isOsiApproved": false
  1483. },
  1484. {
  1485. "reference": "https://spdx.org/licenses/CERN-OHL-P-2.0.html",
  1486. "isDeprecatedLicenseId": false,
  1487. "detailsUrl": "https://spdx.org/licenses/CERN-OHL-P-2.0.json",
  1488. "referenceNumber": 118,
  1489. "name": "CERN Open Hardware Licence Version 2 - Permissive",
  1490. "licenseId": "CERN-OHL-P-2.0",
  1491. "seeAlso": [
  1492. "https://www.ohwr.org/project/cernohl/wikis/Documents/CERN-OHL-version-2"
  1493. ],
  1494. "isOsiApproved": true
  1495. },
  1496. {
  1497. "reference": "https://spdx.org/licenses/CC-BY-SA-3.0-AT.html",
  1498. "isDeprecatedLicenseId": false,
  1499. "detailsUrl": "https://spdx.org/licenses/CC-BY-SA-3.0-AT.json",
  1500. "referenceNumber": 119,
  1501. "name": "Creative Commons Attribution Share Alike 3.0 Austria",
  1502. "licenseId": "CC-BY-SA-3.0-AT",
  1503. "seeAlso": [
  1504. "https://creativecommons.org/licenses/by-sa/3.0/at/legalcode"
  1505. ],
  1506. "isOsiApproved": false
  1507. },
  1508. {
  1509. "reference": "https://spdx.org/licenses/zlib-acknowledgement.html",
  1510. "isDeprecatedLicenseId": false,
  1511. "detailsUrl": "https://spdx.org/licenses/zlib-acknowledgement.json",
  1512. "referenceNumber": 120,
  1513. "name": "zlib/libpng License with Acknowledgement",
  1514. "licenseId": "zlib-acknowledgement",
  1515. "seeAlso": [
  1516. "https://fedoraproject.org/wiki/Licensing/ZlibWithAcknowledgement"
  1517. ],
  1518. "isOsiApproved": false
  1519. },
  1520. {
  1521. "reference": "https://spdx.org/licenses/GD.html",
  1522. "isDeprecatedLicenseId": false,
  1523. "detailsUrl": "https://spdx.org/licenses/GD.json",
  1524. "referenceNumber": 121,
  1525. "name": "GD License",
  1526. "licenseId": "GD",
  1527. "seeAlso": [
  1528. "https://libgd.github.io/manuals/2.3.0/files/license-txt.html"
  1529. ],
  1530. "isOsiApproved": false
  1531. },
  1532. {
  1533. "reference": "https://spdx.org/licenses/OGC-1.0.html",
  1534. "isDeprecatedLicenseId": false,
  1535. "detailsUrl": "https://spdx.org/licenses/OGC-1.0.json",
  1536. "referenceNumber": 122,
  1537. "name": "OGC Software License, Version 1.0",
  1538. "licenseId": "OGC-1.0",
  1539. "seeAlso": [
  1540. "https://www.ogc.org/ogc/software/1.0"
  1541. ],
  1542. "isOsiApproved": false
  1543. },
  1544. {
  1545. "reference": "https://spdx.org/licenses/Condor-1.1.html",
  1546. "isDeprecatedLicenseId": false,
  1547. "detailsUrl": "https://spdx.org/licenses/Condor-1.1.json",
  1548. "referenceNumber": 123,
  1549. "name": "Condor Public License v1.1",
  1550. "licenseId": "Condor-1.1",
  1551. "seeAlso": [
  1552. "http://research.cs.wisc.edu/condor/license.html#condor",
  1553. "http://web.archive.org/web/20111123062036/http://research.cs.wisc.edu/condor/license.html#condor"
  1554. ],
  1555. "isOsiApproved": false,
  1556. "isFsfLibre": true
  1557. },
  1558. {
  1559. "reference": "https://spdx.org/licenses/PSF-2.0.html",
  1560. "isDeprecatedLicenseId": false,
  1561. "detailsUrl": "https://spdx.org/licenses/PSF-2.0.json",
  1562. "referenceNumber": 124,
  1563. "name": "Python Software Foundation License 2.0",
  1564. "licenseId": "PSF-2.0",
  1565. "seeAlso": [
  1566. "https://opensource.org/licenses/Python-2.0"
  1567. ],
  1568. "isOsiApproved": false
  1569. },
  1570. {
  1571. "reference": "https://spdx.org/licenses/GPL-3.0-or-later.html",
  1572. "isDeprecatedLicenseId": false,
  1573. "detailsUrl": "https://spdx.org/licenses/GPL-3.0-or-later.json",
  1574. "referenceNumber": 125,
  1575. "name": "GNU General Public License v3.0 or later",
  1576. "licenseId": "GPL-3.0-or-later",
  1577. "seeAlso": [
  1578. "https://www.gnu.org/licenses/gpl-3.0-standalone.html",
  1579. "https://opensource.org/licenses/GPL-3.0"
  1580. ],
  1581. "isOsiApproved": true,
  1582. "isFsfLibre": true
  1583. },
  1584. {
  1585. "reference": "https://spdx.org/licenses/GFDL-1.2-invariants-or-later.html",
  1586. "isDeprecatedLicenseId": false,
  1587. "detailsUrl": "https://spdx.org/licenses/GFDL-1.2-invariants-or-later.json",
  1588. "referenceNumber": 126,
  1589. "name": "GNU Free Documentation License v1.2 or later - invariants",
  1590. "licenseId": "GFDL-1.2-invariants-or-later",
  1591. "seeAlso": [
  1592. "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt"
  1593. ],
  1594. "isOsiApproved": false
  1595. },
  1596. {
  1597. "reference": "https://spdx.org/licenses/OGTSL.html",
  1598. "isDeprecatedLicenseId": false,
  1599. "detailsUrl": "https://spdx.org/licenses/OGTSL.json",
  1600. "referenceNumber": 127,
  1601. "name": "Open Group Test Suite License",
  1602. "licenseId": "OGTSL",
  1603. "seeAlso": [
  1604. "http://www.opengroup.org/testing/downloads/The_Open_Group_TSL.txt",
  1605. "https://opensource.org/licenses/OGTSL"
  1606. ],
  1607. "isOsiApproved": true
  1608. },
  1609. {
  1610. "reference": "https://spdx.org/licenses/Aladdin.html",
  1611. "isDeprecatedLicenseId": false,
  1612. "detailsUrl": "https://spdx.org/licenses/Aladdin.json",
  1613. "referenceNumber": 128,
  1614. "name": "Aladdin Free Public License",
  1615. "licenseId": "Aladdin",
  1616. "seeAlso": [
  1617. "http://pages.cs.wisc.edu/~ghost/doc/AFPL/6.01/Public.htm"
  1618. ],
  1619. "isOsiApproved": false
  1620. },
  1621. {
  1622. "reference": "https://spdx.org/licenses/CC-BY-NC-3.0-DE.html",
  1623. "isDeprecatedLicenseId": false,
  1624. "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-3.0-DE.json",
  1625. "referenceNumber": 129,
  1626. "name": "Creative Commons Attribution Non Commercial 3.0 Germany",
  1627. "licenseId": "CC-BY-NC-3.0-DE",
  1628. "seeAlso": [
  1629. "https://creativecommons.org/licenses/by-nc/3.0/de/legalcode"
  1630. ],
  1631. "isOsiApproved": false
  1632. },
  1633. {
  1634. "reference": "https://spdx.org/licenses/Adobe-Glyph.html",
  1635. "isDeprecatedLicenseId": false,
  1636. "detailsUrl": "https://spdx.org/licenses/Adobe-Glyph.json",
  1637. "referenceNumber": 130,
  1638. "name": "Adobe Glyph List License",
  1639. "licenseId": "Adobe-Glyph",
  1640. "seeAlso": [
  1641. "https://fedoraproject.org/wiki/Licensing/MIT#AdobeGlyph"
  1642. ],
  1643. "isOsiApproved": false
  1644. },
  1645. {
  1646. "reference": "https://spdx.org/licenses/GFDL-1.3.html",
  1647. "isDeprecatedLicenseId": true,
  1648. "detailsUrl": "https://spdx.org/licenses/GFDL-1.3.json",
  1649. "referenceNumber": 131,
  1650. "name": "GNU Free Documentation License v1.3",
  1651. "licenseId": "GFDL-1.3",
  1652. "seeAlso": [
  1653. "https://www.gnu.org/licenses/fdl-1.3.txt"
  1654. ],
  1655. "isOsiApproved": false,
  1656. "isFsfLibre": true
  1657. },
  1658. {
  1659. "reference": "https://spdx.org/licenses/NCGL-UK-2.0.html",
  1660. "isDeprecatedLicenseId": false,
  1661. "detailsUrl": "https://spdx.org/licenses/NCGL-UK-2.0.json",
  1662. "referenceNumber": 132,
  1663. "name": "Non-Commercial Government Licence",
  1664. "licenseId": "NCGL-UK-2.0",
  1665. "seeAlso": [
  1666. "http://www.nationalarchives.gov.uk/doc/non-commercial-government-licence/version/2/"
  1667. ],
  1668. "isOsiApproved": false
  1669. },
  1670. {
  1671. "reference": "https://spdx.org/licenses/CC-BY-SA-2.0-UK.html",
  1672. "isDeprecatedLicenseId": false,
  1673. "detailsUrl": "https://spdx.org/licenses/CC-BY-SA-2.0-UK.json",
  1674. "referenceNumber": 133,
  1675. "name": "Creative Commons Attribution Share Alike 2.0 England and Wales",
  1676. "licenseId": "CC-BY-SA-2.0-UK",
  1677. "seeAlso": [
  1678. "https://creativecommons.org/licenses/by-sa/2.0/uk/legalcode"
  1679. ],
  1680. "isOsiApproved": false
  1681. },
  1682. {
  1683. "reference": "https://spdx.org/licenses/GFDL-1.2.html",
  1684. "isDeprecatedLicenseId": true,
  1685. "detailsUrl": "https://spdx.org/licenses/GFDL-1.2.json",
  1686. "referenceNumber": 134,
  1687. "name": "GNU Free Documentation License v1.2",
  1688. "licenseId": "GFDL-1.2",
  1689. "seeAlso": [
  1690. "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt"
  1691. ],
  1692. "isOsiApproved": false,
  1693. "isFsfLibre": true
  1694. },
  1695. {
  1696. "reference": "https://spdx.org/licenses/CC-BY-2.5-AU.html",
  1697. "isDeprecatedLicenseId": false,
  1698. "detailsUrl": "https://spdx.org/licenses/CC-BY-2.5-AU.json",
  1699. "referenceNumber": 135,
  1700. "name": "Creative Commons Attribution 2.5 Australia",
  1701. "licenseId": "CC-BY-2.5-AU",
  1702. "seeAlso": [
  1703. "https://creativecommons.org/licenses/by/2.5/au/legalcode"
  1704. ],
  1705. "isOsiApproved": false
  1706. },
  1707. {
  1708. "reference": "https://spdx.org/licenses/Leptonica.html",
  1709. "isDeprecatedLicenseId": false,
  1710. "detailsUrl": "https://spdx.org/licenses/Leptonica.json",
  1711. "referenceNumber": 136,
  1712. "name": "Leptonica License",
  1713. "licenseId": "Leptonica",
  1714. "seeAlso": [
  1715. "https://fedoraproject.org/wiki/Licensing/Leptonica"
  1716. ],
  1717. "isOsiApproved": false
  1718. },
  1719. {
  1720. "reference": "https://spdx.org/licenses/HTMLTIDY.html",
  1721. "isDeprecatedLicenseId": false,
  1722. "detailsUrl": "https://spdx.org/licenses/HTMLTIDY.json",
  1723. "referenceNumber": 137,
  1724. "name": "HTML Tidy License",
  1725. "licenseId": "HTMLTIDY",
  1726. "seeAlso": [
  1727. "https://github.com/htacg/tidy-html5/blob/next/README/LICENSE.md"
  1728. ],
  1729. "isOsiApproved": false
  1730. },
  1731. {
  1732. "reference": "https://spdx.org/licenses/AFL-2.1.html",
  1733. "isDeprecatedLicenseId": false,
  1734. "detailsUrl": "https://spdx.org/licenses/AFL-2.1.json",
  1735. "referenceNumber": 138,
  1736. "name": "Academic Free License v2.1",
  1737. "licenseId": "AFL-2.1",
  1738. "seeAlso": [
  1739. "http://opensource.linux-mirror.org/licenses/afl-2.1.txt"
  1740. ],
  1741. "isOsiApproved": true,
  1742. "isFsfLibre": true
  1743. },
  1744. {
  1745. "reference": "https://spdx.org/licenses/MITNFA.html",
  1746. "isDeprecatedLicenseId": false,
  1747. "detailsUrl": "https://spdx.org/licenses/MITNFA.json",
  1748. "referenceNumber": 139,
  1749. "name": "MIT +no-false-attribs license",
  1750. "licenseId": "MITNFA",
  1751. "seeAlso": [
  1752. "https://fedoraproject.org/wiki/Licensing/MITNFA"
  1753. ],
  1754. "isOsiApproved": false
  1755. },
  1756. {
  1757. "reference": "https://spdx.org/licenses/TU-Berlin-1.0.html",
  1758. "isDeprecatedLicenseId": false,
  1759. "detailsUrl": "https://spdx.org/licenses/TU-Berlin-1.0.json",
  1760. "referenceNumber": 140,
  1761. "name": "Technische Universitaet Berlin License 1.0",
  1762. "licenseId": "TU-Berlin-1.0",
  1763. "seeAlso": [
  1764. "https://github.com/swh/ladspa/blob/7bf6f3799fdba70fda297c2d8fd9f526803d9680/gsm/COPYRIGHT"
  1765. ],
  1766. "isOsiApproved": false
  1767. },
  1768. {
  1769. "reference": "https://spdx.org/licenses/OCLC-2.0.html",
  1770. "isDeprecatedLicenseId": false,
  1771. "detailsUrl": "https://spdx.org/licenses/OCLC-2.0.json",
  1772. "referenceNumber": 141,
  1773. "name": "OCLC Research Public License 2.0",
  1774. "licenseId": "OCLC-2.0",
  1775. "seeAlso": [
  1776. "http://www.oclc.org/research/activities/software/license/v2final.htm",
  1777. "https://opensource.org/licenses/OCLC-2.0"
  1778. ],
  1779. "isOsiApproved": true
  1780. },
  1781. {
  1782. "reference": "https://spdx.org/licenses/GFDL-1.2-no-invariants-only.html",
  1783. "isDeprecatedLicenseId": false,
  1784. "detailsUrl": "https://spdx.org/licenses/GFDL-1.2-no-invariants-only.json",
  1785. "referenceNumber": 142,
  1786. "name": "GNU Free Documentation License v1.2 only - no invariants",
  1787. "licenseId": "GFDL-1.2-no-invariants-only",
  1788. "seeAlso": [
  1789. "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt"
  1790. ],
  1791. "isOsiApproved": false
  1792. },
  1793. {
  1794. "reference": "https://spdx.org/licenses/HaskellReport.html",
  1795. "isDeprecatedLicenseId": false,
  1796. "detailsUrl": "https://spdx.org/licenses/HaskellReport.json",
  1797. "referenceNumber": 143,
  1798. "name": "Haskell Language Report License",
  1799. "licenseId": "HaskellReport",
  1800. "seeAlso": [
  1801. "https://fedoraproject.org/wiki/Licensing/Haskell_Language_Report_License"
  1802. ],
  1803. "isOsiApproved": false
  1804. },
  1805. {
  1806. "reference": "https://spdx.org/licenses/YPL-1.1.html",
  1807. "isDeprecatedLicenseId": false,
  1808. "detailsUrl": "https://spdx.org/licenses/YPL-1.1.json",
  1809. "referenceNumber": 144,
  1810. "name": "Yahoo! Public License v1.1",
  1811. "licenseId": "YPL-1.1",
  1812. "seeAlso": [
  1813. "http://www.zimbra.com/license/yahoo_public_license_1.1.html"
  1814. ],
  1815. "isOsiApproved": false,
  1816. "isFsfLibre": true
  1817. },
  1818. {
  1819. "reference": "https://spdx.org/licenses/OSL-2.1.html",
  1820. "isDeprecatedLicenseId": false,
  1821. "detailsUrl": "https://spdx.org/licenses/OSL-2.1.json",
  1822. "referenceNumber": 145,
  1823. "name": "Open Software License 2.1",
  1824. "licenseId": "OSL-2.1",
  1825. "seeAlso": [
  1826. "http://web.archive.org/web/20050212003940/http://www.rosenlaw.com/osl21.htm",
  1827. "https://opensource.org/licenses/OSL-2.1"
  1828. ],
  1829. "isOsiApproved": true,
  1830. "isFsfLibre": true
  1831. },
  1832. {
  1833. "reference": "https://spdx.org/licenses/EUPL-1.2.html",
  1834. "isDeprecatedLicenseId": false,
  1835. "detailsUrl": "https://spdx.org/licenses/EUPL-1.2.json",
  1836. "referenceNumber": 146,
  1837. "name": "European Union Public License 1.2",
  1838. "licenseId": "EUPL-1.2",
  1839. "seeAlso": [
  1840. "https://joinup.ec.europa.eu/page/eupl-text-11-12",
  1841. "https://joinup.ec.europa.eu/sites/default/files/custom-page/attachment/eupl_v1.2_en.pdf",
  1842. "https://joinup.ec.europa.eu/sites/default/files/custom-page/attachment/2020-03/EUPL-1.2%20EN.txt",
  1843. "https://joinup.ec.europa.eu/sites/default/files/inline-files/EUPL%20v1_2%20EN(1).txt",
  1844. "http://eur-lex.europa.eu/legal-content/EN/TXT/HTML/?uri\u003dCELEX:32017D0863",
  1845. "https://opensource.org/licenses/EUPL-1.2"
  1846. ],
  1847. "isOsiApproved": true
  1848. },
  1849. {
  1850. "reference": "https://spdx.org/licenses/BSD-2-Clause.html",
  1851. "isDeprecatedLicenseId": false,
  1852. "detailsUrl": "https://spdx.org/licenses/BSD-2-Clause.json",
  1853. "referenceNumber": 147,
  1854. "name": "BSD 2-Clause \"Simplified\" License",
  1855. "licenseId": "BSD-2-Clause",
  1856. "seeAlso": [
  1857. "https://opensource.org/licenses/BSD-2-Clause"
  1858. ],
  1859. "isOsiApproved": true
  1860. },
  1861. {
  1862. "reference": "https://spdx.org/licenses/GFDL-1.3-invariants-or-later.html",
  1863. "isDeprecatedLicenseId": false,
  1864. "detailsUrl": "https://spdx.org/licenses/GFDL-1.3-invariants-or-later.json",
  1865. "referenceNumber": 148,
  1866. "name": "GNU Free Documentation License v1.3 or later - invariants",
  1867. "licenseId": "GFDL-1.3-invariants-or-later",
  1868. "seeAlso": [
  1869. "https://www.gnu.org/licenses/fdl-1.3.txt"
  1870. ],
  1871. "isOsiApproved": false
  1872. },
  1873. {
  1874. "reference": "https://spdx.org/licenses/LAL-1.3.html",
  1875. "isDeprecatedLicenseId": false,
  1876. "detailsUrl": "https://spdx.org/licenses/LAL-1.3.json",
  1877. "referenceNumber": 149,
  1878. "name": "Licence Art Libre 1.3",
  1879. "licenseId": "LAL-1.3",
  1880. "seeAlso": [
  1881. "https://artlibre.org/"
  1882. ],
  1883. "isOsiApproved": false
  1884. },
  1885. {
  1886. "reference": "https://spdx.org/licenses/NIST-PD.html",
  1887. "isDeprecatedLicenseId": false,
  1888. "detailsUrl": "https://spdx.org/licenses/NIST-PD.json",
  1889. "referenceNumber": 150,
  1890. "name": "NIST Public Domain Notice",
  1891. "licenseId": "NIST-PD",
  1892. "seeAlso": [
  1893. "https://github.com/tcheneau/simpleRPL/blob/e645e69e38dd4e3ccfeceb2db8cba05b7c2e0cd3/LICENSE.txt",
  1894. "https://github.com/tcheneau/Routing/blob/f09f46fcfe636107f22f2c98348188a65a135d98/README.md"
  1895. ],
  1896. "isOsiApproved": false
  1897. },
  1898. {
  1899. "reference": "https://spdx.org/licenses/CC-BY-NC-2.0.html",
  1900. "isDeprecatedLicenseId": false,
  1901. "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-2.0.json",
  1902. "referenceNumber": 151,
  1903. "name": "Creative Commons Attribution Non Commercial 2.0 Generic",
  1904. "licenseId": "CC-BY-NC-2.0",
  1905. "seeAlso": [
  1906. "https://creativecommons.org/licenses/by-nc/2.0/legalcode"
  1907. ],
  1908. "isOsiApproved": false
  1909. },
  1910. {
  1911. "reference": "https://spdx.org/licenses/OFL-1.0-no-RFN.html",
  1912. "isDeprecatedLicenseId": false,
  1913. "detailsUrl": "https://spdx.org/licenses/OFL-1.0-no-RFN.json",
  1914. "referenceNumber": 152,
  1915. "name": "SIL Open Font License 1.0 with no Reserved Font Name",
  1916. "licenseId": "OFL-1.0-no-RFN",
  1917. "seeAlso": [
  1918. "http://scripts.sil.org/cms/scripts/page.php?item_id\u003dOFL10_web"
  1919. ],
  1920. "isOsiApproved": false
  1921. },
  1922. {
  1923. "reference": "https://spdx.org/licenses/CC-BY-2.5.html",
  1924. "isDeprecatedLicenseId": false,
  1925. "detailsUrl": "https://spdx.org/licenses/CC-BY-2.5.json",
  1926. "referenceNumber": 153,
  1927. "name": "Creative Commons Attribution 2.5 Generic",
  1928. "licenseId": "CC-BY-2.5",
  1929. "seeAlso": [
  1930. "https://creativecommons.org/licenses/by/2.5/legalcode"
  1931. ],
  1932. "isOsiApproved": false
  1933. },
  1934. {
  1935. "reference": "https://spdx.org/licenses/CC-BY-NC-4.0.html",
  1936. "isDeprecatedLicenseId": false,
  1937. "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-4.0.json",
  1938. "referenceNumber": 154,
  1939. "name": "Creative Commons Attribution Non Commercial 4.0 International",
  1940. "licenseId": "CC-BY-NC-4.0",
  1941. "seeAlso": [
  1942. "https://creativecommons.org/licenses/by-nc/4.0/legalcode"
  1943. ],
  1944. "isOsiApproved": false
  1945. },
  1946. {
  1947. "reference": "https://spdx.org/licenses/RPL-1.1.html",
  1948. "isDeprecatedLicenseId": false,
  1949. "detailsUrl": "https://spdx.org/licenses/RPL-1.1.json",
  1950. "referenceNumber": 155,
  1951. "name": "Reciprocal Public License 1.1",
  1952. "licenseId": "RPL-1.1",
  1953. "seeAlso": [
  1954. "https://opensource.org/licenses/RPL-1.1"
  1955. ],
  1956. "isOsiApproved": true
  1957. },
  1958. {
  1959. "reference": "https://spdx.org/licenses/RPL-1.5.html",
  1960. "isDeprecatedLicenseId": false,
  1961. "detailsUrl": "https://spdx.org/licenses/RPL-1.5.json",
  1962. "referenceNumber": 156,
  1963. "name": "Reciprocal Public License 1.5",
  1964. "licenseId": "RPL-1.5",
  1965. "seeAlso": [
  1966. "https://opensource.org/licenses/RPL-1.5"
  1967. ],
  1968. "isOsiApproved": true
  1969. },
  1970. {
  1971. "reference": "https://spdx.org/licenses/LGPL-2.1-or-later.html",
  1972. "isDeprecatedLicenseId": false,
  1973. "detailsUrl": "https://spdx.org/licenses/LGPL-2.1-or-later.json",
  1974. "referenceNumber": 157,
  1975. "name": "GNU Lesser General Public License v2.1 or later",
  1976. "licenseId": "LGPL-2.1-or-later",
  1977. "seeAlso": [
  1978. "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html",
  1979. "https://opensource.org/licenses/LGPL-2.1"
  1980. ],
  1981. "isOsiApproved": true,
  1982. "isFsfLibre": true
  1983. },
  1984. {
  1985. "reference": "https://spdx.org/licenses/RPSL-1.0.html",
  1986. "isDeprecatedLicenseId": false,
  1987. "detailsUrl": "https://spdx.org/licenses/RPSL-1.0.json",
  1988. "referenceNumber": 158,
  1989. "name": "RealNetworks Public Source License v1.0",
  1990. "licenseId": "RPSL-1.0",
  1991. "seeAlso": [
  1992. "https://helixcommunity.org/content/rpsl",
  1993. "https://opensource.org/licenses/RPSL-1.0"
  1994. ],
  1995. "isOsiApproved": true,
  1996. "isFsfLibre": true
  1997. },
  1998. {
  1999. "reference": "https://spdx.org/licenses/WTFPL.html",
  2000. "isDeprecatedLicenseId": false,
  2001. "detailsUrl": "https://spdx.org/licenses/WTFPL.json",
  2002. "referenceNumber": 159,
  2003. "name": "Do What The F*ck You Want To Public License",
  2004. "licenseId": "WTFPL",
  2005. "seeAlso": [
  2006. "http://www.wtfpl.net/about/",
  2007. "http://sam.zoy.org/wtfpl/COPYING"
  2008. ],
  2009. "isOsiApproved": false,
  2010. "isFsfLibre": true
  2011. },
  2012. {
  2013. "reference": "https://spdx.org/licenses/SWL.html",
  2014. "isDeprecatedLicenseId": false,
  2015. "detailsUrl": "https://spdx.org/licenses/SWL.json",
  2016. "referenceNumber": 160,
  2017. "name": "Scheme Widget Library (SWL) Software License Agreement",
  2018. "licenseId": "SWL",
  2019. "seeAlso": [
  2020. "https://fedoraproject.org/wiki/Licensing/SWL"
  2021. ],
  2022. "isOsiApproved": false
  2023. },
  2024. {
  2025. "reference": "https://spdx.org/licenses/EUPL-1.0.html",
  2026. "isDeprecatedLicenseId": false,
  2027. "detailsUrl": "https://spdx.org/licenses/EUPL-1.0.json",
  2028. "referenceNumber": 161,
  2029. "name": "European Union Public License 1.0",
  2030. "licenseId": "EUPL-1.0",
  2031. "seeAlso": [
  2032. "http://ec.europa.eu/idabc/en/document/7330.html",
  2033. "http://ec.europa.eu/idabc/servlets/Doc027f.pdf?id\u003d31096"
  2034. ],
  2035. "isOsiApproved": false
  2036. },
  2037. {
  2038. "reference": "https://spdx.org/licenses/LPL-1.02.html",
  2039. "isDeprecatedLicenseId": false,
  2040. "detailsUrl": "https://spdx.org/licenses/LPL-1.02.json",
  2041. "referenceNumber": 162,
  2042. "name": "Lucent Public License v1.02",
  2043. "licenseId": "LPL-1.02",
  2044. "seeAlso": [
  2045. "http://plan9.bell-labs.com/plan9/license.html",
  2046. "https://opensource.org/licenses/LPL-1.02"
  2047. ],
  2048. "isOsiApproved": true,
  2049. "isFsfLibre": true
  2050. },
  2051. {
  2052. "reference": "https://spdx.org/licenses/GLWTPL.html",
  2053. "isDeprecatedLicenseId": false,
  2054. "detailsUrl": "https://spdx.org/licenses/GLWTPL.json",
  2055. "referenceNumber": 163,
  2056. "name": "Good Luck With That Public License",
  2057. "licenseId": "GLWTPL",
  2058. "seeAlso": [
  2059. "https://github.com/me-shaon/GLWTPL/commit/da5f6bc734095efbacb442c0b31e33a65b9d6e85"
  2060. ],
  2061. "isOsiApproved": false
  2062. },
  2063. {
  2064. "reference": "https://spdx.org/licenses/SHL-0.5.html",
  2065. "isDeprecatedLicenseId": false,
  2066. "detailsUrl": "https://spdx.org/licenses/SHL-0.5.json",
  2067. "referenceNumber": 164,
  2068. "name": "Solderpad Hardware License v0.5",
  2069. "licenseId": "SHL-0.5",
  2070. "seeAlso": [
  2071. "https://solderpad.org/licenses/SHL-0.5/"
  2072. ],
  2073. "isOsiApproved": false
  2074. },
  2075. {
  2076. "reference": "https://spdx.org/licenses/W3C.html",
  2077. "isDeprecatedLicenseId": false,
  2078. "detailsUrl": "https://spdx.org/licenses/W3C.json",
  2079. "referenceNumber": 165,
  2080. "name": "W3C Software Notice and License (2002-12-31)",
  2081. "licenseId": "W3C",
  2082. "seeAlso": [
  2083. "http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231.html",
  2084. "https://opensource.org/licenses/W3C"
  2085. ],
  2086. "isOsiApproved": true,
  2087. "isFsfLibre": true
  2088. },
  2089. {
  2090. "reference": "https://spdx.org/licenses/Fair.html",
  2091. "isDeprecatedLicenseId": false,
  2092. "detailsUrl": "https://spdx.org/licenses/Fair.json",
  2093. "referenceNumber": 166,
  2094. "name": "Fair License",
  2095. "licenseId": "Fair",
  2096. "seeAlso": [
  2097. "http://fairlicense.org/",
  2098. "https://opensource.org/licenses/Fair"
  2099. ],
  2100. "isOsiApproved": true
  2101. },
  2102. {
  2103. "reference": "https://spdx.org/licenses/ZPL-1.1.html",
  2104. "isDeprecatedLicenseId": false,
  2105. "detailsUrl": "https://spdx.org/licenses/ZPL-1.1.json",
  2106. "referenceNumber": 167,
  2107. "name": "Zope Public License 1.1",
  2108. "licenseId": "ZPL-1.1",
  2109. "seeAlso": [
  2110. "http://old.zope.org/Resources/License/ZPL-1.1"
  2111. ],
  2112. "isOsiApproved": false
  2113. },
  2114. {
  2115. "reference": "https://spdx.org/licenses/CERN-OHL-S-2.0.html",
  2116. "isDeprecatedLicenseId": false,
  2117. "detailsUrl": "https://spdx.org/licenses/CERN-OHL-S-2.0.json",
  2118. "referenceNumber": 168,
  2119. "name": "CERN Open Hardware Licence Version 2 - Strongly Reciprocal",
  2120. "licenseId": "CERN-OHL-S-2.0",
  2121. "seeAlso": [
  2122. "https://www.ohwr.org/project/cernohl/wikis/Documents/CERN-OHL-version-2"
  2123. ],
  2124. "isOsiApproved": true
  2125. },
  2126. {
  2127. "reference": "https://spdx.org/licenses/BSD-2-Clause-NetBSD.html",
  2128. "isDeprecatedLicenseId": true,
  2129. "detailsUrl": "https://spdx.org/licenses/BSD-2-Clause-NetBSD.json",
  2130. "referenceNumber": 169,
  2131. "name": "BSD 2-Clause NetBSD License",
  2132. "licenseId": "BSD-2-Clause-NetBSD",
  2133. "seeAlso": [
  2134. "http://www.netbsd.org/about/redistribution.html#default"
  2135. ],
  2136. "isOsiApproved": false
  2137. },
  2138. {
  2139. "reference": "https://spdx.org/licenses/Parity-6.0.0.html",
  2140. "isDeprecatedLicenseId": false,
  2141. "detailsUrl": "https://spdx.org/licenses/Parity-6.0.0.json",
  2142. "referenceNumber": 170,
  2143. "name": "The Parity Public License 6.0.0",
  2144. "licenseId": "Parity-6.0.0",
  2145. "seeAlso": [
  2146. "https://paritylicense.com/versions/6.0.0.html"
  2147. ],
  2148. "isOsiApproved": false
  2149. },
  2150. {
  2151. "reference": "https://spdx.org/licenses/EPL-1.0.html",
  2152. "isDeprecatedLicenseId": false,
  2153. "detailsUrl": "https://spdx.org/licenses/EPL-1.0.json",
  2154. "referenceNumber": 171,
  2155. "name": "Eclipse Public License 1.0",
  2156. "licenseId": "EPL-1.0",
  2157. "seeAlso": [
  2158. "http://www.eclipse.org/legal/epl-v10.html",
  2159. "https://opensource.org/licenses/EPL-1.0"
  2160. ],
  2161. "isOsiApproved": true,
  2162. "isFsfLibre": true
  2163. },
  2164. {
  2165. "reference": "https://spdx.org/licenses/eCos-2.0.html",
  2166. "isDeprecatedLicenseId": true,
  2167. "detailsUrl": "https://spdx.org/licenses/eCos-2.0.json",
  2168. "referenceNumber": 172,
  2169. "name": "eCos license version 2.0",
  2170. "licenseId": "eCos-2.0",
  2171. "seeAlso": [
  2172. "https://www.gnu.org/licenses/ecos-license.html"
  2173. ],
  2174. "isOsiApproved": false
  2175. },
  2176. {
  2177. "reference": "https://spdx.org/licenses/Frameworx-1.0.html",
  2178. "isDeprecatedLicenseId": false,
  2179. "detailsUrl": "https://spdx.org/licenses/Frameworx-1.0.json",
  2180. "referenceNumber": 173,
  2181. "name": "Frameworx Open License 1.0",
  2182. "licenseId": "Frameworx-1.0",
  2183. "seeAlso": [
  2184. "https://opensource.org/licenses/Frameworx-1.0"
  2185. ],
  2186. "isOsiApproved": true
  2187. },
  2188. {
  2189. "reference": "https://spdx.org/licenses/CC-BY-NC-SA-2.0-UK.html",
  2190. "isDeprecatedLicenseId": false,
  2191. "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-SA-2.0-UK.json",
  2192. "referenceNumber": 174,
  2193. "name": "Creative Commons Attribution Non Commercial Share Alike 2.0 England and Wales",
  2194. "licenseId": "CC-BY-NC-SA-2.0-UK",
  2195. "seeAlso": [
  2196. "https://creativecommons.org/licenses/by-nc-sa/2.0/uk/legalcode"
  2197. ],
  2198. "isOsiApproved": false
  2199. },
  2200. {
  2201. "reference": "https://spdx.org/licenses/NPL-1.1.html",
  2202. "isDeprecatedLicenseId": false,
  2203. "detailsUrl": "https://spdx.org/licenses/NPL-1.1.json",
  2204. "referenceNumber": 175,
  2205. "name": "Netscape Public License v1.1",
  2206. "licenseId": "NPL-1.1",
  2207. "seeAlso": [
  2208. "http://www.mozilla.org/MPL/NPL/1.1/"
  2209. ],
  2210. "isOsiApproved": false,
  2211. "isFsfLibre": true
  2212. },
  2213. {
  2214. "reference": "https://spdx.org/licenses/GFDL-1.1.html",
  2215. "isDeprecatedLicenseId": true,
  2216. "detailsUrl": "https://spdx.org/licenses/GFDL-1.1.json",
  2217. "referenceNumber": 176,
  2218. "name": "GNU Free Documentation License v1.1",
  2219. "licenseId": "GFDL-1.1",
  2220. "seeAlso": [
  2221. "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt"
  2222. ],
  2223. "isOsiApproved": false,
  2224. "isFsfLibre": true
  2225. },
  2226. {
  2227. "reference": "https://spdx.org/licenses/BSD-Protection.html",
  2228. "isDeprecatedLicenseId": false,
  2229. "detailsUrl": "https://spdx.org/licenses/BSD-Protection.json",
  2230. "referenceNumber": 177,
  2231. "name": "BSD Protection License",
  2232. "licenseId": "BSD-Protection",
  2233. "seeAlso": [
  2234. "https://fedoraproject.org/wiki/Licensing/BSD_Protection_License"
  2235. ],
  2236. "isOsiApproved": false
  2237. },
  2238. {
  2239. "reference": "https://spdx.org/licenses/TCL.html",
  2240. "isDeprecatedLicenseId": false,
  2241. "detailsUrl": "https://spdx.org/licenses/TCL.json",
  2242. "referenceNumber": 178,
  2243. "name": "TCL/TK License",
  2244. "licenseId": "TCL",
  2245. "seeAlso": [
  2246. "http://www.tcl.tk/software/tcltk/license.html",
  2247. "https://fedoraproject.org/wiki/Licensing/TCL"
  2248. ],
  2249. "isOsiApproved": false
  2250. },
  2251. {
  2252. "reference": "https://spdx.org/licenses/Cube.html",
  2253. "isDeprecatedLicenseId": false,
  2254. "detailsUrl": "https://spdx.org/licenses/Cube.json",
  2255. "referenceNumber": 179,
  2256. "name": "Cube License",
  2257. "licenseId": "Cube",
  2258. "seeAlso": [
  2259. "https://fedoraproject.org/wiki/Licensing/Cube"
  2260. ],
  2261. "isOsiApproved": false
  2262. },
  2263. {
  2264. "reference": "https://spdx.org/licenses/ISC.html",
  2265. "isDeprecatedLicenseId": false,
  2266. "detailsUrl": "https://spdx.org/licenses/ISC.json",
  2267. "referenceNumber": 180,
  2268. "name": "ISC License",
  2269. "licenseId": "ISC",
  2270. "seeAlso": [
  2271. "https://www.isc.org/licenses/",
  2272. "https://www.isc.org/downloads/software-support-policy/isc-license/",
  2273. "https://opensource.org/licenses/ISC"
  2274. ],
  2275. "isOsiApproved": true,
  2276. "isFsfLibre": true
  2277. },
  2278. {
  2279. "reference": "https://spdx.org/licenses/Spencer-99.html",
  2280. "isDeprecatedLicenseId": false,
  2281. "detailsUrl": "https://spdx.org/licenses/Spencer-99.json",
  2282. "referenceNumber": 181,
  2283. "name": "Spencer License 99",
  2284. "licenseId": "Spencer-99",
  2285. "seeAlso": [
  2286. "http://www.opensource.apple.com/source/tcl/tcl-5/tcl/generic/regfronts.c"
  2287. ],
  2288. "isOsiApproved": false
  2289. },
  2290. {
  2291. "reference": "https://spdx.org/licenses/PolyForm-Small-Business-1.0.0.html",
  2292. "isDeprecatedLicenseId": false,
  2293. "detailsUrl": "https://spdx.org/licenses/PolyForm-Small-Business-1.0.0.json",
  2294. "referenceNumber": 182,
  2295. "name": "PolyForm Small Business License 1.0.0",
  2296. "licenseId": "PolyForm-Small-Business-1.0.0",
  2297. "seeAlso": [
  2298. "https://polyformproject.org/licenses/small-business/1.0.0"
  2299. ],
  2300. "isOsiApproved": false
  2301. },
  2302. {
  2303. "reference": "https://spdx.org/licenses/Apache-1.0.html",
  2304. "isDeprecatedLicenseId": false,
  2305. "detailsUrl": "https://spdx.org/licenses/Apache-1.0.json",
  2306. "referenceNumber": 183,
  2307. "name": "Apache License 1.0",
  2308. "licenseId": "Apache-1.0",
  2309. "seeAlso": [
  2310. "http://www.apache.org/licenses/LICENSE-1.0"
  2311. ],
  2312. "isOsiApproved": false,
  2313. "isFsfLibre": true
  2314. },
  2315. {
  2316. "reference": "https://spdx.org/licenses/GFDL-1.3-no-invariants-or-later.html",
  2317. "isDeprecatedLicenseId": false,
  2318. "detailsUrl": "https://spdx.org/licenses/GFDL-1.3-no-invariants-or-later.json",
  2319. "referenceNumber": 184,
  2320. "name": "GNU Free Documentation License v1.3 or later - no invariants",
  2321. "licenseId": "GFDL-1.3-no-invariants-or-later",
  2322. "seeAlso": [
  2323. "https://www.gnu.org/licenses/fdl-1.3.txt"
  2324. ],
  2325. "isOsiApproved": false
  2326. },
  2327. {
  2328. "reference": "https://spdx.org/licenses/CC-BY-SA-4.0.html",
  2329. "isDeprecatedLicenseId": false,
  2330. "detailsUrl": "https://spdx.org/licenses/CC-BY-SA-4.0.json",
  2331. "referenceNumber": 185,
  2332. "name": "Creative Commons Attribution Share Alike 4.0 International",
  2333. "licenseId": "CC-BY-SA-4.0",
  2334. "seeAlso": [
  2335. "https://creativecommons.org/licenses/by-sa/4.0/legalcode"
  2336. ],
  2337. "isOsiApproved": false,
  2338. "isFsfLibre": true
  2339. },
  2340. {
  2341. "reference": "https://spdx.org/licenses/CC-BY-NC-ND-2.0.html",
  2342. "isDeprecatedLicenseId": false,
  2343. "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-ND-2.0.json",
  2344. "referenceNumber": 186,
  2345. "name": "Creative Commons Attribution Non Commercial No Derivatives 2.0 Generic",
  2346. "licenseId": "CC-BY-NC-ND-2.0",
  2347. "seeAlso": [
  2348. "https://creativecommons.org/licenses/by-nc-nd/2.0/legalcode"
  2349. ],
  2350. "isOsiApproved": false
  2351. },
  2352. {
  2353. "reference": "https://spdx.org/licenses/Plexus.html",
  2354. "isDeprecatedLicenseId": false,
  2355. "detailsUrl": "https://spdx.org/licenses/Plexus.json",
  2356. "referenceNumber": 187,
  2357. "name": "Plexus Classworlds License",
  2358. "licenseId": "Plexus",
  2359. "seeAlso": [
  2360. "https://fedoraproject.org/wiki/Licensing/Plexus_Classworlds_License"
  2361. ],
  2362. "isOsiApproved": false
  2363. },
  2364. {
  2365. "reference": "https://spdx.org/licenses/CC-BY-SA-1.0.html",
  2366. "isDeprecatedLicenseId": false,
  2367. "detailsUrl": "https://spdx.org/licenses/CC-BY-SA-1.0.json",
  2368. "referenceNumber": 188,
  2369. "name": "Creative Commons Attribution Share Alike 1.0 Generic",
  2370. "licenseId": "CC-BY-SA-1.0",
  2371. "seeAlso": [
  2372. "https://creativecommons.org/licenses/by-sa/1.0/legalcode"
  2373. ],
  2374. "isOsiApproved": false
  2375. },
  2376. {
  2377. "reference": "https://spdx.org/licenses/CC-BY-NC-SA-2.0-FR.html",
  2378. "isDeprecatedLicenseId": false,
  2379. "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-SA-2.0-FR.json",
  2380. "referenceNumber": 189,
  2381. "name": "Creative Commons Attribution-NonCommercial-ShareAlike 2.0 France",
  2382. "licenseId": "CC-BY-NC-SA-2.0-FR",
  2383. "seeAlso": [
  2384. "https://creativecommons.org/licenses/by-nc-sa/2.0/fr/legalcode"
  2385. ],
  2386. "isOsiApproved": false
  2387. },
  2388. {
  2389. "reference": "https://spdx.org/licenses/LGPL-3.0+.html",
  2390. "isDeprecatedLicenseId": true,
  2391. "detailsUrl": "https://spdx.org/licenses/LGPL-3.0+.json",
  2392. "referenceNumber": 190,
  2393. "name": "GNU Lesser General Public License v3.0 or later",
  2394. "licenseId": "LGPL-3.0+",
  2395. "seeAlso": [
  2396. "https://www.gnu.org/licenses/lgpl-3.0-standalone.html",
  2397. "https://opensource.org/licenses/LGPL-3.0"
  2398. ],
  2399. "isOsiApproved": true
  2400. },
  2401. {
  2402. "reference": "https://spdx.org/licenses/Watcom-1.0.html",
  2403. "isDeprecatedLicenseId": false,
  2404. "detailsUrl": "https://spdx.org/licenses/Watcom-1.0.json",
  2405. "referenceNumber": 191,
  2406. "name": "Sybase Open Watcom Public License 1.0",
  2407. "licenseId": "Watcom-1.0",
  2408. "seeAlso": [
  2409. "https://opensource.org/licenses/Watcom-1.0"
  2410. ],
  2411. "isOsiApproved": true
  2412. },
  2413. {
  2414. "reference": "https://spdx.org/licenses/CDDL-1.0.html",
  2415. "isDeprecatedLicenseId": false,
  2416. "detailsUrl": "https://spdx.org/licenses/CDDL-1.0.json",
  2417. "referenceNumber": 192,
  2418. "name": "Common Development and Distribution License 1.0",
  2419. "licenseId": "CDDL-1.0",
  2420. "seeAlso": [
  2421. "https://opensource.org/licenses/cddl1"
  2422. ],
  2423. "isOsiApproved": true,
  2424. "isFsfLibre": true
  2425. },
  2426. {
  2427. "reference": "https://spdx.org/licenses/CAL-1.0-Combined-Work-Exception.html",
  2428. "isDeprecatedLicenseId": false,
  2429. "detailsUrl": "https://spdx.org/licenses/CAL-1.0-Combined-Work-Exception.json",
  2430. "referenceNumber": 193,
  2431. "name": "Cryptographic Autonomy License 1.0 (Combined Work Exception)",
  2432. "licenseId": "CAL-1.0-Combined-Work-Exception",
  2433. "seeAlso": [
  2434. "http://cryptographicautonomylicense.com/license-text.html",
  2435. "https://opensource.org/licenses/CAL-1.0"
  2436. ],
  2437. "isOsiApproved": true
  2438. },
  2439. {
  2440. "reference": "https://spdx.org/licenses/SMLNJ.html",
  2441. "isDeprecatedLicenseId": false,
  2442. "detailsUrl": "https://spdx.org/licenses/SMLNJ.json",
  2443. "referenceNumber": 194,
  2444. "name": "Standard ML of New Jersey License",
  2445. "licenseId": "SMLNJ",
  2446. "seeAlso": [
  2447. "https://www.smlnj.org/license.html"
  2448. ],
  2449. "isOsiApproved": false,
  2450. "isFsfLibre": true
  2451. },
  2452. {
  2453. "reference": "https://spdx.org/licenses/copyleft-next-0.3.0.html",
  2454. "isDeprecatedLicenseId": false,
  2455. "detailsUrl": "https://spdx.org/licenses/copyleft-next-0.3.0.json",
  2456. "referenceNumber": 195,
  2457. "name": "copyleft-next 0.3.0",
  2458. "licenseId": "copyleft-next-0.3.0",
  2459. "seeAlso": [
  2460. "https://github.com/copyleft-next/copyleft-next/blob/master/Releases/copyleft-next-0.3.0"
  2461. ],
  2462. "isOsiApproved": false
  2463. },
  2464. {
  2465. "reference": "https://spdx.org/licenses/GPL-2.0-with-font-exception.html",
  2466. "isDeprecatedLicenseId": true,
  2467. "detailsUrl": "https://spdx.org/licenses/GPL-2.0-with-font-exception.json",
  2468. "referenceNumber": 196,
  2469. "name": "GNU General Public License v2.0 w/Font exception",
  2470. "licenseId": "GPL-2.0-with-font-exception",
  2471. "seeAlso": [
  2472. "https://www.gnu.org/licenses/gpl-faq.html#FontException"
  2473. ],
  2474. "isOsiApproved": false
  2475. },
  2476. {
  2477. "reference": "https://spdx.org/licenses/CC-BY-NC-SA-2.0.html",
  2478. "isDeprecatedLicenseId": false,
  2479. "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-SA-2.0.json",
  2480. "referenceNumber": 197,
  2481. "name": "Creative Commons Attribution Non Commercial Share Alike 2.0 Generic",
  2482. "licenseId": "CC-BY-NC-SA-2.0",
  2483. "seeAlso": [
  2484. "https://creativecommons.org/licenses/by-nc-sa/2.0/legalcode"
  2485. ],
  2486. "isOsiApproved": false
  2487. },
  2488. {
  2489. "reference": "https://spdx.org/licenses/AGPL-3.0-or-later.html",
  2490. "isDeprecatedLicenseId": false,
  2491. "detailsUrl": "https://spdx.org/licenses/AGPL-3.0-or-later.json",
  2492. "referenceNumber": 198,
  2493. "name": "GNU Affero General Public License v3.0 or later",
  2494. "licenseId": "AGPL-3.0-or-later",
  2495. "seeAlso": [
  2496. "https://www.gnu.org/licenses/agpl.txt",
  2497. "https://opensource.org/licenses/AGPL-3.0"
  2498. ],
  2499. "isOsiApproved": true,
  2500. "isFsfLibre": true
  2501. },
  2502. {
  2503. "reference": "https://spdx.org/licenses/CDLA-Sharing-1.0.html",
  2504. "isDeprecatedLicenseId": false,
  2505. "detailsUrl": "https://spdx.org/licenses/CDLA-Sharing-1.0.json",
  2506. "referenceNumber": 199,
  2507. "name": "Community Data License Agreement Sharing 1.0",
  2508. "licenseId": "CDLA-Sharing-1.0",
  2509. "seeAlso": [
  2510. "https://cdla.io/sharing-1-0"
  2511. ],
  2512. "isOsiApproved": false
  2513. },
  2514. {
  2515. "reference": "https://spdx.org/licenses/GFDL-1.1-invariants-or-later.html",
  2516. "isDeprecatedLicenseId": false,
  2517. "detailsUrl": "https://spdx.org/licenses/GFDL-1.1-invariants-or-later.json",
  2518. "referenceNumber": 200,
  2519. "name": "GNU Free Documentation License v1.1 or later - invariants",
  2520. "licenseId": "GFDL-1.1-invariants-or-later",
  2521. "seeAlso": [
  2522. "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt"
  2523. ],
  2524. "isOsiApproved": false
  2525. },
  2526. {
  2527. "reference": "https://spdx.org/licenses/CC-BY-ND-1.0.html",
  2528. "isDeprecatedLicenseId": false,
  2529. "detailsUrl": "https://spdx.org/licenses/CC-BY-ND-1.0.json",
  2530. "referenceNumber": 201,
  2531. "name": "Creative Commons Attribution No Derivatives 1.0 Generic",
  2532. "licenseId": "CC-BY-ND-1.0",
  2533. "seeAlso": [
  2534. "https://creativecommons.org/licenses/by-nd/1.0/legalcode"
  2535. ],
  2536. "isOsiApproved": false
  2537. },
  2538. {
  2539. "reference": "https://spdx.org/licenses/GPL-1.0.html",
  2540. "isDeprecatedLicenseId": true,
  2541. "detailsUrl": "https://spdx.org/licenses/GPL-1.0.json",
  2542. "referenceNumber": 202,
  2543. "name": "GNU General Public License v1.0 only",
  2544. "licenseId": "GPL-1.0",
  2545. "seeAlso": [
  2546. "https://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html"
  2547. ],
  2548. "isOsiApproved": false
  2549. },
  2550. {
  2551. "reference": "https://spdx.org/licenses/Zimbra-1.4.html",
  2552. "isDeprecatedLicenseId": false,
  2553. "detailsUrl": "https://spdx.org/licenses/Zimbra-1.4.json",
  2554. "referenceNumber": 203,
  2555. "name": "Zimbra Public License v1.4",
  2556. "licenseId": "Zimbra-1.4",
  2557. "seeAlso": [
  2558. "http://www.zimbra.com/legal/zimbra-public-license-1-4"
  2559. ],
  2560. "isOsiApproved": false
  2561. },
  2562. {
  2563. "reference": "https://spdx.org/licenses/BSD-2-Clause-Patent.html",
  2564. "isDeprecatedLicenseId": false,
  2565. "detailsUrl": "https://spdx.org/licenses/BSD-2-Clause-Patent.json",
  2566. "referenceNumber": 204,
  2567. "name": "BSD-2-Clause Plus Patent License",
  2568. "licenseId": "BSD-2-Clause-Patent",
  2569. "seeAlso": [
  2570. "https://opensource.org/licenses/BSDplusPatent"
  2571. ],
  2572. "isOsiApproved": true
  2573. },
  2574. {
  2575. "reference": "https://spdx.org/licenses/GFDL-1.2-invariants-only.html",
  2576. "isDeprecatedLicenseId": false,
  2577. "detailsUrl": "https://spdx.org/licenses/GFDL-1.2-invariants-only.json",
  2578. "referenceNumber": 205,
  2579. "name": "GNU Free Documentation License v1.2 only - invariants",
  2580. "licenseId": "GFDL-1.2-invariants-only",
  2581. "seeAlso": [
  2582. "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt"
  2583. ],
  2584. "isOsiApproved": false
  2585. },
  2586. {
  2587. "reference": "https://spdx.org/licenses/CC-BY-1.0.html",
  2588. "isDeprecatedLicenseId": false,
  2589. "detailsUrl": "https://spdx.org/licenses/CC-BY-1.0.json",
  2590. "referenceNumber": 206,
  2591. "name": "Creative Commons Attribution 1.0 Generic",
  2592. "licenseId": "CC-BY-1.0",
  2593. "seeAlso": [
  2594. "https://creativecommons.org/licenses/by/1.0/legalcode"
  2595. ],
  2596. "isOsiApproved": false
  2597. },
  2598. {
  2599. "reference": "https://spdx.org/licenses/CC-BY-SA-3.0.html",
  2600. "isDeprecatedLicenseId": false,
  2601. "detailsUrl": "https://spdx.org/licenses/CC-BY-SA-3.0.json",
  2602. "referenceNumber": 207,
  2603. "name": "Creative Commons Attribution Share Alike 3.0 Unported",
  2604. "licenseId": "CC-BY-SA-3.0",
  2605. "seeAlso": [
  2606. "https://creativecommons.org/licenses/by-sa/3.0/legalcode"
  2607. ],
  2608. "isOsiApproved": false
  2609. },
  2610. {
  2611. "reference": "https://spdx.org/licenses/SSH-OpenSSH.html",
  2612. "isDeprecatedLicenseId": false,
  2613. "detailsUrl": "https://spdx.org/licenses/SSH-OpenSSH.json",
  2614. "referenceNumber": 208,
  2615. "name": "SSH OpenSSH license",
  2616. "licenseId": "SSH-OpenSSH",
  2617. "seeAlso": [
  2618. "https://github.com/openssh/openssh-portable/blob/1b11ea7c58cd5c59838b5fa574cd456d6047b2d4/LICENCE#L10"
  2619. ],
  2620. "isOsiApproved": false
  2621. },
  2622. {
  2623. "reference": "https://spdx.org/licenses/BSL-1.0.html",
  2624. "isDeprecatedLicenseId": false,
  2625. "detailsUrl": "https://spdx.org/licenses/BSL-1.0.json",
  2626. "referenceNumber": 209,
  2627. "name": "Boost Software License 1.0",
  2628. "licenseId": "BSL-1.0",
  2629. "seeAlso": [
  2630. "http://www.boost.org/LICENSE_1_0.txt",
  2631. "https://opensource.org/licenses/BSL-1.0"
  2632. ],
  2633. "isOsiApproved": true,
  2634. "isFsfLibre": true
  2635. },
  2636. {
  2637. "reference": "https://spdx.org/licenses/ANTLR-PD-fallback.html",
  2638. "isDeprecatedLicenseId": false,
  2639. "detailsUrl": "https://spdx.org/licenses/ANTLR-PD-fallback.json",
  2640. "referenceNumber": 210,
  2641. "name": "ANTLR Software Rights Notice with license fallback",
  2642. "licenseId": "ANTLR-PD-fallback",
  2643. "seeAlso": [
  2644. "http://www.antlr2.org/license.html"
  2645. ],
  2646. "isOsiApproved": false
  2647. },
  2648. {
  2649. "reference": "https://spdx.org/licenses/OGL-UK-3.0.html",
  2650. "isDeprecatedLicenseId": false,
  2651. "detailsUrl": "https://spdx.org/licenses/OGL-UK-3.0.json",
  2652. "referenceNumber": 211,
  2653. "name": "Open Government Licence v3.0",
  2654. "licenseId": "OGL-UK-3.0",
  2655. "seeAlso": [
  2656. "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/"
  2657. ],
  2658. "isOsiApproved": false
  2659. },
  2660. {
  2661. "reference": "https://spdx.org/licenses/Sleepycat.html",
  2662. "isDeprecatedLicenseId": false,
  2663. "detailsUrl": "https://spdx.org/licenses/Sleepycat.json",
  2664. "referenceNumber": 212,
  2665. "name": "Sleepycat License",
  2666. "licenseId": "Sleepycat",
  2667. "seeAlso": [
  2668. "https://opensource.org/licenses/Sleepycat"
  2669. ],
  2670. "isOsiApproved": true,
  2671. "isFsfLibre": true
  2672. },
  2673. {
  2674. "reference": "https://spdx.org/licenses/dvipdfm.html",
  2675. "isDeprecatedLicenseId": false,
  2676. "detailsUrl": "https://spdx.org/licenses/dvipdfm.json",
  2677. "referenceNumber": 213,
  2678. "name": "dvipdfm License",
  2679. "licenseId": "dvipdfm",
  2680. "seeAlso": [
  2681. "https://fedoraproject.org/wiki/Licensing/dvipdfm"
  2682. ],
  2683. "isOsiApproved": false
  2684. },
  2685. {
  2686. "reference": "https://spdx.org/licenses/EPL-2.0.html",
  2687. "isDeprecatedLicenseId": false,
  2688. "detailsUrl": "https://spdx.org/licenses/EPL-2.0.json",
  2689. "referenceNumber": 214,
  2690. "name": "Eclipse Public License 2.0",
  2691. "licenseId": "EPL-2.0",
  2692. "seeAlso": [
  2693. "https://www.eclipse.org/legal/epl-2.0",
  2694. "https://www.opensource.org/licenses/EPL-2.0"
  2695. ],
  2696. "isOsiApproved": true,
  2697. "isFsfLibre": true
  2698. },
  2699. {
  2700. "reference": "https://spdx.org/licenses/CC-BY-ND-2.5.html",
  2701. "isDeprecatedLicenseId": false,
  2702. "detailsUrl": "https://spdx.org/licenses/CC-BY-ND-2.5.json",
  2703. "referenceNumber": 215,
  2704. "name": "Creative Commons Attribution No Derivatives 2.5 Generic",
  2705. "licenseId": "CC-BY-ND-2.5",
  2706. "seeAlso": [
  2707. "https://creativecommons.org/licenses/by-nd/2.5/legalcode"
  2708. ],
  2709. "isOsiApproved": false
  2710. },
  2711. {
  2712. "reference": "https://spdx.org/licenses/AFL-1.2.html",
  2713. "isDeprecatedLicenseId": false,
  2714. "detailsUrl": "https://spdx.org/licenses/AFL-1.2.json",
  2715. "referenceNumber": 216,
  2716. "name": "Academic Free License v1.2",
  2717. "licenseId": "AFL-1.2",
  2718. "seeAlso": [
  2719. "http://opensource.linux-mirror.org/licenses/afl-1.2.txt",
  2720. "http://wayback.archive.org/web/20021204204652/http://www.opensource.org/licenses/academic.php"
  2721. ],
  2722. "isOsiApproved": true,
  2723. "isFsfLibre": true
  2724. },
  2725. {
  2726. "reference": "https://spdx.org/licenses/CC-BY-ND-3.0-DE.html",
  2727. "isDeprecatedLicenseId": false,
  2728. "detailsUrl": "https://spdx.org/licenses/CC-BY-ND-3.0-DE.json",
  2729. "referenceNumber": 217,
  2730. "name": "Creative Commons Attribution No Derivatives 3.0 Germany",
  2731. "licenseId": "CC-BY-ND-3.0-DE",
  2732. "seeAlso": [
  2733. "https://creativecommons.org/licenses/by-nd/3.0/de/legalcode"
  2734. ],
  2735. "isOsiApproved": false
  2736. },
  2737. {
  2738. "reference": "https://spdx.org/licenses/Apache-2.0.html",
  2739. "isDeprecatedLicenseId": false,
  2740. "detailsUrl": "https://spdx.org/licenses/Apache-2.0.json",
  2741. "referenceNumber": 218,
  2742. "name": "Apache License 2.0",
  2743. "licenseId": "Apache-2.0",
  2744. "seeAlso": [
  2745. "https://www.apache.org/licenses/LICENSE-2.0",
  2746. "https://opensource.org/licenses/Apache-2.0"
  2747. ],
  2748. "isOsiApproved": true,
  2749. "isFsfLibre": true
  2750. },
  2751. {
  2752. "reference": "https://spdx.org/licenses/LPPL-1.3c.html",
  2753. "isDeprecatedLicenseId": false,
  2754. "detailsUrl": "https://spdx.org/licenses/LPPL-1.3c.json",
  2755. "referenceNumber": 219,
  2756. "name": "LaTeX Project Public License v1.3c",
  2757. "licenseId": "LPPL-1.3c",
  2758. "seeAlso": [
  2759. "http://www.latex-project.org/lppl/lppl-1-3c.txt",
  2760. "https://opensource.org/licenses/LPPL-1.3c"
  2761. ],
  2762. "isOsiApproved": true
  2763. },
  2764. {
  2765. "reference": "https://spdx.org/licenses/ErlPL-1.1.html",
  2766. "isDeprecatedLicenseId": false,
  2767. "detailsUrl": "https://spdx.org/licenses/ErlPL-1.1.json",
  2768. "referenceNumber": 220,
  2769. "name": "Erlang Public License v1.1",
  2770. "licenseId": "ErlPL-1.1",
  2771. "seeAlso": [
  2772. "http://www.erlang.org/EPLICENSE"
  2773. ],
  2774. "isOsiApproved": false
  2775. },
  2776. {
  2777. "reference": "https://spdx.org/licenses/MulanPSL-1.0.html",
  2778. "isDeprecatedLicenseId": false,
  2779. "detailsUrl": "https://spdx.org/licenses/MulanPSL-1.0.json",
  2780. "referenceNumber": 221,
  2781. "name": "Mulan Permissive Software License, Version 1",
  2782. "licenseId": "MulanPSL-1.0",
  2783. "seeAlso": [
  2784. "https://license.coscl.org.cn/MulanPSL/",
  2785. "https://github.com/yuwenlong/longphp/blob/25dfb70cc2a466dc4bb55ba30901cbce08d164b5/LICENSE"
  2786. ],
  2787. "isOsiApproved": false
  2788. },
  2789. {
  2790. "reference": "https://spdx.org/licenses/SAX-PD.html",
  2791. "isDeprecatedLicenseId": false,
  2792. "detailsUrl": "https://spdx.org/licenses/SAX-PD.json",
  2793. "referenceNumber": 222,
  2794. "name": "Sax Public Domain Notice",
  2795. "licenseId": "SAX-PD",
  2796. "seeAlso": [
  2797. "http://www.saxproject.org/copying.html"
  2798. ],
  2799. "isOsiApproved": false
  2800. },
  2801. {
  2802. "reference": "https://spdx.org/licenses/Crossword.html",
  2803. "isDeprecatedLicenseId": false,
  2804. "detailsUrl": "https://spdx.org/licenses/Crossword.json",
  2805. "referenceNumber": 223,
  2806. "name": "Crossword License",
  2807. "licenseId": "Crossword",
  2808. "seeAlso": [
  2809. "https://fedoraproject.org/wiki/Licensing/Crossword"
  2810. ],
  2811. "isOsiApproved": false
  2812. },
  2813. {
  2814. "reference": "https://spdx.org/licenses/CC-BY-3.0-DE.html",
  2815. "isDeprecatedLicenseId": false,
  2816. "detailsUrl": "https://spdx.org/licenses/CC-BY-3.0-DE.json",
  2817. "referenceNumber": 224,
  2818. "name": "Creative Commons Attribution 3.0 Germany",
  2819. "licenseId": "CC-BY-3.0-DE",
  2820. "seeAlso": [
  2821. "https://creativecommons.org/licenses/by/3.0/de/legalcode"
  2822. ],
  2823. "isOsiApproved": false
  2824. },
  2825. {
  2826. "reference": "https://spdx.org/licenses/SISSL-1.2.html",
  2827. "isDeprecatedLicenseId": false,
  2828. "detailsUrl": "https://spdx.org/licenses/SISSL-1.2.json",
  2829. "referenceNumber": 225,
  2830. "name": "Sun Industry Standards Source License v1.2",
  2831. "licenseId": "SISSL-1.2",
  2832. "seeAlso": [
  2833. "http://gridscheduler.sourceforge.net/Gridengine_SISSL_license.html"
  2834. ],
  2835. "isOsiApproved": false
  2836. },
  2837. {
  2838. "reference": "https://spdx.org/licenses/HPND-sell-variant.html",
  2839. "isDeprecatedLicenseId": false,
  2840. "detailsUrl": "https://spdx.org/licenses/HPND-sell-variant.json",
  2841. "referenceNumber": 226,
  2842. "name": "Historical Permission Notice and Disclaimer - sell variant",
  2843. "licenseId": "HPND-sell-variant",
  2844. "seeAlso": [
  2845. "https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/net/sunrpc/auth_gss/gss_generic_token.c?h\u003dv4.19"
  2846. ],
  2847. "isOsiApproved": false
  2848. },
  2849. {
  2850. "reference": "https://spdx.org/licenses/NASA-1.3.html",
  2851. "isDeprecatedLicenseId": false,
  2852. "detailsUrl": "https://spdx.org/licenses/NASA-1.3.json",
  2853. "referenceNumber": 227,
  2854. "name": "NASA Open Source Agreement 1.3",
  2855. "licenseId": "NASA-1.3",
  2856. "seeAlso": [
  2857. "http://ti.arc.nasa.gov/opensource/nosa/",
  2858. "https://opensource.org/licenses/NASA-1.3"
  2859. ],
  2860. "isOsiApproved": true
  2861. },
  2862. {
  2863. "reference": "https://spdx.org/licenses/RSA-MD.html",
  2864. "isDeprecatedLicenseId": false,
  2865. "detailsUrl": "https://spdx.org/licenses/RSA-MD.json",
  2866. "referenceNumber": 228,
  2867. "name": "RSA Message-Digest License",
  2868. "licenseId": "RSA-MD",
  2869. "seeAlso": [
  2870. "http://www.faqs.org/rfcs/rfc1321.html"
  2871. ],
  2872. "isOsiApproved": false
  2873. },
  2874. {
  2875. "reference": "https://spdx.org/licenses/OFL-1.1-RFN.html",
  2876. "isDeprecatedLicenseId": false,
  2877. "detailsUrl": "https://spdx.org/licenses/OFL-1.1-RFN.json",
  2878. "referenceNumber": 229,
  2879. "name": "SIL Open Font License 1.1 with Reserved Font Name",
  2880. "licenseId": "OFL-1.1-RFN",
  2881. "seeAlso": [
  2882. "http://scripts.sil.org/cms/scripts/page.php?item_id\u003dOFL_web",
  2883. "https://opensource.org/licenses/OFL-1.1"
  2884. ],
  2885. "isOsiApproved": true
  2886. },
  2887. {
  2888. "reference": "https://spdx.org/licenses/GPL-3.0-with-GCC-exception.html",
  2889. "isDeprecatedLicenseId": true,
  2890. "detailsUrl": "https://spdx.org/licenses/GPL-3.0-with-GCC-exception.json",
  2891. "referenceNumber": 230,
  2892. "name": "GNU General Public License v3.0 w/GCC Runtime Library exception",
  2893. "licenseId": "GPL-3.0-with-GCC-exception",
  2894. "seeAlso": [
  2895. "https://www.gnu.org/licenses/gcc-exception-3.1.html"
  2896. ],
  2897. "isOsiApproved": true
  2898. },
  2899. {
  2900. "reference": "https://spdx.org/licenses/GPL-2.0-only.html",
  2901. "isDeprecatedLicenseId": false,
  2902. "detailsUrl": "https://spdx.org/licenses/GPL-2.0-only.json",
  2903. "referenceNumber": 231,
  2904. "name": "GNU General Public License v2.0 only",
  2905. "licenseId": "GPL-2.0-only",
  2906. "seeAlso": [
  2907. "https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",
  2908. "https://opensource.org/licenses/GPL-2.0"
  2909. ],
  2910. "isOsiApproved": true,
  2911. "isFsfLibre": true
  2912. },
  2913. {
  2914. "reference": "https://spdx.org/licenses/CC-BY-NC-1.0.html",
  2915. "isDeprecatedLicenseId": false,
  2916. "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-1.0.json",
  2917. "referenceNumber": 232,
  2918. "name": "Creative Commons Attribution Non Commercial 1.0 Generic",
  2919. "licenseId": "CC-BY-NC-1.0",
  2920. "seeAlso": [
  2921. "https://creativecommons.org/licenses/by-nc/1.0/legalcode"
  2922. ],
  2923. "isOsiApproved": false
  2924. },
  2925. {
  2926. "reference": "https://spdx.org/licenses/Zend-2.0.html",
  2927. "isDeprecatedLicenseId": false,
  2928. "detailsUrl": "https://spdx.org/licenses/Zend-2.0.json",
  2929. "referenceNumber": 233,
  2930. "name": "Zend License v2.0",
  2931. "licenseId": "Zend-2.0",
  2932. "seeAlso": [
  2933. "https://web.archive.org/web/20130517195954/http://www.zend.com/license/2_00.txt"
  2934. ],
  2935. "isOsiApproved": false,
  2936. "isFsfLibre": true
  2937. },
  2938. {
  2939. "reference": "https://spdx.org/licenses/OLDAP-1.2.html",
  2940. "isDeprecatedLicenseId": false,
  2941. "detailsUrl": "https://spdx.org/licenses/OLDAP-1.2.json",
  2942. "referenceNumber": 234,
  2943. "name": "Open LDAP Public License v1.2",
  2944. "licenseId": "OLDAP-1.2",
  2945. "seeAlso": [
  2946. "http://www.openldap.org/devel/gitweb.cgi?p\u003dopenldap.git;a\u003dblob;f\u003dLICENSE;hb\u003d42b0383c50c299977b5893ee695cf4e486fb0dc7"
  2947. ],
  2948. "isOsiApproved": false
  2949. },
  2950. {
  2951. "reference": "https://spdx.org/licenses/OLDAP-2.2.html",
  2952. "isDeprecatedLicenseId": false,
  2953. "detailsUrl": "https://spdx.org/licenses/OLDAP-2.2.json",
  2954. "referenceNumber": 235,
  2955. "name": "Open LDAP Public License v2.2",
  2956. "licenseId": "OLDAP-2.2",
  2957. "seeAlso": [
  2958. "http://www.openldap.org/devel/gitweb.cgi?p\u003dopenldap.git;a\u003dblob;f\u003dLICENSE;hb\u003d470b0c18ec67621c85881b2733057fecf4a1acc3"
  2959. ],
  2960. "isOsiApproved": false
  2961. },
  2962. {
  2963. "reference": "https://spdx.org/licenses/CC-BY-NC-ND-4.0.html",
  2964. "isDeprecatedLicenseId": false,
  2965. "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-ND-4.0.json",
  2966. "referenceNumber": 236,
  2967. "name": "Creative Commons Attribution Non Commercial No Derivatives 4.0 International",
  2968. "licenseId": "CC-BY-NC-ND-4.0",
  2969. "seeAlso": [
  2970. "https://creativecommons.org/licenses/by-nc-nd/4.0/legalcode"
  2971. ],
  2972. "isOsiApproved": false
  2973. },
  2974. {
  2975. "reference": "https://spdx.org/licenses/GPL-2.0-or-later.html",
  2976. "isDeprecatedLicenseId": false,
  2977. "detailsUrl": "https://spdx.org/licenses/GPL-2.0-or-later.json",
  2978. "referenceNumber": 237,
  2979. "name": "GNU General Public License v2.0 or later",
  2980. "licenseId": "GPL-2.0-or-later",
  2981. "seeAlso": [
  2982. "https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",
  2983. "https://opensource.org/licenses/GPL-2.0"
  2984. ],
  2985. "isOsiApproved": true,
  2986. "isFsfLibre": true
  2987. },
  2988. {
  2989. "reference": "https://spdx.org/licenses/MS-PL.html",
  2990. "isDeprecatedLicenseId": false,
  2991. "detailsUrl": "https://spdx.org/licenses/MS-PL.json",
  2992. "referenceNumber": 238,
  2993. "name": "Microsoft Public License",
  2994. "licenseId": "MS-PL",
  2995. "seeAlso": [
  2996. "http://www.microsoft.com/opensource/licenses.mspx",
  2997. "https://opensource.org/licenses/MS-PL"
  2998. ],
  2999. "isOsiApproved": true,
  3000. "isFsfLibre": true
  3001. },
  3002. {
  3003. "reference": "https://spdx.org/licenses/gnuplot.html",
  3004. "isDeprecatedLicenseId": false,
  3005. "detailsUrl": "https://spdx.org/licenses/gnuplot.json",
  3006. "referenceNumber": 239,
  3007. "name": "gnuplot License",
  3008. "licenseId": "gnuplot",
  3009. "seeAlso": [
  3010. "https://fedoraproject.org/wiki/Licensing/Gnuplot"
  3011. ],
  3012. "isOsiApproved": false,
  3013. "isFsfLibre": true
  3014. },
  3015. {
  3016. "reference": "https://spdx.org/licenses/APSL-1.0.html",
  3017. "isDeprecatedLicenseId": false,
  3018. "detailsUrl": "https://spdx.org/licenses/APSL-1.0.json",
  3019. "referenceNumber": 240,
  3020. "name": "Apple Public Source License 1.0",
  3021. "licenseId": "APSL-1.0",
  3022. "seeAlso": [
  3023. "https://fedoraproject.org/wiki/Licensing/Apple_Public_Source_License_1.0"
  3024. ],
  3025. "isOsiApproved": true
  3026. },
  3027. {
  3028. "reference": "https://spdx.org/licenses/NTP.html",
  3029. "isDeprecatedLicenseId": false,
  3030. "detailsUrl": "https://spdx.org/licenses/NTP.json",
  3031. "referenceNumber": 241,
  3032. "name": "NTP License",
  3033. "licenseId": "NTP",
  3034. "seeAlso": [
  3035. "https://opensource.org/licenses/NTP"
  3036. ],
  3037. "isOsiApproved": true
  3038. },
  3039. {
  3040. "reference": "https://spdx.org/licenses/EUDatagrid.html",
  3041. "isDeprecatedLicenseId": false,
  3042. "detailsUrl": "https://spdx.org/licenses/EUDatagrid.json",
  3043. "referenceNumber": 242,
  3044. "name": "EU DataGrid Software License",
  3045. "licenseId": "EUDatagrid",
  3046. "seeAlso": [
  3047. "http://eu-datagrid.web.cern.ch/eu-datagrid/license.html",
  3048. "https://opensource.org/licenses/EUDatagrid"
  3049. ],
  3050. "isOsiApproved": true,
  3051. "isFsfLibre": true
  3052. },
  3053. {
  3054. "reference": "https://spdx.org/licenses/BSD-3-Clause-LBNL.html",
  3055. "isDeprecatedLicenseId": false,
  3056. "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-LBNL.json",
  3057. "referenceNumber": 243,
  3058. "name": "Lawrence Berkeley National Labs BSD variant license",
  3059. "licenseId": "BSD-3-Clause-LBNL",
  3060. "seeAlso": [
  3061. "https://fedoraproject.org/wiki/Licensing/LBNLBSD"
  3062. ],
  3063. "isOsiApproved": true
  3064. },
  3065. {
  3066. "reference": "https://spdx.org/licenses/D-FSL-1.0.html",
  3067. "isDeprecatedLicenseId": false,
  3068. "detailsUrl": "https://spdx.org/licenses/D-FSL-1.0.json",
  3069. "referenceNumber": 244,
  3070. "name": "Deutsche Freie Software Lizenz",
  3071. "licenseId": "D-FSL-1.0",
  3072. "seeAlso": [
  3073. "http://www.dipp.nrw.de/d-fsl/lizenzen/",
  3074. "http://www.dipp.nrw.de/d-fsl/index_html/lizenzen/de/D-FSL-1_0_de.txt",
  3075. "http://www.dipp.nrw.de/d-fsl/index_html/lizenzen/en/D-FSL-1_0_en.txt",
  3076. "https://www.hbz-nrw.de/produkte/open-access/lizenzen/dfsl",
  3077. "https://www.hbz-nrw.de/produkte/open-access/lizenzen/dfsl/deutsche-freie-software-lizenz",
  3078. "https://www.hbz-nrw.de/produkte/open-access/lizenzen/dfsl/german-free-software-license",
  3079. "https://www.hbz-nrw.de/produkte/open-access/lizenzen/dfsl/D-FSL-1_0_de.txt/at_download/file",
  3080. "https://www.hbz-nrw.de/produkte/open-access/lizenzen/dfsl/D-FSL-1_0_en.txt/at_download/file"
  3081. ],
  3082. "isOsiApproved": false
  3083. },
  3084. {
  3085. "reference": "https://spdx.org/licenses/bzip2-1.0.5.html",
  3086. "isDeprecatedLicenseId": false,
  3087. "detailsUrl": "https://spdx.org/licenses/bzip2-1.0.5.json",
  3088. "referenceNumber": 245,
  3089. "name": "bzip2 and libbzip2 License v1.0.5",
  3090. "licenseId": "bzip2-1.0.5",
  3091. "seeAlso": [
  3092. "https://sourceware.org/bzip2/1.0.5/bzip2-manual-1.0.5.html",
  3093. "http://bzip.org/1.0.5/bzip2-manual-1.0.5.html"
  3094. ],
  3095. "isOsiApproved": false
  3096. },
  3097. {
  3098. "reference": "https://spdx.org/licenses/PHP-3.0.html",
  3099. "isDeprecatedLicenseId": false,
  3100. "detailsUrl": "https://spdx.org/licenses/PHP-3.0.json",
  3101. "referenceNumber": 246,
  3102. "name": "PHP License v3.0",
  3103. "licenseId": "PHP-3.0",
  3104. "seeAlso": [
  3105. "http://www.php.net/license/3_0.txt",
  3106. "https://opensource.org/licenses/PHP-3.0"
  3107. ],
  3108. "isOsiApproved": true
  3109. },
  3110. {
  3111. "reference": "https://spdx.org/licenses/GPL-3.0-with-autoconf-exception.html",
  3112. "isDeprecatedLicenseId": true,
  3113. "detailsUrl": "https://spdx.org/licenses/GPL-3.0-with-autoconf-exception.json",
  3114. "referenceNumber": 247,
  3115. "name": "GNU General Public License v3.0 w/Autoconf exception",
  3116. "licenseId": "GPL-3.0-with-autoconf-exception",
  3117. "seeAlso": [
  3118. "https://www.gnu.org/licenses/autoconf-exception-3.0.html"
  3119. ],
  3120. "isOsiApproved": false
  3121. },
  3122. {
  3123. "reference": "https://spdx.org/licenses/GPL-2.0+.html",
  3124. "isDeprecatedLicenseId": true,
  3125. "detailsUrl": "https://spdx.org/licenses/GPL-2.0+.json",
  3126. "referenceNumber": 248,
  3127. "name": "GNU General Public License v2.0 or later",
  3128. "licenseId": "GPL-2.0+",
  3129. "seeAlso": [
  3130. "https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",
  3131. "https://opensource.org/licenses/GPL-2.0"
  3132. ],
  3133. "isOsiApproved": true
  3134. },
  3135. {
  3136. "reference": "https://spdx.org/licenses/GFDL-1.3-only.html",
  3137. "isDeprecatedLicenseId": false,
  3138. "detailsUrl": "https://spdx.org/licenses/GFDL-1.3-only.json",
  3139. "referenceNumber": 249,
  3140. "name": "GNU Free Documentation License v1.3 only",
  3141. "licenseId": "GFDL-1.3-only",
  3142. "seeAlso": [
  3143. "https://www.gnu.org/licenses/fdl-1.3.txt"
  3144. ],
  3145. "isOsiApproved": false,
  3146. "isFsfLibre": true
  3147. },
  3148. {
  3149. "reference": "https://spdx.org/licenses/SNIA.html",
  3150. "isDeprecatedLicenseId": false,
  3151. "detailsUrl": "https://spdx.org/licenses/SNIA.json",
  3152. "referenceNumber": 250,
  3153. "name": "SNIA Public License 1.1",
  3154. "licenseId": "SNIA",
  3155. "seeAlso": [
  3156. "https://fedoraproject.org/wiki/Licensing/SNIA_Public_License"
  3157. ],
  3158. "isOsiApproved": false
  3159. },
  3160. {
  3161. "reference": "https://spdx.org/licenses/xpp.html",
  3162. "isDeprecatedLicenseId": false,
  3163. "detailsUrl": "https://spdx.org/licenses/xpp.json",
  3164. "referenceNumber": 251,
  3165. "name": "XPP License",
  3166. "licenseId": "xpp",
  3167. "seeAlso": [
  3168. "https://fedoraproject.org/wiki/Licensing/xpp"
  3169. ],
  3170. "isOsiApproved": false
  3171. },
  3172. {
  3173. "reference": "https://spdx.org/licenses/Eurosym.html",
  3174. "isDeprecatedLicenseId": false,
  3175. "detailsUrl": "https://spdx.org/licenses/Eurosym.json",
  3176. "referenceNumber": 252,
  3177. "name": "Eurosym License",
  3178. "licenseId": "Eurosym",
  3179. "seeAlso": [
  3180. "https://fedoraproject.org/wiki/Licensing/Eurosym"
  3181. ],
  3182. "isOsiApproved": false
  3183. },
  3184. {
  3185. "reference": "https://spdx.org/licenses/CC-BY-NC-ND-3.0-DE.html",
  3186. "isDeprecatedLicenseId": false,
  3187. "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-ND-3.0-DE.json",
  3188. "referenceNumber": 253,
  3189. "name": "Creative Commons Attribution Non Commercial No Derivatives 3.0 Germany",
  3190. "licenseId": "CC-BY-NC-ND-3.0-DE",
  3191. "seeAlso": [
  3192. "https://creativecommons.org/licenses/by-nc-nd/3.0/de/legalcode"
  3193. ],
  3194. "isOsiApproved": false
  3195. },
  3196. {
  3197. "reference": "https://spdx.org/licenses/SSH-short.html",
  3198. "isDeprecatedLicenseId": false,
  3199. "detailsUrl": "https://spdx.org/licenses/SSH-short.json",
  3200. "referenceNumber": 254,
  3201. "name": "SSH short notice",
  3202. "licenseId": "SSH-short",
  3203. "seeAlso": [
  3204. "https://github.com/openssh/openssh-portable/blob/1b11ea7c58cd5c59838b5fa574cd456d6047b2d4/pathnames.h",
  3205. "http://web.mit.edu/kolya/.f/root/athena.mit.edu/sipb.mit.edu/project/openssh/OldFiles/src/openssh-2.9.9p2/ssh-add.1",
  3206. "https://joinup.ec.europa.eu/svn/lesoll/trunk/italc/lib/src/dsa_key.cpp"
  3207. ],
  3208. "isOsiApproved": false
  3209. },
  3210. {
  3211. "reference": "https://spdx.org/licenses/Spencer-94.html",
  3212. "isDeprecatedLicenseId": false,
  3213. "detailsUrl": "https://spdx.org/licenses/Spencer-94.json",
  3214. "referenceNumber": 255,
  3215. "name": "Spencer License 94",
  3216. "licenseId": "Spencer-94",
  3217. "seeAlso": [
  3218. "https://fedoraproject.org/wiki/Licensing/Henry_Spencer_Reg-Ex_Library_License"
  3219. ],
  3220. "isOsiApproved": false
  3221. },
  3222. {
  3223. "reference": "https://spdx.org/licenses/diffmark.html",
  3224. "isDeprecatedLicenseId": false,
  3225. "detailsUrl": "https://spdx.org/licenses/diffmark.json",
  3226. "referenceNumber": 256,
  3227. "name": "diffmark license",
  3228. "licenseId": "diffmark",
  3229. "seeAlso": [
  3230. "https://fedoraproject.org/wiki/Licensing/diffmark"
  3231. ],
  3232. "isOsiApproved": false
  3233. },
  3234. {
  3235. "reference": "https://spdx.org/licenses/libpng-2.0.html",
  3236. "isDeprecatedLicenseId": false,
  3237. "detailsUrl": "https://spdx.org/licenses/libpng-2.0.json",
  3238. "referenceNumber": 257,
  3239. "name": "PNG Reference Library version 2",
  3240. "licenseId": "libpng-2.0",
  3241. "seeAlso": [
  3242. "http://www.libpng.org/pub/png/src/libpng-LICENSE.txt"
  3243. ],
  3244. "isOsiApproved": false
  3245. },
  3246. {
  3247. "reference": "https://spdx.org/licenses/OLDAP-2.2.1.html",
  3248. "isDeprecatedLicenseId": false,
  3249. "detailsUrl": "https://spdx.org/licenses/OLDAP-2.2.1.json",
  3250. "referenceNumber": 258,
  3251. "name": "Open LDAP Public License v2.2.1",
  3252. "licenseId": "OLDAP-2.2.1",
  3253. "seeAlso": [
  3254. "http://www.openldap.org/devel/gitweb.cgi?p\u003dopenldap.git;a\u003dblob;f\u003dLICENSE;hb\u003d4bc786f34b50aa301be6f5600f58a980070f481e"
  3255. ],
  3256. "isOsiApproved": false
  3257. },
  3258. {
  3259. "reference": "https://spdx.org/licenses/CC-PDDC.html",
  3260. "isDeprecatedLicenseId": false,
  3261. "detailsUrl": "https://spdx.org/licenses/CC-PDDC.json",
  3262. "referenceNumber": 259,
  3263. "name": "Creative Commons Public Domain Dedication and Certification",
  3264. "licenseId": "CC-PDDC",
  3265. "seeAlso": [
  3266. "https://creativecommons.org/licenses/publicdomain/"
  3267. ],
  3268. "isOsiApproved": false
  3269. },
  3270. {
  3271. "reference": "https://spdx.org/licenses/CC-BY-NC-3.0.html",
  3272. "isDeprecatedLicenseId": false,
  3273. "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-3.0.json",
  3274. "referenceNumber": 260,
  3275. "name": "Creative Commons Attribution Non Commercial 3.0 Unported",
  3276. "licenseId": "CC-BY-NC-3.0",
  3277. "seeAlso": [
  3278. "https://creativecommons.org/licenses/by-nc/3.0/legalcode"
  3279. ],
  3280. "isOsiApproved": false
  3281. },
  3282. {
  3283. "reference": "https://spdx.org/licenses/CC-BY-2.0.html",
  3284. "isDeprecatedLicenseId": false,
  3285. "detailsUrl": "https://spdx.org/licenses/CC-BY-2.0.json",
  3286. "referenceNumber": 261,
  3287. "name": "Creative Commons Attribution 2.0 Generic",
  3288. "licenseId": "CC-BY-2.0",
  3289. "seeAlso": [
  3290. "https://creativecommons.org/licenses/by/2.0/legalcode"
  3291. ],
  3292. "isOsiApproved": false
  3293. },
  3294. {
  3295. "reference": "https://spdx.org/licenses/MIT-Modern-Variant.html",
  3296. "isDeprecatedLicenseId": false,
  3297. "detailsUrl": "https://spdx.org/licenses/MIT-Modern-Variant.json",
  3298. "referenceNumber": 262,
  3299. "name": "MIT License Modern Variant",
  3300. "licenseId": "MIT-Modern-Variant",
  3301. "seeAlso": [
  3302. "https://fedoraproject.org/wiki/Licensing:MIT#Modern_Variants",
  3303. "https://ptolemy.berkeley.edu/copyright.htm",
  3304. "https://pirlwww.lpl.arizona.edu/resources/guide/software/PerlTk/Tixlic.html"
  3305. ],
  3306. "isOsiApproved": true
  3307. },
  3308. {
  3309. "reference": "https://spdx.org/licenses/ZPL-2.1.html",
  3310. "isDeprecatedLicenseId": false,
  3311. "detailsUrl": "https://spdx.org/licenses/ZPL-2.1.json",
  3312. "referenceNumber": 263,
  3313. "name": "Zope Public License 2.1",
  3314. "licenseId": "ZPL-2.1",
  3315. "seeAlso": [
  3316. "http://old.zope.org/Resources/ZPL/"
  3317. ],
  3318. "isOsiApproved": true,
  3319. "isFsfLibre": true
  3320. },
  3321. {
  3322. "reference": "https://spdx.org/licenses/Linux-OpenIB.html",
  3323. "isDeprecatedLicenseId": false,
  3324. "detailsUrl": "https://spdx.org/licenses/Linux-OpenIB.json",
  3325. "referenceNumber": 264,
  3326. "name": "Linux Kernel Variant of OpenIB.org license",
  3327. "licenseId": "Linux-OpenIB",
  3328. "seeAlso": [
  3329. "https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/drivers/infiniband/core/sa.h"
  3330. ],
  3331. "isOsiApproved": false
  3332. },
  3333. {
  3334. "reference": "https://spdx.org/licenses/Barr.html",
  3335. "isDeprecatedLicenseId": false,
  3336. "detailsUrl": "https://spdx.org/licenses/Barr.json",
  3337. "referenceNumber": 265,
  3338. "name": "Barr License",
  3339. "licenseId": "Barr",
  3340. "seeAlso": [
  3341. "https://fedoraproject.org/wiki/Licensing/Barr"
  3342. ],
  3343. "isOsiApproved": false
  3344. },
  3345. {
  3346. "reference": "https://spdx.org/licenses/CC-BY-ND-4.0.html",
  3347. "isDeprecatedLicenseId": false,
  3348. "detailsUrl": "https://spdx.org/licenses/CC-BY-ND-4.0.json",
  3349. "referenceNumber": 266,
  3350. "name": "Creative Commons Attribution No Derivatives 4.0 International",
  3351. "licenseId": "CC-BY-ND-4.0",
  3352. "seeAlso": [
  3353. "https://creativecommons.org/licenses/by-nd/4.0/legalcode"
  3354. ],
  3355. "isOsiApproved": false
  3356. },
  3357. {
  3358. "reference": "https://spdx.org/licenses/CC-BY-ND-3.0.html",
  3359. "isDeprecatedLicenseId": false,
  3360. "detailsUrl": "https://spdx.org/licenses/CC-BY-ND-3.0.json",
  3361. "referenceNumber": 267,
  3362. "name": "Creative Commons Attribution No Derivatives 3.0 Unported",
  3363. "licenseId": "CC-BY-ND-3.0",
  3364. "seeAlso": [
  3365. "https://creativecommons.org/licenses/by-nd/3.0/legalcode"
  3366. ],
  3367. "isOsiApproved": false
  3368. },
  3369. {
  3370. "reference": "https://spdx.org/licenses/Borceux.html",
  3371. "isDeprecatedLicenseId": false,
  3372. "detailsUrl": "https://spdx.org/licenses/Borceux.json",
  3373. "referenceNumber": 268,
  3374. "name": "Borceux license",
  3375. "licenseId": "Borceux",
  3376. "seeAlso": [
  3377. "https://fedoraproject.org/wiki/Licensing/Borceux"
  3378. ],
  3379. "isOsiApproved": false
  3380. },
  3381. {
  3382. "reference": "https://spdx.org/licenses/OpenSSL.html",
  3383. "isDeprecatedLicenseId": false,
  3384. "detailsUrl": "https://spdx.org/licenses/OpenSSL.json",
  3385. "referenceNumber": 269,
  3386. "name": "OpenSSL License",
  3387. "licenseId": "OpenSSL",
  3388. "seeAlso": [
  3389. "http://www.openssl.org/source/license.html"
  3390. ],
  3391. "isOsiApproved": false,
  3392. "isFsfLibre": true
  3393. },
  3394. {
  3395. "reference": "https://spdx.org/licenses/CC-BY-SA-2.1-JP.html",
  3396. "isDeprecatedLicenseId": false,
  3397. "detailsUrl": "https://spdx.org/licenses/CC-BY-SA-2.1-JP.json",
  3398. "referenceNumber": 270,
  3399. "name": "Creative Commons Attribution Share Alike 2.1 Japan",
  3400. "licenseId": "CC-BY-SA-2.1-JP",
  3401. "seeAlso": [
  3402. "https://creativecommons.org/licenses/by-sa/2.1/jp/legalcode"
  3403. ],
  3404. "isOsiApproved": false
  3405. },
  3406. {
  3407. "reference": "https://spdx.org/licenses/LGPLLR.html",
  3408. "isDeprecatedLicenseId": false,
  3409. "detailsUrl": "https://spdx.org/licenses/LGPLLR.json",
  3410. "referenceNumber": 271,
  3411. "name": "Lesser General Public License For Linguistic Resources",
  3412. "licenseId": "LGPLLR",
  3413. "seeAlso": [
  3414. "http://www-igm.univ-mlv.fr/~unitex/lgpllr.html"
  3415. ],
  3416. "isOsiApproved": false
  3417. },
  3418. {
  3419. "reference": "https://spdx.org/licenses/MIT-CMU.html",
  3420. "isDeprecatedLicenseId": false,
  3421. "detailsUrl": "https://spdx.org/licenses/MIT-CMU.json",
  3422. "referenceNumber": 272,
  3423. "name": "CMU License",
  3424. "licenseId": "MIT-CMU",
  3425. "seeAlso": [
  3426. "https://fedoraproject.org/wiki/Licensing:MIT?rd\u003dLicensing/MIT#CMU_Style",
  3427. "https://github.com/python-pillow/Pillow/blob/fffb426092c8db24a5f4b6df243a8a3c01fb63cd/LICENSE"
  3428. ],
  3429. "isOsiApproved": false
  3430. },
  3431. {
  3432. "reference": "https://spdx.org/licenses/OSL-3.0.html",
  3433. "isDeprecatedLicenseId": false,
  3434. "detailsUrl": "https://spdx.org/licenses/OSL-3.0.json",
  3435. "referenceNumber": 273,
  3436. "name": "Open Software License 3.0",
  3437. "licenseId": "OSL-3.0",
  3438. "seeAlso": [
  3439. "https://web.archive.org/web/20120101081418/http://rosenlaw.com:80/OSL3.0.htm",
  3440. "https://opensource.org/licenses/OSL-3.0"
  3441. ],
  3442. "isOsiApproved": true,
  3443. "isFsfLibre": true
  3444. },
  3445. {
  3446. "reference": "https://spdx.org/licenses/OCCT-PL.html",
  3447. "isDeprecatedLicenseId": false,
  3448. "detailsUrl": "https://spdx.org/licenses/OCCT-PL.json",
  3449. "referenceNumber": 274,
  3450. "name": "Open CASCADE Technology Public License",
  3451. "licenseId": "OCCT-PL",
  3452. "seeAlso": [
  3453. "http://www.opencascade.com/content/occt-public-license"
  3454. ],
  3455. "isOsiApproved": false
  3456. },
  3457. {
  3458. "reference": "https://spdx.org/licenses/MIT.html",
  3459. "isDeprecatedLicenseId": false,
  3460. "detailsUrl": "https://spdx.org/licenses/MIT.json",
  3461. "referenceNumber": 275,
  3462. "name": "MIT License",
  3463. "licenseId": "MIT",
  3464. "seeAlso": [
  3465. "https://opensource.org/licenses/MIT"
  3466. ],
  3467. "isOsiApproved": true,
  3468. "isFsfLibre": true
  3469. },
  3470. {
  3471. "reference": "https://spdx.org/licenses/Adobe-2006.html",
  3472. "isDeprecatedLicenseId": false,
  3473. "detailsUrl": "https://spdx.org/licenses/Adobe-2006.json",
  3474. "referenceNumber": 276,
  3475. "name": "Adobe Systems Incorporated Source Code License Agreement",
  3476. "licenseId": "Adobe-2006",
  3477. "seeAlso": [
  3478. "https://fedoraproject.org/wiki/Licensing/AdobeLicense"
  3479. ],
  3480. "isOsiApproved": false
  3481. },
  3482. {
  3483. "reference": "https://spdx.org/licenses/SGI-B-1.1.html",
  3484. "isDeprecatedLicenseId": false,
  3485. "detailsUrl": "https://spdx.org/licenses/SGI-B-1.1.json",
  3486. "referenceNumber": 277,
  3487. "name": "SGI Free Software License B v1.1",
  3488. "licenseId": "SGI-B-1.1",
  3489. "seeAlso": [
  3490. "http://oss.sgi.com/projects/FreeB/"
  3491. ],
  3492. "isOsiApproved": false
  3493. },
  3494. {
  3495. "reference": "https://spdx.org/licenses/CNRI-Jython.html",
  3496. "isDeprecatedLicenseId": false,
  3497. "detailsUrl": "https://spdx.org/licenses/CNRI-Jython.json",
  3498. "referenceNumber": 278,
  3499. "name": "CNRI Jython License",
  3500. "licenseId": "CNRI-Jython",
  3501. "seeAlso": [
  3502. "http://www.jython.org/license.html"
  3503. ],
  3504. "isOsiApproved": false
  3505. },
  3506. {
  3507. "reference": "https://spdx.org/licenses/OLDAP-2.7.html",
  3508. "isDeprecatedLicenseId": false,
  3509. "detailsUrl": "https://spdx.org/licenses/OLDAP-2.7.json",
  3510. "referenceNumber": 279,
  3511. "name": "Open LDAP Public License v2.7",
  3512. "licenseId": "OLDAP-2.7",
  3513. "seeAlso": [
  3514. "http://www.openldap.org/devel/gitweb.cgi?p\u003dopenldap.git;a\u003dblob;f\u003dLICENSE;hb\u003d47c2415c1df81556eeb39be6cad458ef87c534a2"
  3515. ],
  3516. "isOsiApproved": false,
  3517. "isFsfLibre": true
  3518. },
  3519. {
  3520. "reference": "https://spdx.org/licenses/IBM-pibs.html",
  3521. "isDeprecatedLicenseId": false,
  3522. "detailsUrl": "https://spdx.org/licenses/IBM-pibs.json",
  3523. "referenceNumber": 280,
  3524. "name": "IBM PowerPC Initialization and Boot Software",
  3525. "licenseId": "IBM-pibs",
  3526. "seeAlso": [
  3527. "http://git.denx.de/?p\u003du-boot.git;a\u003dblob;f\u003darch/powerpc/cpu/ppc4xx/miiphy.c;h\u003d297155fdafa064b955e53e9832de93bfb0cfb85b;hb\u003d9fab4bf4cc077c21e43941866f3f2c196f28670d"
  3528. ],
  3529. "isOsiApproved": false
  3530. },
  3531. {
  3532. "reference": "https://spdx.org/licenses/GPL-3.0+.html",
  3533. "isDeprecatedLicenseId": true,
  3534. "detailsUrl": "https://spdx.org/licenses/GPL-3.0+.json",
  3535. "referenceNumber": 281,
  3536. "name": "GNU General Public License v3.0 or later",
  3537. "licenseId": "GPL-3.0+",
  3538. "seeAlso": [
  3539. "https://www.gnu.org/licenses/gpl-3.0-standalone.html",
  3540. "https://opensource.org/licenses/GPL-3.0"
  3541. ],
  3542. "isOsiApproved": true
  3543. },
  3544. {
  3545. "reference": "https://spdx.org/licenses/AGPL-1.0.html",
  3546. "isDeprecatedLicenseId": true,
  3547. "detailsUrl": "https://spdx.org/licenses/AGPL-1.0.json",
  3548. "referenceNumber": 282,
  3549. "name": "Affero General Public License v1.0",
  3550. "licenseId": "AGPL-1.0",
  3551. "seeAlso": [
  3552. "http://www.affero.org/oagpl.html"
  3553. ],
  3554. "isOsiApproved": false,
  3555. "isFsfLibre": true
  3556. },
  3557. {
  3558. "reference": "https://spdx.org/licenses/LGPL-2.1.html",
  3559. "isDeprecatedLicenseId": true,
  3560. "detailsUrl": "https://spdx.org/licenses/LGPL-2.1.json",
  3561. "referenceNumber": 283,
  3562. "name": "GNU Lesser General Public License v2.1 only",
  3563. "licenseId": "LGPL-2.1",
  3564. "seeAlso": [
  3565. "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html",
  3566. "https://opensource.org/licenses/LGPL-2.1"
  3567. ],
  3568. "isOsiApproved": true,
  3569. "isFsfLibre": true
  3570. },
  3571. {
  3572. "reference": "https://spdx.org/licenses/Artistic-1.0-Perl.html",
  3573. "isDeprecatedLicenseId": false,
  3574. "detailsUrl": "https://spdx.org/licenses/Artistic-1.0-Perl.json",
  3575. "referenceNumber": 284,
  3576. "name": "Artistic License 1.0 (Perl)",
  3577. "licenseId": "Artistic-1.0-Perl",
  3578. "seeAlso": [
  3579. "http://dev.perl.org/licenses/artistic.html"
  3580. ],
  3581. "isOsiApproved": true
  3582. },
  3583. {
  3584. "reference": "https://spdx.org/licenses/LPPL-1.3a.html",
  3585. "isDeprecatedLicenseId": false,
  3586. "detailsUrl": "https://spdx.org/licenses/LPPL-1.3a.json",
  3587. "referenceNumber": 285,
  3588. "name": "LaTeX Project Public License v1.3a",
  3589. "licenseId": "LPPL-1.3a",
  3590. "seeAlso": [
  3591. "http://www.latex-project.org/lppl/lppl-1-3a.txt"
  3592. ],
  3593. "isOsiApproved": false,
  3594. "isFsfLibre": true
  3595. },
  3596. {
  3597. "reference": "https://spdx.org/licenses/OLDAP-2.0.html",
  3598. "isDeprecatedLicenseId": false,
  3599. "detailsUrl": "https://spdx.org/licenses/OLDAP-2.0.json",
  3600. "referenceNumber": 286,
  3601. "name": "Open LDAP Public License v2.0 (or possibly 2.0A and 2.0B)",
  3602. "licenseId": "OLDAP-2.0",
  3603. "seeAlso": [
  3604. "http://www.openldap.org/devel/gitweb.cgi?p\u003dopenldap.git;a\u003dblob;f\u003dLICENSE;hb\u003dcbf50f4e1185a21abd4c0a54d3f4341fe28f36ea"
  3605. ],
  3606. "isOsiApproved": false
  3607. },
  3608. {
  3609. "reference": "https://spdx.org/licenses/FSFUL.html",
  3610. "isDeprecatedLicenseId": false,
  3611. "detailsUrl": "https://spdx.org/licenses/FSFUL.json",
  3612. "referenceNumber": 287,
  3613. "name": "FSF Unlimited License",
  3614. "licenseId": "FSFUL",
  3615. "seeAlso": [
  3616. "https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License"
  3617. ],
  3618. "isOsiApproved": false
  3619. },
  3620. {
  3621. "reference": "https://spdx.org/licenses/EFL-1.0.html",
  3622. "isDeprecatedLicenseId": false,
  3623. "detailsUrl": "https://spdx.org/licenses/EFL-1.0.json",
  3624. "referenceNumber": 288,
  3625. "name": "Eiffel Forum License v1.0",
  3626. "licenseId": "EFL-1.0",
  3627. "seeAlso": [
  3628. "http://www.eiffel-nice.org/license/forum.txt",
  3629. "https://opensource.org/licenses/EFL-1.0"
  3630. ],
  3631. "isOsiApproved": true
  3632. },
  3633. {
  3634. "reference": "https://spdx.org/licenses/VOSTROM.html",
  3635. "isDeprecatedLicenseId": false,
  3636. "detailsUrl": "https://spdx.org/licenses/VOSTROM.json",
  3637. "referenceNumber": 289,
  3638. "name": "VOSTROM Public License for Open Source",
  3639. "licenseId": "VOSTROM",
  3640. "seeAlso": [
  3641. "https://fedoraproject.org/wiki/Licensing/VOSTROM"
  3642. ],
  3643. "isOsiApproved": false
  3644. },
  3645. {
  3646. "reference": "https://spdx.org/licenses/FSFAP.html",
  3647. "isDeprecatedLicenseId": false,
  3648. "detailsUrl": "https://spdx.org/licenses/FSFAP.json",
  3649. "referenceNumber": 290,
  3650. "name": "FSF All Permissive License",
  3651. "licenseId": "FSFAP",
  3652. "seeAlso": [
  3653. "https://www.gnu.org/prep/maintain/html_node/License-Notices-for-Other-Files.html"
  3654. ],
  3655. "isOsiApproved": false,
  3656. "isFsfLibre": true
  3657. },
  3658. {
  3659. "reference": "https://spdx.org/licenses/CC-BY-3.0-US.html",
  3660. "isDeprecatedLicenseId": false,
  3661. "detailsUrl": "https://spdx.org/licenses/CC-BY-3.0-US.json",
  3662. "referenceNumber": 291,
  3663. "name": "Creative Commons Attribution 3.0 United States",
  3664. "licenseId": "CC-BY-3.0-US",
  3665. "seeAlso": [
  3666. "https://creativecommons.org/licenses/by/3.0/us/legalcode"
  3667. ],
  3668. "isOsiApproved": false
  3669. },
  3670. {
  3671. "reference": "https://spdx.org/licenses/CNRI-Python.html",
  3672. "isDeprecatedLicenseId": false,
  3673. "detailsUrl": "https://spdx.org/licenses/CNRI-Python.json",
  3674. "referenceNumber": 292,
  3675. "name": "CNRI Python License",
  3676. "licenseId": "CNRI-Python",
  3677. "seeAlso": [
  3678. "https://opensource.org/licenses/CNRI-Python"
  3679. ],
  3680. "isOsiApproved": true
  3681. },
  3682. {
  3683. "reference": "https://spdx.org/licenses/OPUBL-1.0.html",
  3684. "isDeprecatedLicenseId": false,
  3685. "detailsUrl": "https://spdx.org/licenses/OPUBL-1.0.json",
  3686. "referenceNumber": 293,
  3687. "name": "Open Publication License v1.0",
  3688. "licenseId": "OPUBL-1.0",
  3689. "seeAlso": [
  3690. "http://opencontent.org/openpub/",
  3691. "https://www.debian.org/opl",
  3692. "https://www.ctan.org/license/opl"
  3693. ],
  3694. "isOsiApproved": false
  3695. },
  3696. {
  3697. "reference": "https://spdx.org/licenses/AMPAS.html",
  3698. "isDeprecatedLicenseId": false,
  3699. "detailsUrl": "https://spdx.org/licenses/AMPAS.json",
  3700. "referenceNumber": 294,
  3701. "name": "Academy of Motion Picture Arts and Sciences BSD",
  3702. "licenseId": "AMPAS",
  3703. "seeAlso": [
  3704. "https://fedoraproject.org/wiki/Licensing/BSD#AMPASBSD"
  3705. ],
  3706. "isOsiApproved": false
  3707. },
  3708. {
  3709. "reference": "https://spdx.org/licenses/FreeImage.html",
  3710. "isDeprecatedLicenseId": false,
  3711. "detailsUrl": "https://spdx.org/licenses/FreeImage.json",
  3712. "referenceNumber": 295,
  3713. "name": "FreeImage Public License v1.0",
  3714. "licenseId": "FreeImage",
  3715. "seeAlso": [
  3716. "http://freeimage.sourceforge.net/freeimage-license.txt"
  3717. ],
  3718. "isOsiApproved": false
  3719. },
  3720. {
  3721. "reference": "https://spdx.org/licenses/Unicode-TOU.html",
  3722. "isDeprecatedLicenseId": false,
  3723. "detailsUrl": "https://spdx.org/licenses/Unicode-TOU.json",
  3724. "referenceNumber": 296,
  3725. "name": "Unicode Terms of Use",
  3726. "licenseId": "Unicode-TOU",
  3727. "seeAlso": [
  3728. "http://www.unicode.org/copyright.html"
  3729. ],
  3730. "isOsiApproved": false
  3731. },
  3732. {
  3733. "reference": "https://spdx.org/licenses/GFDL-1.1-no-invariants-only.html",
  3734. "isDeprecatedLicenseId": false,
  3735. "detailsUrl": "https://spdx.org/licenses/GFDL-1.1-no-invariants-only.json",
  3736. "referenceNumber": 297,
  3737. "name": "GNU Free Documentation License v1.1 only - no invariants",
  3738. "licenseId": "GFDL-1.1-no-invariants-only",
  3739. "seeAlso": [
  3740. "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt"
  3741. ],
  3742. "isOsiApproved": false
  3743. },
  3744. {
  3745. "reference": "https://spdx.org/licenses/Caldera.html",
  3746. "isDeprecatedLicenseId": false,
  3747. "detailsUrl": "https://spdx.org/licenses/Caldera.json",
  3748. "referenceNumber": 298,
  3749. "name": "Caldera License",
  3750. "licenseId": "Caldera",
  3751. "seeAlso": [
  3752. "http://www.lemis.com/grog/UNIX/ancient-source-all.pdf"
  3753. ],
  3754. "isOsiApproved": false
  3755. },
  3756. {
  3757. "reference": "https://spdx.org/licenses/Apache-1.1.html",
  3758. "isDeprecatedLicenseId": false,
  3759. "detailsUrl": "https://spdx.org/licenses/Apache-1.1.json",
  3760. "referenceNumber": 299,
  3761. "name": "Apache License 1.1",
  3762. "licenseId": "Apache-1.1",
  3763. "seeAlso": [
  3764. "http://apache.org/licenses/LICENSE-1.1",
  3765. "https://opensource.org/licenses/Apache-1.1"
  3766. ],
  3767. "isOsiApproved": true,
  3768. "isFsfLibre": true
  3769. },
  3770. {
  3771. "reference": "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License-2014.html",
  3772. "isDeprecatedLicenseId": false,
  3773. "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License-2014.json",
  3774. "referenceNumber": 300,
  3775. "name": "BSD 3-Clause No Nuclear License 2014",
  3776. "licenseId": "BSD-3-Clause-No-Nuclear-License-2014",
  3777. "seeAlso": [
  3778. "https://java.net/projects/javaeetutorial/pages/BerkeleyLicense"
  3779. ],
  3780. "isOsiApproved": false
  3781. },
  3782. {
  3783. "reference": "https://spdx.org/licenses/Giftware.html",
  3784. "isDeprecatedLicenseId": false,
  3785. "detailsUrl": "https://spdx.org/licenses/Giftware.json",
  3786. "referenceNumber": 301,
  3787. "name": "Giftware License",
  3788. "licenseId": "Giftware",
  3789. "seeAlso": [
  3790. "http://liballeg.org/license.html#allegro-4-the-giftware-license"
  3791. ],
  3792. "isOsiApproved": false
  3793. },
  3794. {
  3795. "reference": "https://spdx.org/licenses/NOSL.html",
  3796. "isDeprecatedLicenseId": false,
  3797. "detailsUrl": "https://spdx.org/licenses/NOSL.json",
  3798. "referenceNumber": 302,
  3799. "name": "Netizen Open Source License",
  3800. "licenseId": "NOSL",
  3801. "seeAlso": [
  3802. "http://bits.netizen.com.au/licenses/NOSL/nosl.txt"
  3803. ],
  3804. "isOsiApproved": false,
  3805. "isFsfLibre": true
  3806. },
  3807. {
  3808. "reference": "https://spdx.org/licenses/TU-Berlin-2.0.html",
  3809. "isDeprecatedLicenseId": false,
  3810. "detailsUrl": "https://spdx.org/licenses/TU-Berlin-2.0.json",
  3811. "referenceNumber": 303,
  3812. "name": "Technische Universitaet Berlin License 2.0",
  3813. "licenseId": "TU-Berlin-2.0",
  3814. "seeAlso": [
  3815. "https://github.com/CorsixTH/deps/blob/fd339a9f526d1d9c9f01ccf39e438a015da50035/licences/libgsm.txt"
  3816. ],
  3817. "isOsiApproved": false
  3818. },
  3819. {
  3820. "reference": "https://spdx.org/licenses/CECILL-2.1.html",
  3821. "isDeprecatedLicenseId": false,
  3822. "detailsUrl": "https://spdx.org/licenses/CECILL-2.1.json",
  3823. "referenceNumber": 304,
  3824. "name": "CeCILL Free Software License Agreement v2.1",
  3825. "licenseId": "CECILL-2.1",
  3826. "seeAlso": [
  3827. "http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.html"
  3828. ],
  3829. "isOsiApproved": true
  3830. },
  3831. {
  3832. "reference": "https://spdx.org/licenses/Vim.html",
  3833. "isDeprecatedLicenseId": false,
  3834. "detailsUrl": "https://spdx.org/licenses/Vim.json",
  3835. "referenceNumber": 305,
  3836. "name": "Vim License",
  3837. "licenseId": "Vim",
  3838. "seeAlso": [
  3839. "http://vimdoc.sourceforge.net/htmldoc/uganda.html"
  3840. ],
  3841. "isOsiApproved": false,
  3842. "isFsfLibre": true
  3843. },
  3844. {
  3845. "reference": "https://spdx.org/licenses/DSDP.html",
  3846. "isDeprecatedLicenseId": false,
  3847. "detailsUrl": "https://spdx.org/licenses/DSDP.json",
  3848. "referenceNumber": 306,
  3849. "name": "DSDP License",
  3850. "licenseId": "DSDP",
  3851. "seeAlso": [
  3852. "https://fedoraproject.org/wiki/Licensing/DSDP"
  3853. ],
  3854. "isOsiApproved": false
  3855. },
  3856. {
  3857. "reference": "https://spdx.org/licenses/GFDL-1.1-invariants-only.html",
  3858. "isDeprecatedLicenseId": false,
  3859. "detailsUrl": "https://spdx.org/licenses/GFDL-1.1-invariants-only.json",
  3860. "referenceNumber": 307,
  3861. "name": "GNU Free Documentation License v1.1 only - invariants",
  3862. "licenseId": "GFDL-1.1-invariants-only",
  3863. "seeAlso": [
  3864. "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt"
  3865. ],
  3866. "isOsiApproved": false
  3867. },
  3868. {
  3869. "reference": "https://spdx.org/licenses/AMDPLPA.html",
  3870. "isDeprecatedLicenseId": false,
  3871. "detailsUrl": "https://spdx.org/licenses/AMDPLPA.json",
  3872. "referenceNumber": 308,
  3873. "name": "AMD\u0027s plpa_map.c License",
  3874. "licenseId": "AMDPLPA",
  3875. "seeAlso": [
  3876. "https://fedoraproject.org/wiki/Licensing/AMD_plpa_map_License"
  3877. ],
  3878. "isOsiApproved": false
  3879. },
  3880. {
  3881. "reference": "https://spdx.org/licenses/BSD-3-Clause-Clear.html",
  3882. "isDeprecatedLicenseId": false,
  3883. "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-Clear.json",
  3884. "referenceNumber": 309,
  3885. "name": "BSD 3-Clause Clear License",
  3886. "licenseId": "BSD-3-Clause-Clear",
  3887. "seeAlso": [
  3888. "http://labs.metacarta.com/license-explanation.html#license"
  3889. ],
  3890. "isOsiApproved": false,
  3891. "isFsfLibre": true
  3892. },
  3893. {
  3894. "reference": "https://spdx.org/licenses/OLDAP-2.1.html",
  3895. "isDeprecatedLicenseId": false,
  3896. "detailsUrl": "https://spdx.org/licenses/OLDAP-2.1.json",
  3897. "referenceNumber": 310,
  3898. "name": "Open LDAP Public License v2.1",
  3899. "licenseId": "OLDAP-2.1",
  3900. "seeAlso": [
  3901. "http://www.openldap.org/devel/gitweb.cgi?p\u003dopenldap.git;a\u003dblob;f\u003dLICENSE;hb\u003db0d176738e96a0d3b9f85cb51e140a86f21be715"
  3902. ],
  3903. "isOsiApproved": false
  3904. },
  3905. {
  3906. "reference": "https://spdx.org/licenses/GPL-1.0-or-later.html",
  3907. "isDeprecatedLicenseId": false,
  3908. "detailsUrl": "https://spdx.org/licenses/GPL-1.0-or-later.json",
  3909. "referenceNumber": 311,
  3910. "name": "GNU General Public License v1.0 or later",
  3911. "licenseId": "GPL-1.0-or-later",
  3912. "seeAlso": [
  3913. "https://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html"
  3914. ],
  3915. "isOsiApproved": false
  3916. },
  3917. {
  3918. "reference": "https://spdx.org/licenses/OSL-2.0.html",
  3919. "isDeprecatedLicenseId": false,
  3920. "detailsUrl": "https://spdx.org/licenses/OSL-2.0.json",
  3921. "referenceNumber": 312,
  3922. "name": "Open Software License 2.0",
  3923. "licenseId": "OSL-2.0",
  3924. "seeAlso": [
  3925. "http://web.archive.org/web/20041020171434/http://www.rosenlaw.com/osl2.0.html"
  3926. ],
  3927. "isOsiApproved": true,
  3928. "isFsfLibre": true
  3929. },
  3930. {
  3931. "reference": "https://spdx.org/licenses/BSD-1-Clause.html",
  3932. "isDeprecatedLicenseId": false,
  3933. "detailsUrl": "https://spdx.org/licenses/BSD-1-Clause.json",
  3934. "referenceNumber": 313,
  3935. "name": "BSD 1-Clause License",
  3936. "licenseId": "BSD-1-Clause",
  3937. "seeAlso": [
  3938. "https://svnweb.freebsd.org/base/head/include/ifaddrs.h?revision\u003d326823"
  3939. ],
  3940. "isOsiApproved": true
  3941. },
  3942. {
  3943. "reference": "https://spdx.org/licenses/Motosoto.html",
  3944. "isDeprecatedLicenseId": false,
  3945. "detailsUrl": "https://spdx.org/licenses/Motosoto.json",
  3946. "referenceNumber": 314,
  3947. "name": "Motosoto License",
  3948. "licenseId": "Motosoto",
  3949. "seeAlso": [
  3950. "https://opensource.org/licenses/Motosoto"
  3951. ],
  3952. "isOsiApproved": true
  3953. },
  3954. {
  3955. "reference": "https://spdx.org/licenses/OLDAP-1.4.html",
  3956. "isDeprecatedLicenseId": false,
  3957. "detailsUrl": "https://spdx.org/licenses/OLDAP-1.4.json",
  3958. "referenceNumber": 315,
  3959. "name": "Open LDAP Public License v1.4",
  3960. "licenseId": "OLDAP-1.4",
  3961. "seeAlso": [
  3962. "http://www.openldap.org/devel/gitweb.cgi?p\u003dopenldap.git;a\u003dblob;f\u003dLICENSE;hb\u003dc9f95c2f3f2ffb5e0ae55fe7388af75547660941"
  3963. ],
  3964. "isOsiApproved": false
  3965. },
  3966. {
  3967. "reference": "https://spdx.org/licenses/CECILL-2.0.html",
  3968. "isDeprecatedLicenseId": false,
  3969. "detailsUrl": "https://spdx.org/licenses/CECILL-2.0.json",
  3970. "referenceNumber": 316,
  3971. "name": "CeCILL Free Software License Agreement v2.0",
  3972. "licenseId": "CECILL-2.0",
  3973. "seeAlso": [
  3974. "http://www.cecill.info/licences/Licence_CeCILL_V2-en.html"
  3975. ],
  3976. "isOsiApproved": false,
  3977. "isFsfLibre": true
  3978. },
  3979. {
  3980. "reference": "https://spdx.org/licenses/OFL-1.1.html",
  3981. "isDeprecatedLicenseId": false,
  3982. "detailsUrl": "https://spdx.org/licenses/OFL-1.1.json",
  3983. "referenceNumber": 317,
  3984. "name": "SIL Open Font License 1.1",
  3985. "licenseId": "OFL-1.1",
  3986. "seeAlso": [
  3987. "http://scripts.sil.org/cms/scripts/page.php?item_id\u003dOFL_web",
  3988. "https://opensource.org/licenses/OFL-1.1"
  3989. ],
  3990. "isOsiApproved": true,
  3991. "isFsfLibre": true
  3992. },
  3993. {
  3994. "reference": "https://spdx.org/licenses/blessing.html",
  3995. "isDeprecatedLicenseId": false,
  3996. "detailsUrl": "https://spdx.org/licenses/blessing.json",
  3997. "referenceNumber": 318,
  3998. "name": "SQLite Blessing",
  3999. "licenseId": "blessing",
  4000. "seeAlso": [
  4001. "https://www.sqlite.org/src/artifact/e33a4df7e32d742a?ln\u003d4-9",
  4002. "https://sqlite.org/src/artifact/df5091916dbb40e6"
  4003. ],
  4004. "isOsiApproved": false
  4005. },
  4006. {
  4007. "reference": "https://spdx.org/licenses/MIT-advertising.html",
  4008. "isDeprecatedLicenseId": false,
  4009. "detailsUrl": "https://spdx.org/licenses/MIT-advertising.json",
  4010. "referenceNumber": 319,
  4011. "name": "Enlightenment License (e16)",
  4012. "licenseId": "MIT-advertising",
  4013. "seeAlso": [
  4014. "https://fedoraproject.org/wiki/Licensing/MIT_With_Advertising"
  4015. ],
  4016. "isOsiApproved": false
  4017. },
  4018. {
  4019. "reference": "https://spdx.org/licenses/EFL-2.0.html",
  4020. "isDeprecatedLicenseId": false,
  4021. "detailsUrl": "https://spdx.org/licenses/EFL-2.0.json",
  4022. "referenceNumber": 320,
  4023. "name": "Eiffel Forum License v2.0",
  4024. "licenseId": "EFL-2.0",
  4025. "seeAlso": [
  4026. "http://www.eiffel-nice.org/license/eiffel-forum-license-2.html",
  4027. "https://opensource.org/licenses/EFL-2.0"
  4028. ],
  4029. "isOsiApproved": true,
  4030. "isFsfLibre": true
  4031. },
  4032. {
  4033. "reference": "https://spdx.org/licenses/Beerware.html",
  4034. "isDeprecatedLicenseId": false,
  4035. "detailsUrl": "https://spdx.org/licenses/Beerware.json",
  4036. "referenceNumber": 321,
  4037. "name": "Beerware License",
  4038. "licenseId": "Beerware",
  4039. "seeAlso": [
  4040. "https://fedoraproject.org/wiki/Licensing/Beerware",
  4041. "https://people.freebsd.org/~phk/"
  4042. ],
  4043. "isOsiApproved": false
  4044. },
  4045. {
  4046. "reference": "https://spdx.org/licenses/YPL-1.0.html",
  4047. "isDeprecatedLicenseId": false,
  4048. "detailsUrl": "https://spdx.org/licenses/YPL-1.0.json",
  4049. "referenceNumber": 322,
  4050. "name": "Yahoo! Public License v1.0",
  4051. "licenseId": "YPL-1.0",
  4052. "seeAlso": [
  4053. "http://www.zimbra.com/license/yahoo_public_license_1.0.html"
  4054. ],
  4055. "isOsiApproved": false
  4056. },
  4057. {
  4058. "reference": "https://spdx.org/licenses/libselinux-1.0.html",
  4059. "isDeprecatedLicenseId": false,
  4060. "detailsUrl": "https://spdx.org/licenses/libselinux-1.0.json",
  4061. "referenceNumber": 323,
  4062. "name": "libselinux public domain notice",
  4063. "licenseId": "libselinux-1.0",
  4064. "seeAlso": [
  4065. "https://github.com/SELinuxProject/selinux/blob/master/libselinux/LICENSE"
  4066. ],
  4067. "isOsiApproved": false
  4068. },
  4069. {
  4070. "reference": "https://spdx.org/licenses/OPL-1.0.html",
  4071. "isDeprecatedLicenseId": false,
  4072. "detailsUrl": "https://spdx.org/licenses/OPL-1.0.json",
  4073. "referenceNumber": 324,
  4074. "name": "Open Public License v1.0",
  4075. "licenseId": "OPL-1.0",
  4076. "seeAlso": [
  4077. "http://old.koalateam.com/jackaroo/OPL_1_0.TXT",
  4078. "https://fedoraproject.org/wiki/Licensing/Open_Public_License"
  4079. ],
  4080. "isOsiApproved": false
  4081. },
  4082. {
  4083. "reference": "https://spdx.org/licenses/NLOD-2.0.html",
  4084. "isDeprecatedLicenseId": false,
  4085. "detailsUrl": "https://spdx.org/licenses/NLOD-2.0.json",
  4086. "referenceNumber": 325,
  4087. "name": "Norwegian Licence for Open Government Data (NLOD) 2.0",
  4088. "licenseId": "NLOD-2.0",
  4089. "seeAlso": [
  4090. "http://data.norge.no/nlod/en/2.0"
  4091. ],
  4092. "isOsiApproved": false
  4093. },
  4094. {
  4095. "reference": "https://spdx.org/licenses/CPL-1.0.html",
  4096. "isDeprecatedLicenseId": false,
  4097. "detailsUrl": "https://spdx.org/licenses/CPL-1.0.json",
  4098. "referenceNumber": 326,
  4099. "name": "Common Public License 1.0",
  4100. "licenseId": "CPL-1.0",
  4101. "seeAlso": [
  4102. "https://opensource.org/licenses/CPL-1.0"
  4103. ],
  4104. "isOsiApproved": true,
  4105. "isFsfLibre": true
  4106. },
  4107. {
  4108. "reference": "https://spdx.org/licenses/UCL-1.0.html",
  4109. "isDeprecatedLicenseId": false,
  4110. "detailsUrl": "https://spdx.org/licenses/UCL-1.0.json",
  4111. "referenceNumber": 327,
  4112. "name": "Upstream Compatibility License v1.0",
  4113. "licenseId": "UCL-1.0",
  4114. "seeAlso": [
  4115. "https://opensource.org/licenses/UCL-1.0"
  4116. ],
  4117. "isOsiApproved": true
  4118. },
  4119. {
  4120. "reference": "https://spdx.org/licenses/SSPL-1.0.html",
  4121. "isDeprecatedLicenseId": false,
  4122. "detailsUrl": "https://spdx.org/licenses/SSPL-1.0.json",
  4123. "referenceNumber": 328,
  4124. "name": "Server Side Public License, v 1",
  4125. "licenseId": "SSPL-1.0",
  4126. "seeAlso": [
  4127. "https://www.mongodb.com/licensing/server-side-public-license"
  4128. ],
  4129. "isOsiApproved": false
  4130. },
  4131. {
  4132. "reference": "https://spdx.org/licenses/SGI-B-2.0.html",
  4133. "isDeprecatedLicenseId": false,
  4134. "detailsUrl": "https://spdx.org/licenses/SGI-B-2.0.json",
  4135. "referenceNumber": 329,
  4136. "name": "SGI Free Software License B v2.0",
  4137. "licenseId": "SGI-B-2.0",
  4138. "seeAlso": [
  4139. "http://oss.sgi.com/projects/FreeB/SGIFreeSWLicB.2.0.pdf"
  4140. ],
  4141. "isOsiApproved": false,
  4142. "isFsfLibre": true
  4143. },
  4144. {
  4145. "reference": "https://spdx.org/licenses/CC-BY-3.0-NL.html",
  4146. "isDeprecatedLicenseId": false,
  4147. "detailsUrl": "https://spdx.org/licenses/CC-BY-3.0-NL.json",
  4148. "referenceNumber": 330,
  4149. "name": "Creative Commons Attribution 3.0 Netherlands",
  4150. "licenseId": "CC-BY-3.0-NL",
  4151. "seeAlso": [
  4152. "https://creativecommons.org/licenses/by/3.0/nl/legalcode"
  4153. ],
  4154. "isOsiApproved": false
  4155. },
  4156. {
  4157. "reference": "https://spdx.org/licenses/BlueOak-1.0.0.html",
  4158. "isDeprecatedLicenseId": false,
  4159. "detailsUrl": "https://spdx.org/licenses/BlueOak-1.0.0.json",
  4160. "referenceNumber": 331,
  4161. "name": "Blue Oak Model License 1.0.0",
  4162. "licenseId": "BlueOak-1.0.0",
  4163. "seeAlso": [
  4164. "https://blueoakcouncil.org/license/1.0.0"
  4165. ],
  4166. "isOsiApproved": false
  4167. },
  4168. {
  4169. "reference": "https://spdx.org/licenses/MirOS.html",
  4170. "isDeprecatedLicenseId": false,
  4171. "detailsUrl": "https://spdx.org/licenses/MirOS.json",
  4172. "referenceNumber": 332,
  4173. "name": "The MirOS Licence",
  4174. "licenseId": "MirOS",
  4175. "seeAlso": [
  4176. "https://opensource.org/licenses/MirOS"
  4177. ],
  4178. "isOsiApproved": true
  4179. },
  4180. {
  4181. "reference": "https://spdx.org/licenses/Verbatim-man-pages.html",
  4182. "isDeprecatedLicenseId": false,
  4183. "detailsUrl": "https://spdx.org/licenses/Verbatim-man-pages.json",
  4184. "referenceNumber": 333,
  4185. "name": "The \"Verbatim\" License (man-pages)",
  4186. "licenseId": "Verbatim-man-pages",
  4187. "seeAlso": [
  4188. "https://www.kernel.org/doc/man-pages/licenses.html"
  4189. ],
  4190. "isOsiApproved": false
  4191. },
  4192. {
  4193. "reference": "https://spdx.org/licenses/NLOD-1.0.html",
  4194. "isDeprecatedLicenseId": false,
  4195. "detailsUrl": "https://spdx.org/licenses/NLOD-1.0.json",
  4196. "referenceNumber": 334,
  4197. "name": "Norwegian Licence for Open Government Data (NLOD) 1.0",
  4198. "licenseId": "NLOD-1.0",
  4199. "seeAlso": [
  4200. "http://data.norge.no/nlod/en/1.0"
  4201. ],
  4202. "isOsiApproved": false
  4203. },
  4204. {
  4205. "reference": "https://spdx.org/licenses/Unlicense.html",
  4206. "isDeprecatedLicenseId": false,
  4207. "detailsUrl": "https://spdx.org/licenses/Unlicense.json",
  4208. "referenceNumber": 335,
  4209. "name": "The Unlicense",
  4210. "licenseId": "Unlicense",
  4211. "seeAlso": [
  4212. "https://unlicense.org/"
  4213. ],
  4214. "isOsiApproved": true,
  4215. "isFsfLibre": true
  4216. },
  4217. {
  4218. "reference": "https://spdx.org/licenses/MIT-open-group.html",
  4219. "isDeprecatedLicenseId": false,
  4220. "detailsUrl": "https://spdx.org/licenses/MIT-open-group.json",
  4221. "referenceNumber": 336,
  4222. "name": "MIT Open Group variant",
  4223. "licenseId": "MIT-open-group",
  4224. "seeAlso": [
  4225. "https://gitlab.freedesktop.org/xorg/app/iceauth/-/blob/master/COPYING",
  4226. "https://gitlab.freedesktop.org/xorg/app/xvinfo/-/blob/master/COPYING",
  4227. "https://gitlab.freedesktop.org/xorg/app/xsetroot/-/blob/master/COPYING",
  4228. "https://gitlab.freedesktop.org/xorg/app/xauth/-/blob/master/COPYING"
  4229. ],
  4230. "isOsiApproved": false
  4231. },
  4232. {
  4233. "reference": "https://spdx.org/licenses/ICU.html",
  4234. "isDeprecatedLicenseId": false,
  4235. "detailsUrl": "https://spdx.org/licenses/ICU.json",
  4236. "referenceNumber": 337,
  4237. "name": "ICU License",
  4238. "licenseId": "ICU",
  4239. "seeAlso": [
  4240. "http://source.icu-project.org/repos/icu/icu/trunk/license.html"
  4241. ],
  4242. "isOsiApproved": false
  4243. },
  4244. {
  4245. "reference": "https://spdx.org/licenses/JasPer-2.0.html",
  4246. "isDeprecatedLicenseId": false,
  4247. "detailsUrl": "https://spdx.org/licenses/JasPer-2.0.json",
  4248. "referenceNumber": 338,
  4249. "name": "JasPer License",
  4250. "licenseId": "JasPer-2.0",
  4251. "seeAlso": [
  4252. "http://www.ece.uvic.ca/~mdadams/jasper/LICENSE"
  4253. ],
  4254. "isOsiApproved": false
  4255. },
  4256. {
  4257. "reference": "https://spdx.org/licenses/Glulxe.html",
  4258. "isDeprecatedLicenseId": false,
  4259. "detailsUrl": "https://spdx.org/licenses/Glulxe.json",
  4260. "referenceNumber": 339,
  4261. "name": "Glulxe License",
  4262. "licenseId": "Glulxe",
  4263. "seeAlso": [
  4264. "https://fedoraproject.org/wiki/Licensing/Glulxe"
  4265. ],
  4266. "isOsiApproved": false
  4267. },
  4268. {
  4269. "reference": "https://spdx.org/licenses/OGL-UK-1.0.html",
  4270. "isDeprecatedLicenseId": false,
  4271. "detailsUrl": "https://spdx.org/licenses/OGL-UK-1.0.json",
  4272. "referenceNumber": 340,
  4273. "name": "Open Government Licence v1.0",
  4274. "licenseId": "OGL-UK-1.0",
  4275. "seeAlso": [
  4276. "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/1/"
  4277. ],
  4278. "isOsiApproved": false
  4279. },
  4280. {
  4281. "reference": "https://spdx.org/licenses/RHeCos-1.1.html",
  4282. "isDeprecatedLicenseId": false,
  4283. "detailsUrl": "https://spdx.org/licenses/RHeCos-1.1.json",
  4284. "referenceNumber": 341,
  4285. "name": "Red Hat eCos Public License v1.1",
  4286. "licenseId": "RHeCos-1.1",
  4287. "seeAlso": [
  4288. "http://ecos.sourceware.org/old-license.html"
  4289. ],
  4290. "isOsiApproved": false
  4291. },
  4292. {
  4293. "reference": "https://spdx.org/licenses/CERN-OHL-1.2.html",
  4294. "isDeprecatedLicenseId": false,
  4295. "detailsUrl": "https://spdx.org/licenses/CERN-OHL-1.2.json",
  4296. "referenceNumber": 342,
  4297. "name": "CERN Open Hardware Licence v1.2",
  4298. "licenseId": "CERN-OHL-1.2",
  4299. "seeAlso": [
  4300. "https://www.ohwr.org/project/licenses/wikis/cern-ohl-v1.2"
  4301. ],
  4302. "isOsiApproved": false
  4303. },
  4304. {
  4305. "reference": "https://spdx.org/licenses/BSD-4-Clause-UC.html",
  4306. "isDeprecatedLicenseId": false,
  4307. "detailsUrl": "https://spdx.org/licenses/BSD-4-Clause-UC.json",
  4308. "referenceNumber": 343,
  4309. "name": "BSD-4-Clause (University of California-Specific)",
  4310. "licenseId": "BSD-4-Clause-UC",
  4311. "seeAlso": [
  4312. "http://www.freebsd.org/copyright/license.html"
  4313. ],
  4314. "isOsiApproved": false
  4315. },
  4316. {
  4317. "reference": "https://spdx.org/licenses/CERN-OHL-1.1.html",
  4318. "isDeprecatedLicenseId": false,
  4319. "detailsUrl": "https://spdx.org/licenses/CERN-OHL-1.1.json",
  4320. "referenceNumber": 344,
  4321. "name": "CERN Open Hardware Licence v1.1",
  4322. "licenseId": "CERN-OHL-1.1",
  4323. "seeAlso": [
  4324. "https://www.ohwr.org/project/licenses/wikis/cern-ohl-v1.1"
  4325. ],
  4326. "isOsiApproved": false
  4327. },
  4328. {
  4329. "reference": "https://spdx.org/licenses/NTP-0.html",
  4330. "isDeprecatedLicenseId": false,
  4331. "detailsUrl": "https://spdx.org/licenses/NTP-0.json",
  4332. "referenceNumber": 345,
  4333. "name": "NTP No Attribution",
  4334. "licenseId": "NTP-0",
  4335. "seeAlso": [
  4336. "https://github.com/tytso/e2fsprogs/blob/master/lib/et/et_name.c"
  4337. ],
  4338. "isOsiApproved": false
  4339. },
  4340. {
  4341. "reference": "https://spdx.org/licenses/LGPL-3.0-or-later.html",
  4342. "isDeprecatedLicenseId": false,
  4343. "detailsUrl": "https://spdx.org/licenses/LGPL-3.0-or-later.json",
  4344. "referenceNumber": 346,
  4345. "name": "GNU Lesser General Public License v3.0 or later",
  4346. "licenseId": "LGPL-3.0-or-later",
  4347. "seeAlso": [
  4348. "https://www.gnu.org/licenses/lgpl-3.0-standalone.html",
  4349. "https://opensource.org/licenses/LGPL-3.0"
  4350. ],
  4351. "isOsiApproved": true,
  4352. "isFsfLibre": true
  4353. },
  4354. {
  4355. "reference": "https://spdx.org/licenses/VSL-1.0.html",
  4356. "isDeprecatedLicenseId": false,
  4357. "detailsUrl": "https://spdx.org/licenses/VSL-1.0.json",
  4358. "referenceNumber": 347,
  4359. "name": "Vovida Software License v1.0",
  4360. "licenseId": "VSL-1.0",
  4361. "seeAlso": [
  4362. "https://opensource.org/licenses/VSL-1.0"
  4363. ],
  4364. "isOsiApproved": true
  4365. },
  4366. {
  4367. "reference": "https://spdx.org/licenses/GPL-2.0-with-classpath-exception.html",
  4368. "isDeprecatedLicenseId": true,
  4369. "detailsUrl": "https://spdx.org/licenses/GPL-2.0-with-classpath-exception.json",
  4370. "referenceNumber": 348,
  4371. "name": "GNU General Public License v2.0 w/Classpath exception",
  4372. "licenseId": "GPL-2.0-with-classpath-exception",
  4373. "seeAlso": [
  4374. "https://www.gnu.org/software/classpath/license.html"
  4375. ],
  4376. "isOsiApproved": false
  4377. },
  4378. {
  4379. "reference": "https://spdx.org/licenses/ODC-By-1.0.html",
  4380. "isDeprecatedLicenseId": false,
  4381. "detailsUrl": "https://spdx.org/licenses/ODC-By-1.0.json",
  4382. "referenceNumber": 349,
  4383. "name": "Open Data Commons Attribution License v1.0",
  4384. "licenseId": "ODC-By-1.0",
  4385. "seeAlso": [
  4386. "https://opendatacommons.org/licenses/by/1.0/"
  4387. ],
  4388. "isOsiApproved": false
  4389. },
  4390. {
  4391. "reference": "https://spdx.org/licenses/RSCPL.html",
  4392. "isDeprecatedLicenseId": false,
  4393. "detailsUrl": "https://spdx.org/licenses/RSCPL.json",
  4394. "referenceNumber": 350,
  4395. "name": "Ricoh Source Code Public License",
  4396. "licenseId": "RSCPL",
  4397. "seeAlso": [
  4398. "http://wayback.archive.org/web/20060715140826/http://www.risource.org/RPL/RPL-1.0A.shtml",
  4399. "https://opensource.org/licenses/RSCPL"
  4400. ],
  4401. "isOsiApproved": true
  4402. },
  4403. {
  4404. "reference": "https://spdx.org/licenses/PolyForm-Noncommercial-1.0.0.html",
  4405. "isDeprecatedLicenseId": false,
  4406. "detailsUrl": "https://spdx.org/licenses/PolyForm-Noncommercial-1.0.0.json",
  4407. "referenceNumber": 351,
  4408. "name": "PolyForm Noncommercial License 1.0.0",
  4409. "licenseId": "PolyForm-Noncommercial-1.0.0",
  4410. "seeAlso": [
  4411. "https://polyformproject.org/licenses/noncommercial/1.0.0"
  4412. ],
  4413. "isOsiApproved": false
  4414. },
  4415. {
  4416. "reference": "https://spdx.org/licenses/OFL-1.0.html",
  4417. "isDeprecatedLicenseId": false,
  4418. "detailsUrl": "https://spdx.org/licenses/OFL-1.0.json",
  4419. "referenceNumber": 352,
  4420. "name": "SIL Open Font License 1.0",
  4421. "licenseId": "OFL-1.0",
  4422. "seeAlso": [
  4423. "http://scripts.sil.org/cms/scripts/page.php?item_id\u003dOFL10_web"
  4424. ],
  4425. "isOsiApproved": false
  4426. },
  4427. {
  4428. "reference": "https://spdx.org/licenses/CECILL-1.1.html",
  4429. "isDeprecatedLicenseId": false,
  4430. "detailsUrl": "https://spdx.org/licenses/CECILL-1.1.json",
  4431. "referenceNumber": 353,
  4432. "name": "CeCILL Free Software License Agreement v1.1",
  4433. "licenseId": "CECILL-1.1",
  4434. "seeAlso": [
  4435. "http://www.cecill.info/licences/Licence_CeCILL_V1.1-US.html"
  4436. ],
  4437. "isOsiApproved": false
  4438. },
  4439. {
  4440. "reference": "https://spdx.org/licenses/LGPL-2.0-only.html",
  4441. "isDeprecatedLicenseId": false,
  4442. "detailsUrl": "https://spdx.org/licenses/LGPL-2.0-only.json",
  4443. "referenceNumber": 354,
  4444. "name": "GNU Library General Public License v2 only",
  4445. "licenseId": "LGPL-2.0-only",
  4446. "seeAlso": [
  4447. "https://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html"
  4448. ],
  4449. "isOsiApproved": true
  4450. },
  4451. {
  4452. "reference": "https://spdx.org/licenses/CDDL-1.1.html",
  4453. "isDeprecatedLicenseId": false,
  4454. "detailsUrl": "https://spdx.org/licenses/CDDL-1.1.json",
  4455. "referenceNumber": 355,
  4456. "name": "Common Development and Distribution License 1.1",
  4457. "licenseId": "CDDL-1.1",
  4458. "seeAlso": [
  4459. "http://glassfish.java.net/public/CDDL+GPL_1_1.html",
  4460. "https://javaee.github.io/glassfish/LICENSE"
  4461. ],
  4462. "isOsiApproved": false
  4463. },
  4464. {
  4465. "reference": "https://spdx.org/licenses/GPL-2.0-with-GCC-exception.html",
  4466. "isDeprecatedLicenseId": true,
  4467. "detailsUrl": "https://spdx.org/licenses/GPL-2.0-with-GCC-exception.json",
  4468. "referenceNumber": 356,
  4469. "name": "GNU General Public License v2.0 w/GCC Runtime Library exception",
  4470. "licenseId": "GPL-2.0-with-GCC-exception",
  4471. "seeAlso": [
  4472. "https://gcc.gnu.org/git/?p\u003dgcc.git;a\u003dblob;f\u003dgcc/libgcc1.c;h\u003d762f5143fc6eed57b6797c82710f3538aa52b40b;hb\u003dcb143a3ce4fb417c68f5fa2691a1b1b1053dfba9#l10"
  4473. ],
  4474. "isOsiApproved": false
  4475. },
  4476. {
  4477. "reference": "https://spdx.org/licenses/MS-RL.html",
  4478. "isDeprecatedLicenseId": false,
  4479. "detailsUrl": "https://spdx.org/licenses/MS-RL.json",
  4480. "referenceNumber": 357,
  4481. "name": "Microsoft Reciprocal License",
  4482. "licenseId": "MS-RL",
  4483. "seeAlso": [
  4484. "http://www.microsoft.com/opensource/licenses.mspx",
  4485. "https://opensource.org/licenses/MS-RL"
  4486. ],
  4487. "isOsiApproved": true,
  4488. "isFsfLibre": true
  4489. },
  4490. {
  4491. "reference": "https://spdx.org/licenses/GL2PS.html",
  4492. "isDeprecatedLicenseId": false,
  4493. "detailsUrl": "https://spdx.org/licenses/GL2PS.json",
  4494. "referenceNumber": 358,
  4495. "name": "GL2PS License",
  4496. "licenseId": "GL2PS",
  4497. "seeAlso": [
  4498. "http://www.geuz.org/gl2ps/COPYING.GL2PS"
  4499. ],
  4500. "isOsiApproved": false
  4501. },
  4502. {
  4503. "reference": "https://spdx.org/licenses/GFDL-1.1-only.html",
  4504. "isDeprecatedLicenseId": false,
  4505. "detailsUrl": "https://spdx.org/licenses/GFDL-1.1-only.json",
  4506. "referenceNumber": 359,
  4507. "name": "GNU Free Documentation License v1.1 only",
  4508. "licenseId": "GFDL-1.1-only",
  4509. "seeAlso": [
  4510. "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt"
  4511. ],
  4512. "isOsiApproved": false,
  4513. "isFsfLibre": true
  4514. },
  4515. {
  4516. "reference": "https://spdx.org/licenses/curl.html",
  4517. "isDeprecatedLicenseId": false,
  4518. "detailsUrl": "https://spdx.org/licenses/curl.json",
  4519. "referenceNumber": 360,
  4520. "name": "curl License",
  4521. "licenseId": "curl",
  4522. "seeAlso": [
  4523. "https://github.com/bagder/curl/blob/master/COPYING"
  4524. ],
  4525. "isOsiApproved": false
  4526. },
  4527. {
  4528. "reference": "https://spdx.org/licenses/CC-BY-NC-SA-1.0.html",
  4529. "isDeprecatedLicenseId": false,
  4530. "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-SA-1.0.json",
  4531. "referenceNumber": 361,
  4532. "name": "Creative Commons Attribution Non Commercial Share Alike 1.0 Generic",
  4533. "licenseId": "CC-BY-NC-SA-1.0",
  4534. "seeAlso": [
  4535. "https://creativecommons.org/licenses/by-nc-sa/1.0/legalcode"
  4536. ],
  4537. "isOsiApproved": false
  4538. },
  4539. {
  4540. "reference": "https://spdx.org/licenses/BSD-3-Clause-Open-MPI.html",
  4541. "isDeprecatedLicenseId": false,
  4542. "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-Open-MPI.json",
  4543. "referenceNumber": 362,
  4544. "name": "BSD 3-Clause Open MPI variant",
  4545. "licenseId": "BSD-3-Clause-Open-MPI",
  4546. "seeAlso": [
  4547. "https://www.open-mpi.org/community/license.php",
  4548. "http://www.netlib.org/lapack/LICENSE.txt"
  4549. ],
  4550. "isOsiApproved": false
  4551. },
  4552. {
  4553. "reference": "https://spdx.org/licenses/OFL-1.0-RFN.html",
  4554. "isDeprecatedLicenseId": false,
  4555. "detailsUrl": "https://spdx.org/licenses/OFL-1.0-RFN.json",
  4556. "referenceNumber": 363,
  4557. "name": "SIL Open Font License 1.0 with Reserved Font Name",
  4558. "licenseId": "OFL-1.0-RFN",
  4559. "seeAlso": [
  4560. "http://scripts.sil.org/cms/scripts/page.php?item_id\u003dOFL10_web"
  4561. ],
  4562. "isOsiApproved": false
  4563. },
  4564. {
  4565. "reference": "https://spdx.org/licenses/wxWindows.html",
  4566. "isDeprecatedLicenseId": true,
  4567. "detailsUrl": "https://spdx.org/licenses/wxWindows.json",
  4568. "referenceNumber": 364,
  4569. "name": "wxWindows Library License",
  4570. "licenseId": "wxWindows",
  4571. "seeAlso": [
  4572. "https://opensource.org/licenses/WXwindows"
  4573. ],
  4574. "isOsiApproved": false
  4575. },
  4576. {
  4577. "reference": "https://spdx.org/licenses/LGPL-2.1-only.html",
  4578. "isDeprecatedLicenseId": false,
  4579. "detailsUrl": "https://spdx.org/licenses/LGPL-2.1-only.json",
  4580. "referenceNumber": 365,
  4581. "name": "GNU Lesser General Public License v2.1 only",
  4582. "licenseId": "LGPL-2.1-only",
  4583. "seeAlso": [
  4584. "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html",
  4585. "https://opensource.org/licenses/LGPL-2.1"
  4586. ],
  4587. "isOsiApproved": true,
  4588. "isFsfLibre": true
  4589. },
  4590. {
  4591. "reference": "https://spdx.org/licenses/AGPL-1.0-or-later.html",
  4592. "isDeprecatedLicenseId": false,
  4593. "detailsUrl": "https://spdx.org/licenses/AGPL-1.0-or-later.json",
  4594. "referenceNumber": 366,
  4595. "name": "Affero General Public License v1.0 or later",
  4596. "licenseId": "AGPL-1.0-or-later",
  4597. "seeAlso": [
  4598. "http://www.affero.org/oagpl.html"
  4599. ],
  4600. "isOsiApproved": false
  4601. },
  4602. {
  4603. "reference": "https://spdx.org/licenses/NLPL.html",
  4604. "isDeprecatedLicenseId": false,
  4605. "detailsUrl": "https://spdx.org/licenses/NLPL.json",
  4606. "referenceNumber": 367,
  4607. "name": "No Limit Public License",
  4608. "licenseId": "NLPL",
  4609. "seeAlso": [
  4610. "https://fedoraproject.org/wiki/Licensing/NLPL"
  4611. ],
  4612. "isOsiApproved": false
  4613. },
  4614. {
  4615. "reference": "https://spdx.org/licenses/OSL-1.1.html",
  4616. "isDeprecatedLicenseId": false,
  4617. "detailsUrl": "https://spdx.org/licenses/OSL-1.1.json",
  4618. "referenceNumber": 368,
  4619. "name": "Open Software License 1.1",
  4620. "licenseId": "OSL-1.1",
  4621. "seeAlso": [
  4622. "https://fedoraproject.org/wiki/Licensing/OSL1.1"
  4623. ],
  4624. "isOsiApproved": false,
  4625. "isFsfLibre": true
  4626. },
  4627. {
  4628. "reference": "https://spdx.org/licenses/MIT-enna.html",
  4629. "isDeprecatedLicenseId": false,
  4630. "detailsUrl": "https://spdx.org/licenses/MIT-enna.json",
  4631. "referenceNumber": 369,
  4632. "name": "enna License",
  4633. "licenseId": "MIT-enna",
  4634. "seeAlso": [
  4635. "https://fedoraproject.org/wiki/Licensing/MIT#enna"
  4636. ],
  4637. "isOsiApproved": false
  4638. },
  4639. {
  4640. "reference": "https://spdx.org/licenses/GPL-1.0+.html",
  4641. "isDeprecatedLicenseId": true,
  4642. "detailsUrl": "https://spdx.org/licenses/GPL-1.0+.json",
  4643. "referenceNumber": 370,
  4644. "name": "GNU General Public License v1.0 or later",
  4645. "licenseId": "GPL-1.0+",
  4646. "seeAlso": [
  4647. "https://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html"
  4648. ],
  4649. "isOsiApproved": false
  4650. },
  4651. {
  4652. "reference": "https://spdx.org/licenses/StandardML-NJ.html",
  4653. "isDeprecatedLicenseId": true,
  4654. "detailsUrl": "https://spdx.org/licenses/StandardML-NJ.json",
  4655. "referenceNumber": 371,
  4656. "name": "Standard ML of New Jersey License",
  4657. "licenseId": "StandardML-NJ",
  4658. "seeAlso": [
  4659. "http://www.smlnj.org//license.html"
  4660. ],
  4661. "isOsiApproved": false
  4662. },
  4663. {
  4664. "reference": "https://spdx.org/licenses/GFDL-1.3-or-later.html",
  4665. "isDeprecatedLicenseId": false,
  4666. "detailsUrl": "https://spdx.org/licenses/GFDL-1.3-or-later.json",
  4667. "referenceNumber": 372,
  4668. "name": "GNU Free Documentation License v1.3 or later",
  4669. "licenseId": "GFDL-1.3-or-later",
  4670. "seeAlso": [
  4671. "https://www.gnu.org/licenses/fdl-1.3.txt"
  4672. ],
  4673. "isOsiApproved": false,
  4674. "isFsfLibre": true
  4675. },
  4676. {
  4677. "reference": "https://spdx.org/licenses/APSL-2.0.html",
  4678. "isDeprecatedLicenseId": false,
  4679. "detailsUrl": "https://spdx.org/licenses/APSL-2.0.json",
  4680. "referenceNumber": 373,
  4681. "name": "Apple Public Source License 2.0",
  4682. "licenseId": "APSL-2.0",
  4683. "seeAlso": [
  4684. "http://www.opensource.apple.com/license/apsl/"
  4685. ],
  4686. "isOsiApproved": true,
  4687. "isFsfLibre": true
  4688. },
  4689. {
  4690. "reference": "https://spdx.org/licenses/Artistic-1.0.html",
  4691. "isDeprecatedLicenseId": false,
  4692. "detailsUrl": "https://spdx.org/licenses/Artistic-1.0.json",
  4693. "referenceNumber": 374,
  4694. "name": "Artistic License 1.0",
  4695. "licenseId": "Artistic-1.0",
  4696. "seeAlso": [
  4697. "https://opensource.org/licenses/Artistic-1.0"
  4698. ],
  4699. "isOsiApproved": true
  4700. },
  4701. {
  4702. "reference": "https://spdx.org/licenses/GPL-2.0.html",
  4703. "isDeprecatedLicenseId": true,
  4704. "detailsUrl": "https://spdx.org/licenses/GPL-2.0.json",
  4705. "referenceNumber": 375,
  4706. "name": "GNU General Public License v2.0 only",
  4707. "licenseId": "GPL-2.0",
  4708. "seeAlso": [
  4709. "https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html",
  4710. "https://opensource.org/licenses/GPL-2.0"
  4711. ],
  4712. "isOsiApproved": true,
  4713. "isFsfLibre": true
  4714. },
  4715. {
  4716. "reference": "https://spdx.org/licenses/GPL-3.0-only.html",
  4717. "isDeprecatedLicenseId": false,
  4718. "detailsUrl": "https://spdx.org/licenses/GPL-3.0-only.json",
  4719. "referenceNumber": 376,
  4720. "name": "GNU General Public License v3.0 only",
  4721. "licenseId": "GPL-3.0-only",
  4722. "seeAlso": [
  4723. "https://www.gnu.org/licenses/gpl-3.0-standalone.html",
  4724. "https://opensource.org/licenses/GPL-3.0"
  4725. ],
  4726. "isOsiApproved": true,
  4727. "isFsfLibre": true
  4728. },
  4729. {
  4730. "reference": "https://spdx.org/licenses/AGPL-1.0-only.html",
  4731. "isDeprecatedLicenseId": false,
  4732. "detailsUrl": "https://spdx.org/licenses/AGPL-1.0-only.json",
  4733. "referenceNumber": 377,
  4734. "name": "Affero General Public License v1.0 only",
  4735. "licenseId": "AGPL-1.0-only",
  4736. "seeAlso": [
  4737. "http://www.affero.org/oagpl.html"
  4738. ],
  4739. "isOsiApproved": false
  4740. },
  4741. {
  4742. "reference": "https://spdx.org/licenses/TOSL.html",
  4743. "isDeprecatedLicenseId": false,
  4744. "detailsUrl": "https://spdx.org/licenses/TOSL.json",
  4745. "referenceNumber": 378,
  4746. "name": "Trusster Open Source License",
  4747. "licenseId": "TOSL",
  4748. "seeAlso": [
  4749. "https://fedoraproject.org/wiki/Licensing/TOSL"
  4750. ],
  4751. "isOsiApproved": false
  4752. },
  4753. {
  4754. "reference": "https://spdx.org/licenses/JSON.html",
  4755. "isDeprecatedLicenseId": false,
  4756. "detailsUrl": "https://spdx.org/licenses/JSON.json",
  4757. "referenceNumber": 379,
  4758. "name": "JSON License",
  4759. "licenseId": "JSON",
  4760. "seeAlso": [
  4761. "http://www.json.org/license.html"
  4762. ],
  4763. "isOsiApproved": false
  4764. },
  4765. {
  4766. "reference": "https://spdx.org/licenses/MPL-2.0.html",
  4767. "isDeprecatedLicenseId": false,
  4768. "detailsUrl": "https://spdx.org/licenses/MPL-2.0.json",
  4769. "referenceNumber": 380,
  4770. "name": "Mozilla Public License 2.0",
  4771. "licenseId": "MPL-2.0",
  4772. "seeAlso": [
  4773. "https://www.mozilla.org/MPL/2.0/",
  4774. "https://opensource.org/licenses/MPL-2.0"
  4775. ],
  4776. "isOsiApproved": true,
  4777. "isFsfLibre": true
  4778. },
  4779. {
  4780. "reference": "https://spdx.org/licenses/ADSL.html",
  4781. "isDeprecatedLicenseId": false,
  4782. "detailsUrl": "https://spdx.org/licenses/ADSL.json",
  4783. "referenceNumber": 381,
  4784. "name": "Amazon Digital Services License",
  4785. "licenseId": "ADSL",
  4786. "seeAlso": [
  4787. "https://fedoraproject.org/wiki/Licensing/AmazonDigitalServicesLicense"
  4788. ],
  4789. "isOsiApproved": false
  4790. },
  4791. {
  4792. "reference": "https://spdx.org/licenses/TORQUE-1.1.html",
  4793. "isDeprecatedLicenseId": false,
  4794. "detailsUrl": "https://spdx.org/licenses/TORQUE-1.1.json",
  4795. "referenceNumber": 382,
  4796. "name": "TORQUE v2.5+ Software License v1.1",
  4797. "licenseId": "TORQUE-1.1",
  4798. "seeAlso": [
  4799. "https://fedoraproject.org/wiki/Licensing/TORQUEv1.1"
  4800. ],
  4801. "isOsiApproved": false
  4802. },
  4803. {
  4804. "reference": "https://spdx.org/licenses/CC-BY-NC-SA-3.0-IGO.html",
  4805. "isDeprecatedLicenseId": false,
  4806. "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-SA-3.0-IGO.json",
  4807. "referenceNumber": 383,
  4808. "name": "Creative Commons Attribution Non Commercial Share Alike 3.0 IGO",
  4809. "licenseId": "CC-BY-NC-SA-3.0-IGO",
  4810. "seeAlso": [
  4811. "https://creativecommons.org/licenses/by-nc-sa/3.0/igo/legalcode"
  4812. ],
  4813. "isOsiApproved": false
  4814. },
  4815. {
  4816. "reference": "https://spdx.org/licenses/Imlib2.html",
  4817. "isDeprecatedLicenseId": false,
  4818. "detailsUrl": "https://spdx.org/licenses/Imlib2.json",
  4819. "referenceNumber": 384,
  4820. "name": "Imlib2 License",
  4821. "licenseId": "Imlib2",
  4822. "seeAlso": [
  4823. "http://trac.enlightenment.org/e/browser/trunk/imlib2/COPYING",
  4824. "https://git.enlightenment.org/legacy/imlib2.git/tree/COPYING"
  4825. ],
  4826. "isOsiApproved": false,
  4827. "isFsfLibre": true
  4828. },
  4829. {
  4830. "reference": "https://spdx.org/licenses/Info-ZIP.html",
  4831. "isDeprecatedLicenseId": false,
  4832. "detailsUrl": "https://spdx.org/licenses/Info-ZIP.json",
  4833. "referenceNumber": 385,
  4834. "name": "Info-ZIP License",
  4835. "licenseId": "Info-ZIP",
  4836. "seeAlso": [
  4837. "http://www.info-zip.org/license.html"
  4838. ],
  4839. "isOsiApproved": false
  4840. },
  4841. {
  4842. "reference": "https://spdx.org/licenses/LGPL-2.0-or-later.html",
  4843. "isDeprecatedLicenseId": false,
  4844. "detailsUrl": "https://spdx.org/licenses/LGPL-2.0-or-later.json",
  4845. "referenceNumber": 386,
  4846. "name": "GNU Library General Public License v2 or later",
  4847. "licenseId": "LGPL-2.0-or-later",
  4848. "seeAlso": [
  4849. "https://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html"
  4850. ],
  4851. "isOsiApproved": true
  4852. },
  4853. {
  4854. "reference": "https://spdx.org/licenses/OSL-1.0.html",
  4855. "isDeprecatedLicenseId": false,
  4856. "detailsUrl": "https://spdx.org/licenses/OSL-1.0.json",
  4857. "referenceNumber": 387,
  4858. "name": "Open Software License 1.0",
  4859. "licenseId": "OSL-1.0",
  4860. "seeAlso": [
  4861. "https://opensource.org/licenses/OSL-1.0"
  4862. ],
  4863. "isOsiApproved": true,
  4864. "isFsfLibre": true
  4865. },
  4866. {
  4867. "reference": "https://spdx.org/licenses/GPL-2.0-with-bison-exception.html",
  4868. "isDeprecatedLicenseId": true,
  4869. "detailsUrl": "https://spdx.org/licenses/GPL-2.0-with-bison-exception.json",
  4870. "referenceNumber": 388,
  4871. "name": "GNU General Public License v2.0 w/Bison exception",
  4872. "licenseId": "GPL-2.0-with-bison-exception",
  4873. "seeAlso": [
  4874. "http://git.savannah.gnu.org/cgit/bison.git/tree/data/yacc.c?id\u003d193d7c7054ba7197b0789e14965b739162319b5e#n141"
  4875. ],
  4876. "isOsiApproved": false
  4877. },
  4878. {
  4879. "reference": "https://spdx.org/licenses/Zlib.html",
  4880. "isDeprecatedLicenseId": false,
  4881. "detailsUrl": "https://spdx.org/licenses/Zlib.json",
  4882. "referenceNumber": 389,
  4883. "name": "zlib License",
  4884. "licenseId": "Zlib",
  4885. "seeAlso": [
  4886. "http://www.zlib.net/zlib_license.html",
  4887. "https://opensource.org/licenses/Zlib"
  4888. ],
  4889. "isOsiApproved": true,
  4890. "isFsfLibre": true
  4891. },
  4892. {
  4893. "reference": "https://spdx.org/licenses/APAFML.html",
  4894. "isDeprecatedLicenseId": false,
  4895. "detailsUrl": "https://spdx.org/licenses/APAFML.json",
  4896. "referenceNumber": 390,
  4897. "name": "Adobe Postscript AFM License",
  4898. "licenseId": "APAFML",
  4899. "seeAlso": [
  4900. "https://fedoraproject.org/wiki/Licensing/AdobePostscriptAFM"
  4901. ],
  4902. "isOsiApproved": false
  4903. },
  4904. {
  4905. "reference": "https://spdx.org/licenses/AML.html",
  4906. "isDeprecatedLicenseId": false,
  4907. "detailsUrl": "https://spdx.org/licenses/AML.json",
  4908. "referenceNumber": 391,
  4909. "name": "Apple MIT License",
  4910. "licenseId": "AML",
  4911. "seeAlso": [
  4912. "https://fedoraproject.org/wiki/Licensing/Apple_MIT_License"
  4913. ],
  4914. "isOsiApproved": false
  4915. },
  4916. {
  4917. "reference": "https://spdx.org/licenses/CC-BY-SA-2.5.html",
  4918. "isDeprecatedLicenseId": false,
  4919. "detailsUrl": "https://spdx.org/licenses/CC-BY-SA-2.5.json",
  4920. "referenceNumber": 392,
  4921. "name": "Creative Commons Attribution Share Alike 2.5 Generic",
  4922. "licenseId": "CC-BY-SA-2.5",
  4923. "seeAlso": [
  4924. "https://creativecommons.org/licenses/by-sa/2.5/legalcode"
  4925. ],
  4926. "isOsiApproved": false
  4927. },
  4928. {
  4929. "reference": "https://spdx.org/licenses/Entessa.html",
  4930. "isDeprecatedLicenseId": false,
  4931. "detailsUrl": "https://spdx.org/licenses/Entessa.json",
  4932. "referenceNumber": 393,
  4933. "name": "Entessa Public License v1.0",
  4934. "licenseId": "Entessa",
  4935. "seeAlso": [
  4936. "https://opensource.org/licenses/Entessa"
  4937. ],
  4938. "isOsiApproved": true
  4939. },
  4940. {
  4941. "reference": "https://spdx.org/licenses/AFL-1.1.html",
  4942. "isDeprecatedLicenseId": false,
  4943. "detailsUrl": "https://spdx.org/licenses/AFL-1.1.json",
  4944. "referenceNumber": 394,
  4945. "name": "Academic Free License v1.1",
  4946. "licenseId": "AFL-1.1",
  4947. "seeAlso": [
  4948. "http://opensource.linux-mirror.org/licenses/afl-1.1.txt",
  4949. "http://wayback.archive.org/web/20021004124254/http://www.opensource.org/licenses/academic.php"
  4950. ],
  4951. "isOsiApproved": true,
  4952. "isFsfLibre": true
  4953. },
  4954. {
  4955. "reference": "https://spdx.org/licenses/OLDAP-2.8.html",
  4956. "isDeprecatedLicenseId": false,
  4957. "detailsUrl": "https://spdx.org/licenses/OLDAP-2.8.json",
  4958. "referenceNumber": 395,
  4959. "name": "Open LDAP Public License v2.8",
  4960. "licenseId": "OLDAP-2.8",
  4961. "seeAlso": [
  4962. "http://www.openldap.org/software/release/license.html"
  4963. ],
  4964. "isOsiApproved": true
  4965. },
  4966. {
  4967. "reference": "https://spdx.org/licenses/X11.html",
  4968. "isDeprecatedLicenseId": false,
  4969. "detailsUrl": "https://spdx.org/licenses/X11.json",
  4970. "referenceNumber": 396,
  4971. "name": "X11 License",
  4972. "licenseId": "X11",
  4973. "seeAlso": [
  4974. "http://www.xfree86.org/3.3.6/COPYRIGHT2.html#3"
  4975. ],
  4976. "isOsiApproved": false,
  4977. "isFsfLibre": true
  4978. },
  4979. {
  4980. "reference": "https://spdx.org/licenses/Glide.html",
  4981. "isDeprecatedLicenseId": false,
  4982. "detailsUrl": "https://spdx.org/licenses/Glide.json",
  4983. "referenceNumber": 397,
  4984. "name": "3dfx Glide License",
  4985. "licenseId": "Glide",
  4986. "seeAlso": [
  4987. "http://www.users.on.net/~triforce/glidexp/COPYING.txt"
  4988. ],
  4989. "isOsiApproved": false
  4990. },
  4991. {
  4992. "reference": "https://spdx.org/licenses/LGPL-2.1+.html",
  4993. "isDeprecatedLicenseId": true,
  4994. "detailsUrl": "https://spdx.org/licenses/LGPL-2.1+.json",
  4995. "referenceNumber": 398,
  4996. "name": "GNU Library General Public License v2.1 or later",
  4997. "licenseId": "LGPL-2.1+",
  4998. "seeAlso": [
  4999. "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html",
  5000. "https://opensource.org/licenses/LGPL-2.1"
  5001. ],
  5002. "isOsiApproved": true
  5003. },
  5004. {
  5005. "reference": "https://spdx.org/licenses/SCEA.html",
  5006. "isDeprecatedLicenseId": false,
  5007. "detailsUrl": "https://spdx.org/licenses/SCEA.json",
  5008. "referenceNumber": 399,
  5009. "name": "SCEA Shared Source License",
  5010. "licenseId": "SCEA",
  5011. "seeAlso": [
  5012. "http://research.scea.com/scea_shared_source_license.html"
  5013. ],
  5014. "isOsiApproved": false
  5015. },
  5016. {
  5017. "reference": "https://spdx.org/licenses/TMate.html",
  5018. "isDeprecatedLicenseId": false,
  5019. "detailsUrl": "https://spdx.org/licenses/TMate.json",
  5020. "referenceNumber": 400,
  5021. "name": "TMate Open Source License",
  5022. "licenseId": "TMate",
  5023. "seeAlso": [
  5024. "http://svnkit.com/license.html"
  5025. ],
  5026. "isOsiApproved": false
  5027. },
  5028. {
  5029. "reference": "https://spdx.org/licenses/copyleft-next-0.3.1.html",
  5030. "isDeprecatedLicenseId": false,
  5031. "detailsUrl": "https://spdx.org/licenses/copyleft-next-0.3.1.json",
  5032. "referenceNumber": 401,
  5033. "name": "copyleft-next 0.3.1",
  5034. "licenseId": "copyleft-next-0.3.1",
  5035. "seeAlso": [
  5036. "https://github.com/copyleft-next/copyleft-next/blob/master/Releases/copyleft-next-0.3.1"
  5037. ],
  5038. "isOsiApproved": false
  5039. },
  5040. {
  5041. "reference": "https://spdx.org/licenses/MPL-1.0.html",
  5042. "isDeprecatedLicenseId": false,
  5043. "detailsUrl": "https://spdx.org/licenses/MPL-1.0.json",
  5044. "referenceNumber": 402,
  5045. "name": "Mozilla Public License 1.0",
  5046. "licenseId": "MPL-1.0",
  5047. "seeAlso": [
  5048. "http://www.mozilla.org/MPL/MPL-1.0.html",
  5049. "https://opensource.org/licenses/MPL-1.0"
  5050. ],
  5051. "isOsiApproved": true
  5052. },
  5053. {
  5054. "reference": "https://spdx.org/licenses/W3C-19980720.html",
  5055. "isDeprecatedLicenseId": false,
  5056. "detailsUrl": "https://spdx.org/licenses/W3C-19980720.json",
  5057. "referenceNumber": 403,
  5058. "name": "W3C Software Notice and License (1998-07-20)",
  5059. "licenseId": "W3C-19980720",
  5060. "seeAlso": [
  5061. "http://www.w3.org/Consortium/Legal/copyright-software-19980720.html"
  5062. ],
  5063. "isOsiApproved": false
  5064. },
  5065. {
  5066. "reference": "https://spdx.org/licenses/Net-SNMP.html",
  5067. "isDeprecatedLicenseId": false,
  5068. "detailsUrl": "https://spdx.org/licenses/Net-SNMP.json",
  5069. "referenceNumber": 404,
  5070. "name": "Net-SNMP License",
  5071. "licenseId": "Net-SNMP",
  5072. "seeAlso": [
  5073. "http://net-snmp.sourceforge.net/about/license.html"
  5074. ],
  5075. "isOsiApproved": false
  5076. },
  5077. {
  5078. "reference": "https://spdx.org/licenses/AAL.html",
  5079. "isDeprecatedLicenseId": false,
  5080. "detailsUrl": "https://spdx.org/licenses/AAL.json",
  5081. "referenceNumber": 405,
  5082. "name": "Attribution Assurance License",
  5083. "licenseId": "AAL",
  5084. "seeAlso": [
  5085. "https://opensource.org/licenses/attribution"
  5086. ],
  5087. "isOsiApproved": true
  5088. },
  5089. {
  5090. "reference": "https://spdx.org/licenses/GPL-3.0.html",
  5091. "isDeprecatedLicenseId": true,
  5092. "detailsUrl": "https://spdx.org/licenses/GPL-3.0.json",
  5093. "referenceNumber": 406,
  5094. "name": "GNU General Public License v3.0 only",
  5095. "licenseId": "GPL-3.0",
  5096. "seeAlso": [
  5097. "https://www.gnu.org/licenses/gpl-3.0-standalone.html",
  5098. "https://opensource.org/licenses/GPL-3.0"
  5099. ],
  5100. "isOsiApproved": true,
  5101. "isFsfLibre": true
  5102. },
  5103. {
  5104. "reference": "https://spdx.org/licenses/SMPPL.html",
  5105. "isDeprecatedLicenseId": false,
  5106. "detailsUrl": "https://spdx.org/licenses/SMPPL.json",
  5107. "referenceNumber": 407,
  5108. "name": "Secure Messaging Protocol Public License",
  5109. "licenseId": "SMPPL",
  5110. "seeAlso": [
  5111. "https://github.com/dcblake/SMP/blob/master/Documentation/License.txt"
  5112. ],
  5113. "isOsiApproved": false
  5114. },
  5115. {
  5116. "reference": "https://spdx.org/licenses/LGPL-2.0+.html",
  5117. "isDeprecatedLicenseId": true,
  5118. "detailsUrl": "https://spdx.org/licenses/LGPL-2.0+.json",
  5119. "referenceNumber": 408,
  5120. "name": "GNU Library General Public License v2 or later",
  5121. "licenseId": "LGPL-2.0+",
  5122. "seeAlso": [
  5123. "https://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html"
  5124. ],
  5125. "isOsiApproved": true
  5126. },
  5127. {
  5128. "reference": "https://spdx.org/licenses/IPL-1.0.html",
  5129. "isDeprecatedLicenseId": false,
  5130. "detailsUrl": "https://spdx.org/licenses/IPL-1.0.json",
  5131. "referenceNumber": 409,
  5132. "name": "IBM Public License v1.0",
  5133. "licenseId": "IPL-1.0",
  5134. "seeAlso": [
  5135. "https://opensource.org/licenses/IPL-1.0"
  5136. ],
  5137. "isOsiApproved": true,
  5138. "isFsfLibre": true
  5139. },
  5140. {
  5141. "reference": "https://spdx.org/licenses/Xnet.html",
  5142. "isDeprecatedLicenseId": false,
  5143. "detailsUrl": "https://spdx.org/licenses/Xnet.json",
  5144. "referenceNumber": 410,
  5145. "name": "X.Net License",
  5146. "licenseId": "Xnet",
  5147. "seeAlso": [
  5148. "https://opensource.org/licenses/Xnet"
  5149. ],
  5150. "isOsiApproved": true
  5151. },
  5152. {
  5153. "reference": "https://spdx.org/licenses/CC-BY-4.0.html",
  5154. "isDeprecatedLicenseId": false,
  5155. "detailsUrl": "https://spdx.org/licenses/CC-BY-4.0.json",
  5156. "referenceNumber": 411,
  5157. "name": "Creative Commons Attribution 4.0 International",
  5158. "licenseId": "CC-BY-4.0",
  5159. "seeAlso": [
  5160. "https://creativecommons.org/licenses/by/4.0/legalcode"
  5161. ],
  5162. "isOsiApproved": false,
  5163. "isFsfLibre": true
  5164. },
  5165. {
  5166. "reference": "https://spdx.org/licenses/W3C-20150513.html",
  5167. "isDeprecatedLicenseId": false,
  5168. "detailsUrl": "https://spdx.org/licenses/W3C-20150513.json",
  5169. "referenceNumber": 412,
  5170. "name": "W3C Software Notice and Document License (2015-05-13)",
  5171. "licenseId": "W3C-20150513",
  5172. "seeAlso": [
  5173. "https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document"
  5174. ],
  5175. "isOsiApproved": false
  5176. },
  5177. {
  5178. "reference": "https://spdx.org/licenses/libtiff.html",
  5179. "isDeprecatedLicenseId": false,
  5180. "detailsUrl": "https://spdx.org/licenses/libtiff.json",
  5181. "referenceNumber": 413,
  5182. "name": "libtiff License",
  5183. "licenseId": "libtiff",
  5184. "seeAlso": [
  5185. "https://fedoraproject.org/wiki/Licensing/libtiff"
  5186. ],
  5187. "isOsiApproved": false
  5188. },
  5189. {
  5190. "reference": "https://spdx.org/licenses/NGPL.html",
  5191. "isDeprecatedLicenseId": false,
  5192. "detailsUrl": "https://spdx.org/licenses/NGPL.json",
  5193. "referenceNumber": 414,
  5194. "name": "Nethack General Public License",
  5195. "licenseId": "NGPL",
  5196. "seeAlso": [
  5197. "https://opensource.org/licenses/NGPL"
  5198. ],
  5199. "isOsiApproved": true
  5200. },
  5201. {
  5202. "reference": "https://spdx.org/licenses/GFDL-1.2-no-invariants-or-later.html",
  5203. "isDeprecatedLicenseId": false,
  5204. "detailsUrl": "https://spdx.org/licenses/GFDL-1.2-no-invariants-or-later.json",
  5205. "referenceNumber": 415,
  5206. "name": "GNU Free Documentation License v1.2 or later - no invariants",
  5207. "licenseId": "GFDL-1.2-no-invariants-or-later",
  5208. "seeAlso": [
  5209. "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt"
  5210. ],
  5211. "isOsiApproved": false
  5212. },
  5213. {
  5214. "reference": "https://spdx.org/licenses/NIST-PD-fallback.html",
  5215. "isDeprecatedLicenseId": false,
  5216. "detailsUrl": "https://spdx.org/licenses/NIST-PD-fallback.json",
  5217. "referenceNumber": 416,
  5218. "name": "NIST Public Domain Notice with license fallback",
  5219. "licenseId": "NIST-PD-fallback",
  5220. "seeAlso": [
  5221. "https://github.com/usnistgov/jsip/blob/59700e6926cbe96c5cdae897d9a7d2656b42abe3/LICENSE",
  5222. "https://github.com/usnistgov/fipy/blob/86aaa5c2ba2c6f1be19593c5986071cf6568cc34/LICENSE.rst"
  5223. ],
  5224. "isOsiApproved": false
  5225. },
  5226. {
  5227. "reference": "https://spdx.org/licenses/CC-BY-NC-SA-2.5.html",
  5228. "isDeprecatedLicenseId": false,
  5229. "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-SA-2.5.json",
  5230. "referenceNumber": 417,
  5231. "name": "Creative Commons Attribution Non Commercial Share Alike 2.5 Generic",
  5232. "licenseId": "CC-BY-NC-SA-2.5",
  5233. "seeAlso": [
  5234. "https://creativecommons.org/licenses/by-nc-sa/2.5/legalcode"
  5235. ],
  5236. "isOsiApproved": false
  5237. },
  5238. {
  5239. "reference": "https://spdx.org/licenses/BSD-Source-Code.html",
  5240. "isDeprecatedLicenseId": false,
  5241. "detailsUrl": "https://spdx.org/licenses/BSD-Source-Code.json",
  5242. "referenceNumber": 418,
  5243. "name": "BSD Source Code Attribution",
  5244. "licenseId": "BSD-Source-Code",
  5245. "seeAlso": [
  5246. "https://github.com/robbiehanson/CocoaHTTPServer/blob/master/LICENSE.txt"
  5247. ],
  5248. "isOsiApproved": false
  5249. },
  5250. {
  5251. "reference": "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-Warranty.html",
  5252. "isDeprecatedLicenseId": false,
  5253. "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-Warranty.json",
  5254. "referenceNumber": 419,
  5255. "name": "BSD 3-Clause No Nuclear Warranty",
  5256. "licenseId": "BSD-3-Clause-No-Nuclear-Warranty",
  5257. "seeAlso": [
  5258. "https://jogamp.org/git/?p\u003dgluegen.git;a\u003dblob_plain;f\u003dLICENSE.txt"
  5259. ],
  5260. "isOsiApproved": false
  5261. },
  5262. {
  5263. "reference": "https://spdx.org/licenses/OSET-PL-2.1.html",
  5264. "isDeprecatedLicenseId": false,
  5265. "detailsUrl": "https://spdx.org/licenses/OSET-PL-2.1.json",
  5266. "referenceNumber": 420,
  5267. "name": "OSET Public License version 2.1",
  5268. "licenseId": "OSET-PL-2.1",
  5269. "seeAlso": [
  5270. "http://www.osetfoundation.org/public-license",
  5271. "https://opensource.org/licenses/OPL-2.1"
  5272. ],
  5273. "isOsiApproved": true
  5274. },
  5275. {
  5276. "reference": "https://spdx.org/licenses/SGI-B-1.0.html",
  5277. "isDeprecatedLicenseId": false,
  5278. "detailsUrl": "https://spdx.org/licenses/SGI-B-1.0.json",
  5279. "referenceNumber": 421,
  5280. "name": "SGI Free Software License B v1.0",
  5281. "licenseId": "SGI-B-1.0",
  5282. "seeAlso": [
  5283. "http://oss.sgi.com/projects/FreeB/SGIFreeSWLicB.1.0.html"
  5284. ],
  5285. "isOsiApproved": false
  5286. },
  5287. {
  5288. "reference": "https://spdx.org/licenses/FSFULLR.html",
  5289. "isDeprecatedLicenseId": false,
  5290. "detailsUrl": "https://spdx.org/licenses/FSFULLR.json",
  5291. "referenceNumber": 422,
  5292. "name": "FSF Unlimited License (with License Retention)",
  5293. "licenseId": "FSFULLR",
  5294. "seeAlso": [
  5295. "https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention_Variant"
  5296. ],
  5297. "isOsiApproved": false
  5298. },
  5299. {
  5300. "reference": "https://spdx.org/licenses/CPOL-1.02.html",
  5301. "isDeprecatedLicenseId": false,
  5302. "detailsUrl": "https://spdx.org/licenses/CPOL-1.02.json",
  5303. "referenceNumber": 423,
  5304. "name": "Code Project Open License 1.02",
  5305. "licenseId": "CPOL-1.02",
  5306. "seeAlso": [
  5307. "http://www.codeproject.com/info/cpol10.aspx"
  5308. ],
  5309. "isOsiApproved": false
  5310. },
  5311. {
  5312. "reference": "https://spdx.org/licenses/NBPL-1.0.html",
  5313. "isDeprecatedLicenseId": false,
  5314. "detailsUrl": "https://spdx.org/licenses/NBPL-1.0.json",
  5315. "referenceNumber": 424,
  5316. "name": "Net Boolean Public License v1",
  5317. "licenseId": "NBPL-1.0",
  5318. "seeAlso": [
  5319. "http://www.openldap.org/devel/gitweb.cgi?p\u003dopenldap.git;a\u003dblob;f\u003dLICENSE;hb\u003d37b4b3f6cc4bf34e1d3dec61e69914b9819d8894"
  5320. ],
  5321. "isOsiApproved": false
  5322. },
  5323. {
  5324. "reference": "https://spdx.org/licenses/BSD-3-Clause-Attribution.html",
  5325. "isDeprecatedLicenseId": false,
  5326. "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-Attribution.json",
  5327. "referenceNumber": 425,
  5328. "name": "BSD with attribution",
  5329. "licenseId": "BSD-3-Clause-Attribution",
  5330. "seeAlso": [
  5331. "https://fedoraproject.org/wiki/Licensing/BSD_with_Attribution"
  5332. ],
  5333. "isOsiApproved": false
  5334. },
  5335. {
  5336. "reference": "https://spdx.org/licenses/BSD-2-Clause-FreeBSD.html",
  5337. "isDeprecatedLicenseId": true,
  5338. "detailsUrl": "https://spdx.org/licenses/BSD-2-Clause-FreeBSD.json",
  5339. "referenceNumber": 426,
  5340. "name": "BSD 2-Clause FreeBSD License",
  5341. "licenseId": "BSD-2-Clause-FreeBSD",
  5342. "seeAlso": [
  5343. "http://www.freebsd.org/copyright/freebsd-license.html"
  5344. ],
  5345. "isOsiApproved": false,
  5346. "isFsfLibre": true
  5347. },
  5348. {
  5349. "reference": "https://spdx.org/licenses/ODbL-1.0.html",
  5350. "isDeprecatedLicenseId": false,
  5351. "detailsUrl": "https://spdx.org/licenses/ODbL-1.0.json",
  5352. "referenceNumber": 427,
  5353. "name": "Open Data Commons Open Database License v1.0",
  5354. "licenseId": "ODbL-1.0",
  5355. "seeAlso": [
  5356. "http://www.opendatacommons.org/licenses/odbl/1.0/",
  5357. "https://opendatacommons.org/licenses/odbl/1-0/"
  5358. ],
  5359. "isOsiApproved": false,
  5360. "isFsfLibre": true
  5361. },
  5362. {
  5363. "reference": "https://spdx.org/licenses/CC-BY-3.0-AT.html",
  5364. "isDeprecatedLicenseId": false,
  5365. "detailsUrl": "https://spdx.org/licenses/CC-BY-3.0-AT.json",
  5366. "referenceNumber": 428,
  5367. "name": "Creative Commons Attribution 3.0 Austria",
  5368. "licenseId": "CC-BY-3.0-AT",
  5369. "seeAlso": [
  5370. "https://creativecommons.org/licenses/by/3.0/at/legalcode"
  5371. ],
  5372. "isOsiApproved": false
  5373. },
  5374. {
  5375. "reference": "https://spdx.org/licenses/CC-BY-SA-3.0-DE.html",
  5376. "isDeprecatedLicenseId": false,
  5377. "detailsUrl": "https://spdx.org/licenses/CC-BY-SA-3.0-DE.json",
  5378. "referenceNumber": 429,
  5379. "name": "Creative Commons Attribution Share Alike 3.0 Germany",
  5380. "licenseId": "CC-BY-SA-3.0-DE",
  5381. "seeAlso": [
  5382. "https://creativecommons.org/licenses/by-sa/3.0/de/legalcode"
  5383. ],
  5384. "isOsiApproved": false
  5385. },
  5386. {
  5387. "reference": "https://spdx.org/licenses/MPL-2.0-no-copyleft-exception.html",
  5388. "isDeprecatedLicenseId": false,
  5389. "detailsUrl": "https://spdx.org/licenses/MPL-2.0-no-copyleft-exception.json",
  5390. "referenceNumber": 430,
  5391. "name": "Mozilla Public License 2.0 (no copyleft exception)",
  5392. "licenseId": "MPL-2.0-no-copyleft-exception",
  5393. "seeAlso": [
  5394. "http://www.mozilla.org/MPL/2.0/",
  5395. "https://opensource.org/licenses/MPL-2.0"
  5396. ],
  5397. "isOsiApproved": true
  5398. },
  5399. {
  5400. "reference": "https://spdx.org/licenses/ECL-2.0.html",
  5401. "isDeprecatedLicenseId": false,
  5402. "detailsUrl": "https://spdx.org/licenses/ECL-2.0.json",
  5403. "referenceNumber": 431,
  5404. "name": "Educational Community License v2.0",
  5405. "licenseId": "ECL-2.0",
  5406. "seeAlso": [
  5407. "https://opensource.org/licenses/ECL-2.0"
  5408. ],
  5409. "isOsiApproved": true,
  5410. "isFsfLibre": true
  5411. },
  5412. {
  5413. "reference": "https://spdx.org/licenses/OFL-1.1-no-RFN.html",
  5414. "isDeprecatedLicenseId": false,
  5415. "detailsUrl": "https://spdx.org/licenses/OFL-1.1-no-RFN.json",
  5416. "referenceNumber": 432,
  5417. "name": "SIL Open Font License 1.1 with no Reserved Font Name",
  5418. "licenseId": "OFL-1.1-no-RFN",
  5419. "seeAlso": [
  5420. "http://scripts.sil.org/cms/scripts/page.php?item_id\u003dOFL_web",
  5421. "https://opensource.org/licenses/OFL-1.1"
  5422. ],
  5423. "isOsiApproved": true
  5424. },
  5425. {
  5426. "reference": "https://spdx.org/licenses/OLDAP-2.2.2.html",
  5427. "isDeprecatedLicenseId": false,
  5428. "detailsUrl": "https://spdx.org/licenses/OLDAP-2.2.2.json",
  5429. "referenceNumber": 433,
  5430. "name": "Open LDAP Public License 2.2.2",
  5431. "licenseId": "OLDAP-2.2.2",
  5432. "seeAlso": [
  5433. "http://www.openldap.org/devel/gitweb.cgi?p\u003dopenldap.git;a\u003dblob;f\u003dLICENSE;hb\u003ddf2cc1e21eb7c160695f5b7cffd6296c151ba188"
  5434. ],
  5435. "isOsiApproved": false
  5436. },
  5437. {
  5438. "reference": "https://spdx.org/licenses/Ruby.html",
  5439. "isDeprecatedLicenseId": false,
  5440. "detailsUrl": "https://spdx.org/licenses/Ruby.json",
  5441. "referenceNumber": 434,
  5442. "name": "Ruby License",
  5443. "licenseId": "Ruby",
  5444. "seeAlso": [
  5445. "http://www.ruby-lang.org/en/LICENSE.txt"
  5446. ],
  5447. "isOsiApproved": false,
  5448. "isFsfLibre": true
  5449. },
  5450. {
  5451. "reference": "https://spdx.org/licenses/LPPL-1.2.html",
  5452. "isDeprecatedLicenseId": false,
  5453. "detailsUrl": "https://spdx.org/licenses/LPPL-1.2.json",
  5454. "referenceNumber": 435,
  5455. "name": "LaTeX Project Public License v1.2",
  5456. "licenseId": "LPPL-1.2",
  5457. "seeAlso": [
  5458. "http://www.latex-project.org/lppl/lppl-1-2.txt"
  5459. ],
  5460. "isOsiApproved": false,
  5461. "isFsfLibre": true
  5462. },
  5463. {
  5464. "reference": "https://spdx.org/licenses/LAL-1.2.html",
  5465. "isDeprecatedLicenseId": false,
  5466. "detailsUrl": "https://spdx.org/licenses/LAL-1.2.json",
  5467. "referenceNumber": 436,
  5468. "name": "Licence Art Libre 1.2",
  5469. "licenseId": "LAL-1.2",
  5470. "seeAlso": [
  5471. "http://artlibre.org/licence/lal/licence-art-libre-12/"
  5472. ],
  5473. "isOsiApproved": false
  5474. },
  5475. {
  5476. "reference": "https://spdx.org/licenses/Intel.html",
  5477. "isDeprecatedLicenseId": false,
  5478. "detailsUrl": "https://spdx.org/licenses/Intel.json",
  5479. "referenceNumber": 437,
  5480. "name": "Intel Open Source License",
  5481. "licenseId": "Intel",
  5482. "seeAlso": [
  5483. "https://opensource.org/licenses/Intel"
  5484. ],
  5485. "isOsiApproved": true,
  5486. "isFsfLibre": true
  5487. },
  5488. {
  5489. "reference": "https://spdx.org/licenses/SPL-1.0.html",
  5490. "isDeprecatedLicenseId": false,
  5491. "detailsUrl": "https://spdx.org/licenses/SPL-1.0.json",
  5492. "referenceNumber": 438,
  5493. "name": "Sun Public License v1.0",
  5494. "licenseId": "SPL-1.0",
  5495. "seeAlso": [
  5496. "https://opensource.org/licenses/SPL-1.0"
  5497. ],
  5498. "isOsiApproved": true,
  5499. "isFsfLibre": true
  5500. },
  5501. {
  5502. "reference": "https://spdx.org/licenses/OGL-UK-2.0.html",
  5503. "isDeprecatedLicenseId": false,
  5504. "detailsUrl": "https://spdx.org/licenses/OGL-UK-2.0.json",
  5505. "referenceNumber": 439,
  5506. "name": "Open Government Licence v2.0",
  5507. "licenseId": "OGL-UK-2.0",
  5508. "seeAlso": [
  5509. "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/"
  5510. ],
  5511. "isOsiApproved": false
  5512. },
  5513. {
  5514. "reference": "https://spdx.org/licenses/Noweb.html",
  5515. "isDeprecatedLicenseId": false,
  5516. "detailsUrl": "https://spdx.org/licenses/Noweb.json",
  5517. "referenceNumber": 440,
  5518. "name": "Noweb License",
  5519. "licenseId": "Noweb",
  5520. "seeAlso": [
  5521. "https://fedoraproject.org/wiki/Licensing/Noweb"
  5522. ],
  5523. "isOsiApproved": false
  5524. },
  5525. {
  5526. "reference": "https://spdx.org/licenses/CC-BY-NC-SA-4.0.html",
  5527. "isDeprecatedLicenseId": false,
  5528. "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-SA-4.0.json",
  5529. "referenceNumber": 441,
  5530. "name": "Creative Commons Attribution Non Commercial Share Alike 4.0 International",
  5531. "licenseId": "CC-BY-NC-SA-4.0",
  5532. "seeAlso": [
  5533. "https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode"
  5534. ],
  5535. "isOsiApproved": false
  5536. },
  5537. {
  5538. "reference": "https://spdx.org/licenses/AFL-2.0.html",
  5539. "isDeprecatedLicenseId": false,
  5540. "detailsUrl": "https://spdx.org/licenses/AFL-2.0.json",
  5541. "referenceNumber": 442,
  5542. "name": "Academic Free License v2.0",
  5543. "licenseId": "AFL-2.0",
  5544. "seeAlso": [
  5545. "http://wayback.archive.org/web/20060924134533/http://www.opensource.org/licenses/afl-2.0.txt"
  5546. ],
  5547. "isOsiApproved": true,
  5548. "isFsfLibre": true
  5549. },
  5550. {
  5551. "reference": "https://spdx.org/licenses/Dotseqn.html",
  5552. "isDeprecatedLicenseId": false,
  5553. "detailsUrl": "https://spdx.org/licenses/Dotseqn.json",
  5554. "referenceNumber": 443,
  5555. "name": "Dotseqn License",
  5556. "licenseId": "Dotseqn",
  5557. "seeAlso": [
  5558. "https://fedoraproject.org/wiki/Licensing/Dotseqn"
  5559. ],
  5560. "isOsiApproved": false
  5561. },
  5562. {
  5563. "reference": "https://spdx.org/licenses/GFDL-1.1-no-invariants-or-later.html",
  5564. "isDeprecatedLicenseId": false,
  5565. "detailsUrl": "https://spdx.org/licenses/GFDL-1.1-no-invariants-or-later.json",
  5566. "referenceNumber": 444,
  5567. "name": "GNU Free Documentation License v1.1 or later - no invariants",
  5568. "licenseId": "GFDL-1.1-no-invariants-or-later",
  5569. "seeAlso": [
  5570. "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt"
  5571. ],
  5572. "isOsiApproved": false
  5573. },
  5574. {
  5575. "reference": "https://spdx.org/licenses/Hippocratic-2.1.html",
  5576. "isDeprecatedLicenseId": false,
  5577. "detailsUrl": "https://spdx.org/licenses/Hippocratic-2.1.json",
  5578. "referenceNumber": 445,
  5579. "name": "Hippocratic License 2.1",
  5580. "licenseId": "Hippocratic-2.1",
  5581. "seeAlso": [
  5582. "https://firstdonoharm.dev/version/2/1/license.html",
  5583. "https://github.com/EthicalSource/hippocratic-license/blob/58c0e646d64ff6fbee275bfe2b9492f914e3ab2a/LICENSE.txt"
  5584. ],
  5585. "isOsiApproved": false
  5586. },
  5587. {
  5588. "reference": "https://spdx.org/licenses/OLDAP-2.4.html",
  5589. "isDeprecatedLicenseId": false,
  5590. "detailsUrl": "https://spdx.org/licenses/OLDAP-2.4.json",
  5591. "referenceNumber": 446,
  5592. "name": "Open LDAP Public License v2.4",
  5593. "licenseId": "OLDAP-2.4",
  5594. "seeAlso": [
  5595. "http://www.openldap.org/devel/gitweb.cgi?p\u003dopenldap.git;a\u003dblob;f\u003dLICENSE;hb\u003dcd1284c4a91a8a380d904eee68d1583f989ed386"
  5596. ],
  5597. "isOsiApproved": false
  5598. },
  5599. {
  5600. "reference": "https://spdx.org/licenses/BitTorrent-1.0.html",
  5601. "isDeprecatedLicenseId": false,
  5602. "detailsUrl": "https://spdx.org/licenses/BitTorrent-1.0.json",
  5603. "referenceNumber": 447,
  5604. "name": "BitTorrent Open Source License v1.0",
  5605. "licenseId": "BitTorrent-1.0",
  5606. "seeAlso": [
  5607. "http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/licenses/BitTorrent?r1\u003d1.1\u0026r2\u003d1.1.1.1\u0026diff_format\u003ds"
  5608. ],
  5609. "isOsiApproved": false
  5610. },
  5611. {
  5612. "reference": "https://spdx.org/licenses/SHL-0.51.html",
  5613. "isDeprecatedLicenseId": false,
  5614. "detailsUrl": "https://spdx.org/licenses/SHL-0.51.json",
  5615. "referenceNumber": 448,
  5616. "name": "Solderpad Hardware License, Version 0.51",
  5617. "licenseId": "SHL-0.51",
  5618. "seeAlso": [
  5619. "https://solderpad.org/licenses/SHL-0.51/"
  5620. ],
  5621. "isOsiApproved": false
  5622. },
  5623. {
  5624. "reference": "https://spdx.org/licenses/OLDAP-2.0.1.html",
  5625. "isDeprecatedLicenseId": false,
  5626. "detailsUrl": "https://spdx.org/licenses/OLDAP-2.0.1.json",
  5627. "referenceNumber": 449,
  5628. "name": "Open LDAP Public License v2.0.1",
  5629. "licenseId": "OLDAP-2.0.1",
  5630. "seeAlso": [
  5631. "http://www.openldap.org/devel/gitweb.cgi?p\u003dopenldap.git;a\u003dblob;f\u003dLICENSE;hb\u003db6d68acd14e51ca3aab4428bf26522aa74873f0e"
  5632. ],
  5633. "isOsiApproved": false
  5634. },
  5635. {
  5636. "reference": "https://spdx.org/licenses/Parity-7.0.0.html",
  5637. "isDeprecatedLicenseId": false,
  5638. "detailsUrl": "https://spdx.org/licenses/Parity-7.0.0.json",
  5639. "referenceNumber": 450,
  5640. "name": "The Parity Public License 7.0.0",
  5641. "licenseId": "Parity-7.0.0",
  5642. "seeAlso": [
  5643. "https://paritylicense.com/versions/7.0.0.html"
  5644. ],
  5645. "isOsiApproved": false
  5646. },
  5647. {
  5648. "reference": "https://spdx.org/licenses/CECILL-C.html",
  5649. "isDeprecatedLicenseId": false,
  5650. "detailsUrl": "https://spdx.org/licenses/CECILL-C.json",
  5651. "referenceNumber": 451,
  5652. "name": "CeCILL-C Free Software License Agreement",
  5653. "licenseId": "CECILL-C",
  5654. "seeAlso": [
  5655. "http://www.cecill.info/licences/Licence_CeCILL-C_V1-en.html"
  5656. ],
  5657. "isOsiApproved": false,
  5658. "isFsfLibre": true
  5659. },
  5660. {
  5661. "reference": "https://spdx.org/licenses/CDLA-Permissive-2.0.html",
  5662. "isDeprecatedLicenseId": false,
  5663. "detailsUrl": "https://spdx.org/licenses/CDLA-Permissive-2.0.json",
  5664. "referenceNumber": 452,
  5665. "name": "Community Data License Agreement Permissive 2.0",
  5666. "licenseId": "CDLA-Permissive-2.0",
  5667. "seeAlso": [
  5668. "https://cdla.dev/permissive-2-0"
  5669. ],
  5670. "isOsiApproved": false
  5671. },
  5672. {
  5673. "reference": "https://spdx.org/licenses/HPND.html",
  5674. "isDeprecatedLicenseId": false,
  5675. "detailsUrl": "https://spdx.org/licenses/HPND.json",
  5676. "referenceNumber": 453,
  5677. "name": "Historical Permission Notice and Disclaimer",
  5678. "licenseId": "HPND",
  5679. "seeAlso": [
  5680. "https://opensource.org/licenses/HPND"
  5681. ],
  5682. "isOsiApproved": true,
  5683. "isFsfLibre": true
  5684. },
  5685. {
  5686. "reference": "https://spdx.org/licenses/LPPL-1.1.html",
  5687. "isDeprecatedLicenseId": false,
  5688. "detailsUrl": "https://spdx.org/licenses/LPPL-1.1.json",
  5689. "referenceNumber": 454,
  5690. "name": "LaTeX Project Public License v1.1",
  5691. "licenseId": "LPPL-1.1",
  5692. "seeAlso": [
  5693. "http://www.latex-project.org/lppl/lppl-1-1.txt"
  5694. ],
  5695. "isOsiApproved": false
  5696. },
  5697. {
  5698. "reference": "https://spdx.org/licenses/UPL-1.0.html",
  5699. "isDeprecatedLicenseId": false,
  5700. "detailsUrl": "https://spdx.org/licenses/UPL-1.0.json",
  5701. "referenceNumber": 455,
  5702. "name": "Universal Permissive License v1.0",
  5703. "licenseId": "UPL-1.0",
  5704. "seeAlso": [
  5705. "https://opensource.org/licenses/UPL"
  5706. ],
  5707. "isOsiApproved": true,
  5708. "isFsfLibre": true
  5709. },
  5710. {
  5711. "reference": "https://spdx.org/licenses/BitTorrent-1.1.html",
  5712. "isDeprecatedLicenseId": false,
  5713. "detailsUrl": "https://spdx.org/licenses/BitTorrent-1.1.json",
  5714. "referenceNumber": 456,
  5715. "name": "BitTorrent Open Source License v1.1",
  5716. "licenseId": "BitTorrent-1.1",
  5717. "seeAlso": [
  5718. "http://directory.fsf.org/wiki/License:BitTorrentOSL1.1"
  5719. ],
  5720. "isOsiApproved": false,
  5721. "isFsfLibre": true
  5722. },
  5723. {
  5724. "reference": "https://spdx.org/licenses/AGPL-3.0.html",
  5725. "isDeprecatedLicenseId": true,
  5726. "detailsUrl": "https://spdx.org/licenses/AGPL-3.0.json",
  5727. "referenceNumber": 457,
  5728. "name": "GNU Affero General Public License v3.0",
  5729. "licenseId": "AGPL-3.0",
  5730. "seeAlso": [
  5731. "https://www.gnu.org/licenses/agpl.txt",
  5732. "https://opensource.org/licenses/AGPL-3.0"
  5733. ],
  5734. "isOsiApproved": true,
  5735. "isFsfLibre": true
  5736. },
  5737. {
  5738. "reference": "https://spdx.org/licenses/Abstyles.html",
  5739. "isDeprecatedLicenseId": false,
  5740. "detailsUrl": "https://spdx.org/licenses/Abstyles.json",
  5741. "referenceNumber": 458,
  5742. "name": "Abstyles License",
  5743. "licenseId": "Abstyles",
  5744. "seeAlso": [
  5745. "https://fedoraproject.org/wiki/Licensing/Abstyles"
  5746. ],
  5747. "isOsiApproved": false
  5748. },
  5749. {
  5750. "reference": "https://spdx.org/licenses/DOC.html",
  5751. "isDeprecatedLicenseId": false,
  5752. "detailsUrl": "https://spdx.org/licenses/DOC.json",
  5753. "referenceNumber": 459,
  5754. "name": "DOC License",
  5755. "licenseId": "DOC",
  5756. "seeAlso": [
  5757. "http://www.cs.wustl.edu/~schmidt/ACE-copying.html",
  5758. "https://www.dre.vanderbilt.edu/~schmidt/ACE-copying.html"
  5759. ],
  5760. "isOsiApproved": false
  5761. },
  5762. {
  5763. "reference": "https://spdx.org/licenses/DRL-1.0.html",
  5764. "isDeprecatedLicenseId": false,
  5765. "detailsUrl": "https://spdx.org/licenses/DRL-1.0.json",
  5766. "referenceNumber": 460,
  5767. "name": "Detection Rule License 1.0",
  5768. "licenseId": "DRL-1.0",
  5769. "seeAlso": [
  5770. "https://github.com/Neo23x0/sigma/blob/master/LICENSE.Detection.Rules.md"
  5771. ],
  5772. "isOsiApproved": false
  5773. },
  5774. {
  5775. "reference": "https://spdx.org/licenses/XSkat.html",
  5776. "isDeprecatedLicenseId": false,
  5777. "detailsUrl": "https://spdx.org/licenses/XSkat.json",
  5778. "referenceNumber": 461,
  5779. "name": "XSkat License",
  5780. "licenseId": "XSkat",
  5781. "seeAlso": [
  5782. "https://fedoraproject.org/wiki/Licensing/XSkat_License"
  5783. ],
  5784. "isOsiApproved": false
  5785. },
  5786. {
  5787. "reference": "https://spdx.org/licenses/EPICS.html",
  5788. "isDeprecatedLicenseId": false,
  5789. "detailsUrl": "https://spdx.org/licenses/EPICS.json",
  5790. "referenceNumber": 462,
  5791. "name": "EPICS Open License",
  5792. "licenseId": "EPICS",
  5793. "seeAlso": [
  5794. "https://epics.anl.gov/license/open.php"
  5795. ],
  5796. "isOsiApproved": false
  5797. },
  5798. {
  5799. "reference": "https://spdx.org/licenses/mpich2.html",
  5800. "isDeprecatedLicenseId": false,
  5801. "detailsUrl": "https://spdx.org/licenses/mpich2.json",
  5802. "referenceNumber": 463,
  5803. "name": "mpich2 License",
  5804. "licenseId": "mpich2",
  5805. "seeAlso": [
  5806. "https://fedoraproject.org/wiki/Licensing/MIT"
  5807. ],
  5808. "isOsiApproved": false
  5809. },
  5810. {
  5811. "reference": "https://spdx.org/licenses/Rdisc.html",
  5812. "isDeprecatedLicenseId": false,
  5813. "detailsUrl": "https://spdx.org/licenses/Rdisc.json",
  5814. "referenceNumber": 464,
  5815. "name": "Rdisc License",
  5816. "licenseId": "Rdisc",
  5817. "seeAlso": [
  5818. "https://fedoraproject.org/wiki/Licensing/Rdisc_License"
  5819. ],
  5820. "isOsiApproved": false
  5821. },
  5822. {
  5823. "reference": "https://spdx.org/licenses/Saxpath.html",
  5824. "isDeprecatedLicenseId": false,
  5825. "detailsUrl": "https://spdx.org/licenses/Saxpath.json",
  5826. "referenceNumber": 465,
  5827. "name": "Saxpath License",
  5828. "licenseId": "Saxpath",
  5829. "seeAlso": [
  5830. "https://fedoraproject.org/wiki/Licensing/Saxpath_License"
  5831. ],
  5832. "isOsiApproved": false
  5833. },
  5834. {
  5835. "reference": "https://spdx.org/licenses/0BSD.html",
  5836. "isDeprecatedLicenseId": false,
  5837. "detailsUrl": "https://spdx.org/licenses/0BSD.json",
  5838. "referenceNumber": 466,
  5839. "name": "BSD Zero Clause License",
  5840. "licenseId": "0BSD",
  5841. "seeAlso": [
  5842. "http://landley.net/toybox/license.html",
  5843. "https://opensource.org/licenses/0BSD"
  5844. ],
  5845. "isOsiApproved": true
  5846. },
  5847. {
  5848. "reference": "https://spdx.org/licenses/CC-BY-NC-2.5.html",
  5849. "isDeprecatedLicenseId": false,
  5850. "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-2.5.json",
  5851. "referenceNumber": 467,
  5852. "name": "Creative Commons Attribution Non Commercial 2.5 Generic",
  5853. "licenseId": "CC-BY-NC-2.5",
  5854. "seeAlso": [
  5855. "https://creativecommons.org/licenses/by-nc/2.5/legalcode"
  5856. ],
  5857. "isOsiApproved": false
  5858. },
  5859. {
  5860. "reference": "https://spdx.org/licenses/BSD-2-Clause-Views.html",
  5861. "isDeprecatedLicenseId": false,
  5862. "detailsUrl": "https://spdx.org/licenses/BSD-2-Clause-Views.json",
  5863. "referenceNumber": 468,
  5864. "name": "BSD 2-Clause with views sentence",
  5865. "licenseId": "BSD-2-Clause-Views",
  5866. "seeAlso": [
  5867. "http://www.freebsd.org/copyright/freebsd-license.html",
  5868. "https://people.freebsd.org/~ivoras/wine/patch-wine-nvidia.sh",
  5869. "https://github.com/protegeproject/protege/blob/master/license.txt"
  5870. ],
  5871. "isOsiApproved": false
  5872. },
  5873. {
  5874. "reference": "https://spdx.org/licenses/gSOAP-1.3b.html",
  5875. "isDeprecatedLicenseId": false,
  5876. "detailsUrl": "https://spdx.org/licenses/gSOAP-1.3b.json",
  5877. "referenceNumber": 469,
  5878. "name": "gSOAP Public License v1.3b",
  5879. "licenseId": "gSOAP-1.3b",
  5880. "seeAlso": [
  5881. "http://www.cs.fsu.edu/~engelen/license.html"
  5882. ],
  5883. "isOsiApproved": false
  5884. },
  5885. {
  5886. "reference": "https://spdx.org/licenses/OLDAP-2.5.html",
  5887. "isDeprecatedLicenseId": false,
  5888. "detailsUrl": "https://spdx.org/licenses/OLDAP-2.5.json",
  5889. "referenceNumber": 470,
  5890. "name": "Open LDAP Public License v2.5",
  5891. "licenseId": "OLDAP-2.5",
  5892. "seeAlso": [
  5893. "http://www.openldap.org/devel/gitweb.cgi?p\u003dopenldap.git;a\u003dblob;f\u003dLICENSE;hb\u003d6852b9d90022e8593c98205413380536b1b5a7cf"
  5894. ],
  5895. "isOsiApproved": false
  5896. },
  5897. {
  5898. "reference": "https://spdx.org/licenses/BSD-4-Clause.html",
  5899. "isDeprecatedLicenseId": false,
  5900. "detailsUrl": "https://spdx.org/licenses/BSD-4-Clause.json",
  5901. "referenceNumber": 471,
  5902. "name": "BSD 4-Clause \"Original\" or \"Old\" License",
  5903. "licenseId": "BSD-4-Clause",
  5904. "seeAlso": [
  5905. "http://directory.fsf.org/wiki/License:BSD_4Clause"
  5906. ],
  5907. "isOsiApproved": false,
  5908. "isFsfLibre": true
  5909. },
  5910. {
  5911. "reference": "https://spdx.org/licenses/CAL-1.0.html",
  5912. "isDeprecatedLicenseId": false,
  5913. "detailsUrl": "https://spdx.org/licenses/CAL-1.0.json",
  5914. "referenceNumber": 472,
  5915. "name": "Cryptographic Autonomy License 1.0",
  5916. "licenseId": "CAL-1.0",
  5917. "seeAlso": [
  5918. "http://cryptographicautonomylicense.com/license-text.html",
  5919. "https://opensource.org/licenses/CAL-1.0"
  5920. ],
  5921. "isOsiApproved": true
  5922. },
  5923. {
  5924. "reference": "https://spdx.org/licenses/LGPL-3.0.html",
  5925. "isDeprecatedLicenseId": true,
  5926. "detailsUrl": "https://spdx.org/licenses/LGPL-3.0.json",
  5927. "referenceNumber": 473,
  5928. "name": "GNU Lesser General Public License v3.0 only",
  5929. "licenseId": "LGPL-3.0",
  5930. "seeAlso": [
  5931. "https://www.gnu.org/licenses/lgpl-3.0-standalone.html",
  5932. "https://opensource.org/licenses/LGPL-3.0"
  5933. ],
  5934. "isOsiApproved": true,
  5935. "isFsfLibre": true
  5936. },
  5937. {
  5938. "reference": "https://spdx.org/licenses/Interbase-1.0.html",
  5939. "isDeprecatedLicenseId": false,
  5940. "detailsUrl": "https://spdx.org/licenses/Interbase-1.0.json",
  5941. "referenceNumber": 474,
  5942. "name": "Interbase Public License v1.0",
  5943. "licenseId": "Interbase-1.0",
  5944. "seeAlso": [
  5945. "https://web.archive.org/web/20060319014854/http://info.borland.com/devsupport/interbase/opensource/IPL.html"
  5946. ],
  5947. "isOsiApproved": false
  5948. }
  5949. ],
  5950. "releaseDate": "2021-09-16"
  5951. }