licenses.json 213 KB

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