licenses.json 213 KB

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