├── .ruby-version
├── CNAME
├── _data
├── fiscalhost-map.json
├── sponsorships
│ ├── spi.json
│ ├── archlinux.json
│ ├── adelielinux.json
│ ├── drupal.json
│ ├── sfc.json
│ ├── gnome.json
│ ├── postgresql.json
│ ├── plone.json
│ ├── kde.json
│ ├── freebsd.json
│ ├── rails.json
│ ├── osgeo.json
│ ├── osi.json
│ ├── graphql.json
│ ├── debian.json
│ ├── haskell.json
│ ├── gentoo.json
│ ├── raspberrypi.json
│ ├── cd.json
│ ├── fsfe.json
│ ├── numfocus.json
│ ├── jsfoundation.json
│ ├── openmainframe.json
│ ├── aswf.json
│ ├── llvm.json
│ ├── openstreetmap.json
│ ├── lfenergy.json
│ ├── asf.json
│ ├── python.json
│ └── owasp.json
├── kde_map.json
├── fsfe_map.json
├── sponsorship-levels.json
├── openstack_map.json
├── lf_map.json
├── commercial.csv
├── research
│ └── drupal-credits.csv
└── p990
│ ├── 854376974.json
│ ├── 200105056.json
│ ├── 300845638.json
│ └── 841786969.json
├── _includes
├── report-listitem.html
├── nav_footer_custom.html
├── subproject.html
├── subproject-single.html
├── commercial-single.html
├── foundation-preamble.html
├── foundation-single.html
├── csvtable.html
├── foundation-list-nav.html
└── foundation-postamble.html
├── _layouts
├── foundation.html
├── foundations.html
├── commercial.html
├── reports.html
├── sponsorships.html
├── report.html
└── research.html
├── _pages
├── categories.md
├── models.md
├── listing.md
├── projects-numfocus.md
├── 404.md
├── projects-spi.md
├── projects-sfc.md
├── reports.md
├── commercial.md
├── projects-asf.md
├── about.md
├── projects.md
├── openapi.md
└── projects-processingfoundation.md
├── assets
├── script
│ └── build_liquid
└── ruby
│ └── openapi_builder.rb
├── Gemfile
├── .gitignore
├── _sponsorships
├── debian.md
├── sfc.md
├── spi.md
├── archlinux.md
├── ardupilot.md
├── adelielinux.md
├── graphql.md
├── rails.md
├── haskell.md
├── fsfe.md
├── kde.md
├── aswf.md
├── hyperledger.md
├── gnome.md
├── owasp.md
├── lfai.md
├── openmainframe.md
├── plone.md
├── postgresql.md
├── gentoo.md
├── llvm.md
├── cd.md
├── lfenergy.md
├── finos.md
├── freebsd.md
├── openssf.md
├── osgeo.md
├── lf.md
├── raspberrypi.md
├── openstack.md
├── eclipse.md
├── openstreetmap.md
└── numfocus.md
├── .github
└── workflows
│ ├── jekyll-build-pages.yml
│ └── jekyll-gh-pages.yml
├── .all-contributorsrc
├── _foundations
├── kuali.md
├── olpc.md
├── isc.md
├── tug.md
├── pculture.md
├── xiph.md
├── openrobotics.md
├── fsfse.md
├── signal.md
├── haskell.md
├── idcommons.md
├── llvm.md
├── sflc.md
├── scale.md
├── haiku.md
├── biobricks.md
├── oisf.md
├── oeglobal.md
├── oset.md
├── openhomefoundation.md
├── rubycentral.md
├── omsf.md
├── rails.md
├── linuxkernel.md
├── xmpp.md
├── fsf.md
├── netbsd.md
├── postgresql.md
├── djangeventsna.md
├── erlef.md
├── oasis.md
├── raspberrypina.md
├── benetech.md
├── openjsf.md
├── openid.md
├── openconnectivity.md
├── dotnet.md
├── sahana.md
├── gentoo.md
├── lpi_org.md
├── kde.md
├── opentransit.md
├── wikimedia.md
├── fsharp.md
├── mozilla.md
├── creativecommons.md
├── ocf.md
├── plone.md
├── django.md
├── processingfoundation.md
├── rust.md
├── clojuriststogether.md
├── lfcharities.md
├── opentechfund.md
├── matrix.md
├── eff.md
├── blender.md
├── osi.md
├── joomla.md
├── openstreetmap.md
├── wordpress.md
├── commonhaus.md
├── perl.md
├── tdf.md
├── opencompute.md
├── bytecode.md
├── gnome.md
└── ffpc.md
├── CODE_OF_CONDUCT.md
└── README.md
/.ruby-version:
--------------------------------------------------------------------------------
1 | 3.3.0
--------------------------------------------------------------------------------
/CNAME:
--------------------------------------------------------------------------------
1 | fossfoundation.info
--------------------------------------------------------------------------------
/_data/fiscalhost-map.json:
--------------------------------------------------------------------------------
1 | {
2 | "lf": "Linux Foundation",
3 | "spi": "Software In The Public Interest"
4 | }
--------------------------------------------------------------------------------
/_includes/report-listitem.html:
--------------------------------------------------------------------------------
1 |
4 | {{ rpt.description }}
--------------------------------------------------------------------------------
/_data/sponsorships/spi.json:
--------------------------------------------------------------------------------
1 | {
2 | "first": [
3 | "craigslist.org",
4 | "google.com",
5 | "gandi.net"
6 | ],
7 | "parseDate": "20240212"
8 | }
--------------------------------------------------------------------------------
/_includes/nav_footer_custom.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/_layouts/foundation.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | ---
4 |
5 | {% include foundation-preamble.html %}
6 | {% include foundation-fields.html %}
7 | {% include foundation-postamble.html %}
8 |
--------------------------------------------------------------------------------
/_includes/subproject.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | {% assign projlist = include.subproject %}
4 | {% for item in projlist %}
5 | {% include subproject-single.html %}
6 | {% endfor %}
7 |
8 |
--------------------------------------------------------------------------------
/_includes/subproject-single.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | {{ item.commonName }}
4 |
5 | {{ item.website }}
6 | {{ item.description }}
7 |
--------------------------------------------------------------------------------
/_data/sponsorships/archlinux.json:
--------------------------------------------------------------------------------
1 | {
2 | "first": [
3 | "icons8.com",
4 | "nitrokey.com",
5 | "privateinternetaccess.com",
6 | "shells.com",
7 | "uptimerobot.com"
8 | ],
9 | "parseDate": "20240112"
10 | }
--------------------------------------------------------------------------------
/_pages/categories.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: Foundations By Category
3 | excerpt: Listing foundations by major aspects or categories.
4 | layout: categories
5 | permalink: /categories
6 | nav_order: 3
7 | parent: Foundations Directory
8 | ---
9 |
--------------------------------------------------------------------------------
/_data/sponsorships/adelielinux.json:
--------------------------------------------------------------------------------
1 | {
2 | "first": [
3 | "docker.com",
4 | "solid-run.com",
5 | "gw4.ac.uk",
6 | "osuosl.org",
7 | "sophon.ai",
8 | "ionfish.org"
9 | ],
10 | "parseDate": "20240112"
11 | }
--------------------------------------------------------------------------------
/_data/sponsorships/drupal.json:
--------------------------------------------------------------------------------
1 | {
2 | "first": [
3 |
4 | ],
5 | "second": [
6 |
7 | ],
8 | "third": [
9 |
10 | ],
11 | "fourth": [
12 |
13 | ],
14 | "community": [
15 |
16 | ],
17 | "parseDate": "20240926"
18 | }
--------------------------------------------------------------------------------
/_layouts/foundations.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | ---
4 |
5 | {{ content }}
6 |
7 |
8 |
9 | {% for fdn in site.foundations %}
10 | {% include foundation-single.html %}
11 | {% endfor %}
12 |
13 |
--------------------------------------------------------------------------------
/assets/script/build_liquid:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env bash
2 | echo "Building default liquid template from schema"
3 | ruby ../SchemaUtils/lib/schema_utils.rb -i _data/foundations-schema.json -o _includes/foundation-fields.html -t _data/foundation-template.md
--------------------------------------------------------------------------------
/_layouts/commercial.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | ---
4 |
5 | {{ content }}
6 |
7 |
8 |
9 | {% for item in site.data.commercial %}
10 | {% include commercial-single.html %}
11 | {% endfor %}
12 |
13 |
--------------------------------------------------------------------------------
/_layouts/reports.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | ---
4 |
5 | {{ content }}
6 |
7 |
8 |
9 | {% for rpt in site.reports %}
10 | -
11 | {% include report-listitem.html %}
12 |
13 | {% endfor %}
14 |
15 |
--------------------------------------------------------------------------------
/Gemfile:
--------------------------------------------------------------------------------
1 | source 'https://rubygems.org'
2 |
3 | ruby file: ".ruby-version"
4 |
5 | gem "jekyll", "~> 4.3" # installed by `gem jekyll`
6 |
7 | gem "just-the-docs", "0.5.0" # pinned to the current release
8 | # gem "just-the-docs" # always download the latest release
9 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # Copied from https://github.com/github/gitignore/blob/main/Jekyll.gitignore
2 | # Ignore metadata generated by Jekyll
3 | _site/
4 | .sass-cache/
5 | .jekyll-cache/
6 | .jekyll-metadata
7 |
8 | # Ignore folders generated by Bundler
9 | .bundle/
10 | vendor/
11 |
--------------------------------------------------------------------------------
/_data/sponsorships/sfc.json:
--------------------------------------------------------------------------------
1 | {
2 | "first": [
3 | "ampr.org",
4 | "aws.amazon.com",
5 | "codeweavers.com",
6 | "google.com",
7 | "ifixit.com",
8 | "indeed.com",
9 | "jmp.chat",
10 | "code.wildebeest.org",
11 | "mozilla.org"
12 | ],
13 | "parseDate": "20240926"
14 | }
--------------------------------------------------------------------------------
/_layouts/sponsorships.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | ---
4 |
5 | {{ content }}
6 |
7 |
8 |
13 |
--------------------------------------------------------------------------------
/_data/sponsorships/gnome.json:
--------------------------------------------------------------------------------
1 | {
2 | "first": [
3 | "canonical.com",
4 | "google.com",
5 | "redhat.com",
6 | "system76.com"
7 | ],
8 | "second": [
9 | "debian.org",
10 | "documentfoundation.org",
11 | "endlessos.org",
12 | "sugarlabs.org",
13 | "opensuse.org"
14 | ],
15 | "parseDate": "20240212"
16 | }
--------------------------------------------------------------------------------
/_data/sponsorships/postgresql.json:
--------------------------------------------------------------------------------
1 | {
2 | "first": null,
3 | "second": null,
4 | "third": [
5 | "xata.io"
6 | ],
7 | "fourth": null,
8 | "firstinkind": [
9 | "amazon.com",
10 | "rackspace.com",
11 | "conova.com",
12 | "redpill-linpro.com",
13 | "enterprisedb.com"
14 | ],
15 | "parseDate": "20240112"
16 | }
--------------------------------------------------------------------------------
/_includes/commercial-single.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | {{ item.legalName }}
4 |
5 | {{ item.website }}
6 | Notable Project(s): {{ item.projectsNotable }}
7 | {{ item.description }}
8 |
--------------------------------------------------------------------------------
/_pages/models.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: Data Models
3 | excerpt: Schemas and data models.
4 | layout: default
5 | permalink: /models
6 | nav_order: 4
7 | has_children: true
8 | ---
9 |
10 | While our primary dataset is Foundations as organizations, we are also tracking a number of different models all tied to various parts of the open source ecosystem.
11 |
12 |
--------------------------------------------------------------------------------
/_layouts/report.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | ---
4 |
5 |
6 | {% if page.date %}{% endif %}
7 |
8 | {{ page.title }}
9 | {{ page.description }}
10 |
11 | {{ content }}
12 |
13 |
14 |
--------------------------------------------------------------------------------
/_data/sponsorships/plone.json:
--------------------------------------------------------------------------------
1 | {
2 | "first": [
3 | "syslab.com",
4 | "enfoldsystems.com",
5 | "quaivecloud.com",
6 | "jazkarta.com",
7 | "starzel.de"
8 | ],
9 | "second": [
10 | "cloud19.at",
11 | "kombinat.at",
12 | "kitconcept.com",
13 | "zopyx.com",
14 | "thomasschorr.de",
15 | "redturtle.it"
16 | ],
17 | "parseDate": "20240212"
18 | }
--------------------------------------------------------------------------------
/_data/sponsorships/kde.json:
--------------------------------------------------------------------------------
1 | {
2 | "first": [
3 | "canonical.com",
4 | "google.com",
5 | "suse.com",
6 | "qt.io",
7 | "blue-systems.com",
8 | "slimbook.com",
9 | "tuxedocomputers.com",
10 | "kfocus.org",
11 | "g10code.com"
12 | ],
13 | "second": [
14 | "kdab.com",
15 | "basyskom.de",
16 | "haute-couture.enioka.com"
17 | ],
18 | "parseDate": "20240314"
19 | }
--------------------------------------------------------------------------------
/_data/sponsorships/freebsd.json:
--------------------------------------------------------------------------------
1 | {
2 | "first": [
3 | "netapp.com",
4 | "amd.com",
5 | "rgnets.com",
6 | "blackberry.com",
7 | "e-card.bg",
8 | "microsoft.com",
9 | "nozominetworks.com",
10 | "stormshield.com",
11 | "tailscale.com"
12 | ],
13 | "second": [
14 |
15 | ],
16 | "third": [
17 |
18 | ],
19 | "firstinkind": [
20 |
21 | ],
22 | "parseDate": "20240926"
23 | }
--------------------------------------------------------------------------------
/_includes/foundation-preamble.html:
--------------------------------------------------------------------------------
1 |
2 | {% if page.date %}{% endif %}
3 |
4 | {% if page.legalName %}{{ page.legalName }}{% else %}{{ page.commonName }}{% endif %}
5 |
6 |
--------------------------------------------------------------------------------
/_data/sponsorships/rails.json:
--------------------------------------------------------------------------------
1 | {
2 | "first": [
3 | "cookpad.com",
4 | "doximity.com",
5 | "fleetio.com",
6 | "github.com",
7 | "intercom.com",
8 | "procore.com",
9 | "shopify.com",
10 | "37signals.com"
11 | ],
12 | "second": [
13 | "appsignal.com",
14 | "bigbinary.com",
15 | "cedarcode.com",
16 | "planetargon.com",
17 | "renuo.ch"
18 | ],
19 | "parseDate": "20240212"
20 | }
--------------------------------------------------------------------------------
/_includes/foundation-single.html:
--------------------------------------------------------------------------------
1 |
2 |
5 | Website: {{ fdn.website }}
6 | Nonprofit Type: {{ fdn.nonprofitStatus }}
7 | {{ fdn.description }}
8 |
--------------------------------------------------------------------------------
/_pages/listing.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: Foundations Directory
3 | excerpt: List of all non-profit FOSS Foundations tracked in this dataset.
4 | layout: foundations
5 | permalink: /listing
6 | nav_order: 2
7 | has_children: true
8 | ---
9 |
10 | An alphabetical listing of **non-profit** foundations that host FOSS projects or are otherwise significant in the open source ecosystem.
11 |
12 | {% include foundation-list-nav.html %}
13 | {{ fdnlistnav }}
14 |
--------------------------------------------------------------------------------
/_data/kde_map.json:
--------------------------------------------------------------------------------
1 | {
2 | "Google": "google.com",
3 | "Canonical": "canonical.com",
4 | "SUSE": "suse.com",
5 | "Qt Group": "qt.io",
6 | "Blue Systems": "blue-systems.com",
7 | "Slimbook": "slimbook.com",
8 | "TUXEDO Computers": "tuxedocomputers.com",
9 | "Kubuntu Focus": "kfocus.org",
10 | "g10 Code": "g10code.com",
11 | "KDAB": "kdab.com",
12 | "Basyskom": "basyskom.de",
13 | "Enioka Haute Couture": "haute-couture.enioka.com"
14 | }
15 |
--------------------------------------------------------------------------------
/_pages/projects-numfocus.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: NumFOCUS Projects
3 | excerpt: Full list of NumFOCUS sponsored projects.
4 | layout: default
5 | permalink: /projects-numfocus
6 | nav_exclude: true
7 | ---
8 |
9 | [NumFOCUS](foundations/numfocus) provides [fiscal hosting](https://numfocus.org/sponsored-projects) for a variety of open source projects.
10 |
11 | NumFOCUS Subprojects
12 |
13 | {% include subproject.html subproject=site.data.projects-numfocus %}
14 |
--------------------------------------------------------------------------------
/_includes/csvtable.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | {% for row in csvtable %}
4 | {% if forloop.first %}
5 |
6 | {% for pair in row %}
7 | | {{ pair[0] }} |
8 | {% endfor %}
9 |
10 | {% endif %}
11 |
12 | {% tablerow pair in row %}
13 | {{ pair[1] }}
14 | {% endtablerow %}
15 |
16 | {% endfor %}
17 |
18 |
--------------------------------------------------------------------------------
/_pages/404.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: 404 Page Not Found
4 | excerpt: Page not found. We haven't found it either!
5 | permalink: /404
6 | nav_exclude: true
7 | search_exclude: true
8 | ---
9 |
10 | Error: 404 Page not found
11 |
12 | Sorry, we haven't written about that topic yet! Try using the navigation on the left {% if site.search_enabled != false %}or search {% endif %}to find what you're looking for or go to this site's home page.
--------------------------------------------------------------------------------
/_sponsorships/debian.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: debian
3 | commonName: Debian
4 | fiscalHost: spi
5 | nonprofit: c3
6 | sponsorurl: https://www.debian.org/partners/
7 | levelurl: https://www.debian.org/partners/2024/partners
8 | normalize: 'true'
9 | comment: Debian uses SPI fiscal hosting; no specific level is set so estimate at 1001
10 | levels:
11 | first:
12 | name: Partner
13 | amount: '1001'
14 | selector: div.partnerlogo a
15 | attr: href
16 | benefits:
17 | logo: 'yes'
18 | ---
19 |
--------------------------------------------------------------------------------
/_pages/projects-spi.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: Software In The Public Interest Projects
3 | excerpt: Full list of SPI, Inc projects.
4 | layout: default
5 | permalink: /projects-spi
6 | nav_exclude: true
7 | ---
8 |
9 | [Software In The Public Interest](foundations/spi) provides [basic fiscal hosting](https://www.spi-inc.org/projects/services/) for a variety of open source projects.
10 |
11 | Software In The Public Interest Subprojects
12 |
13 | {% include subproject.html subproject=site.data.projects-spi %}
14 |
--------------------------------------------------------------------------------
/_pages/projects-sfc.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: Software Freedom Conservancy Projects
3 | excerpt: Full list of Software Freedom Conservancy projects.
4 | layout: default
5 | permalink: /projects-sfc
6 | nav_exclude: true
7 | ---
8 |
9 | [Software Freedom Conservancy](foundations/sfc) provides [fiscal hosting](https://sfconservancy.org/projects/current/) for a variety of open source projects.
10 |
11 | Software Freedom Conservancy Subprojects
12 |
13 | {% include subproject.html subproject=site.data.projects-sfc %}
14 |
--------------------------------------------------------------------------------
/_pages/reports.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: Reports
3 | excerpt: Simple reports or charts.
4 | layout: reports
5 | permalink: /reports
6 | nav_order: 6
7 | has_children: true
8 | has_toc: false
9 | ---
10 |
11 | Our [data models](/models) span many facets across the FOSS ecosystem, and invite structured research into new areas. A few simple reports or visualized datasets are included here.
12 |
13 | [Contributions]((https://github.com/Punderthings/fossfoundation/blob/main/CONTRIBUTING.md)) of new data visualizations highly welcomed!
14 |
--------------------------------------------------------------------------------
/_sponsorships/sfc.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: sfc
3 | commonName: Software Freedom Conservancy
4 | nonprofit: c3
5 | sponsorurl: https://sfconservancy.org/sponsors/
6 | levelurl: https://sfconservancy.org/sponsors/
7 | normalize: 'true'
8 | comment: SFConservancy does not list specific amounts or benefits; use 1K as a default
9 | corporate level
10 | levels:
11 | first:
12 | name: First
13 | amount: '1000'
14 | selector: div#mainContent ul#sponsor a
15 | attr: href
16 | benefits:
17 | logo: 'yes'
18 | ---
19 |
--------------------------------------------------------------------------------
/_sponsorships/spi.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: spi
3 | commonName: Software in the Public Interest
4 | nonprofit: c3
5 | staticmap: '20240212'
6 | sponsorurl: https://www.spi-inc.org/sponsors/
7 | levelurl: https://www.spi-inc.org/sponsors/
8 | normalize: 'true'
9 | comment: SPI doesn't list levels, so estimate at 1001; acts as fiscal host elsewhere
10 | levels:
11 | first:
12 | name: Partner
13 | amount: '1001'
14 | benefits:
15 | logo: 'yes'
16 | sponsors:
17 | - craigslist.org
18 | - google.com
19 | - gandi.net
20 | ---
21 |
--------------------------------------------------------------------------------
/_data/sponsorships/osgeo.json:
--------------------------------------------------------------------------------
1 | {
2 | "first": [
3 | "opengis.ch",
4 | "geocat.net"
5 | ],
6 | "second": [
7 | "t-kartorusa.com",
8 | "mapgears.com"
9 | ],
10 | "third": [
11 | "wheregroup.com",
12 | "gaia3d.com"
13 | ],
14 | "fourth": [
15 | "route4me.com",
16 | "psf.ca",
17 | "uk.osgeo.org"
18 | ],
19 | "fifth": [
20 | "wozalabs.com",
21 | "sjgeophysics.com",
22 | "illustreets.com",
23 | "mammothgeospatial.com",
24 | "crgl.ca",
25 | "how2map.com"
26 | ],
27 | "parseDate": "20240926"
28 | }
--------------------------------------------------------------------------------
/_data/fsfe_map.json:
--------------------------------------------------------------------------------
1 | {
2 | "Google": "google.com",
3 | "Intel": "intel.com",
4 | "Red Hat": "redhat.com",
5 | "Siemens": "siemens.com",
6 | "Adfinis": "adfinis.com",
7 | "freiheit.com technologies": "freiheit.com",
8 | "Heinlein Support": "heinlein-support.de",
9 | "Intevation GmbH": "intevation.de",
10 | "Keyfactor": "keyfactor.com",
11 | "Linux Foundation": "linuxfoundation.org",
12 | "Open Invention Network": "openinventionnetwork.com",
13 | "publicplan GmbH": "publicplan.de",
14 | "ysmocom - systems for mobile communications": "sysmocom.de"
15 | }
16 |
--------------------------------------------------------------------------------
/_data/sponsorships/osi.json:
--------------------------------------------------------------------------------
1 | {
2 | "first": [
3 | "google.com"
4 | ],
5 | "second": [
6 | "amazon.com"
7 | ],
8 | "third": [
9 | "bloomberg.com",
10 | "capitalone.com",
11 | "cisco.com",
12 | "github.com",
13 | "intel.com",
14 | "fb.com",
15 | "redhat.com"
16 | ],
17 | "fourth": [
18 | "ferretdb.io",
19 | "microsoft.com",
20 | "openlogic.com",
21 | "salesforce.com",
22 | "tidelift.com"
23 | ],
24 | "fifth": [
25 | "blindsidenetworks.com",
26 | "sentry.io",
27 | "www.slim.ai",
28 | "sysdig.com"
29 | ],
30 | "parseDate": "20240212"
31 | }
--------------------------------------------------------------------------------
/_sponsorships/archlinux.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: archlinux
3 | commonName: Arch Linux
4 | fiscalHost: spi
5 | nonprofit: c3
6 | staticmap: '20240112'
7 | sponsorurl: https://archlinux.org/donate/
8 | levelurl: https://archlinux.org/donate/
9 | normalize: 'true'
10 | comment: Arch Linux uses SPI fiscal hosting; no specific level is set so estimate
11 | at 1001
12 | levels:
13 | first:
14 | name: Sponsor
15 | amount: '1001'
16 | benefits:
17 | logo: 'yes'
18 | sponsors:
19 | - icons8.com
20 | - nitrokey.com
21 | - privateinternetaccess.com
22 | - shells.com
23 | - uptimerobot.com
24 | ---
25 |
--------------------------------------------------------------------------------
/_sponsorships/ardupilot.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: ardupilot
3 | commonName: ArduPilot
4 | fiscalHost: spi
5 | nonprofit: c3
6 | sponsorurl: https://ardupilot.org/ardupilot/docs/common-partners.html
7 | levelurl: https://ardupilot.org/ardupilot/docs/common-partners-program.html
8 | normalize: 'true'
9 | comment: Ardu uses SPI fiscal hosting; level varies but estimate at 1001
10 | levels:
11 | first:
12 | name: Partner
13 | amount: '1001'
14 | amountvaries: larger businesses requested to donate 5K - 10K instead
15 | selector: table.partners-table a
16 | attr: href
17 | benefits:
18 | logo: 'yes'
19 | ---
20 |
--------------------------------------------------------------------------------
/_data/sponsorships/graphql.json:
--------------------------------------------------------------------------------
1 | {
2 | "first": [
3 | "airbnb.com",
4 | "amazon.com",
5 | "apollographql.com",
6 | "atlassian.com",
7 | "copilottravel.com",
8 | "elementl.com",
9 | "escape.tech",
10 | "goldmansachs.com",
11 | "grafbase.com",
12 | "hasura.io",
13 | "ibm.com",
14 | "intuit.com",
15 | "meta.com",
16 | "microsoft.com",
17 | "neo4j.com",
18 | "platformatic.dev",
19 | "postman.com",
20 | "salsify.com",
21 | "shopify.com",
22 | "solo.io",
23 | "graphcdn.io",
24 | "the-guild.dev",
25 | "tyk.io"
26 | ],
27 | "parseDate": "20240926"
28 | }
--------------------------------------------------------------------------------
/_pages/commercial.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: Selected Commercial Entities
3 | excerpt: Partial list of commercial/for-profit companies sometimes confused with open source projects.
4 | layout: commercial
5 | permalink: /commercial
6 | parent: Foundations Directory
7 | nav_order: 20
8 | ---
9 |
10 | There are a number of commercial or for-profit entities that are often confused with similarly-named or widely-used open source projects or products. This listing is a very brief selection of some of the major commercial entities people might think of, to serve as an example of some companies that are **not** in the [foundations listing](listing).
11 |
--------------------------------------------------------------------------------
/_data/sponsorships/debian.json:
--------------------------------------------------------------------------------
1 | {
2 | "first": [
3 | "1und1.de",
4 | "amperecomputing.com",
5 | "bytemark.co.uk",
6 | "conova.com",
7 | "credativ.de",
8 | "dg-i.net",
9 | "eaton.com",
10 | "fastly.com",
11 | "freexian.com",
12 | "gandi.net",
13 | "genesi.company",
14 | "google.com",
15 | "hetzner.com",
16 | "developer.hpe.com",
17 | "leaseweb.com",
18 | "loongson.cn",
19 | "man-da.de",
20 | "osuosl.org",
21 | "rcodezero.at",
22 | "thomas-krenn.com",
23 | "trustsec.de",
24 | "arc.ubc.ca",
25 | "sanger.ac.uk"
26 | ],
27 | "parseDate": "20240926"
28 | }
--------------------------------------------------------------------------------
/_data/sponsorships/haskell.json:
--------------------------------------------------------------------------------
1 | {
2 | "first": [
3 | "github.com",
4 | "iohk.io",
5 | "juspay.in",
6 | "meta.com"
7 | ],
8 | "second": [
9 | "carboncloud.com",
10 | "digitalasset.com",
11 | "exfreight.com",
12 | "mercury.com",
13 | "obsidian.systems",
14 | "platonic.systems",
15 | "sc.com",
16 | "tweag.io",
17 | "well-typed.com"
18 | ],
19 | "third": [
20 | "artificial.io",
21 | "channable.com",
22 | "flipstone.com",
23 | "freckle.com",
24 | "google.com",
25 | "herp.co.jp",
26 | "mlabs.city",
27 | "tripshot.com"
28 | ],
29 | "parseDate": "20240926"
30 | }
--------------------------------------------------------------------------------
/_pages/projects-asf.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: Apache Software Foundation Projects
3 | excerpt: Full list of Apache projects officially hosted at the ASF.
4 | layout: default
5 | permalink: /projects-asf
6 | nav_exclude: true
7 | ---
8 |
9 | Many major open source projects are hosted at the [Apache Software Foundation](foundations/asf), meaning that while they have governance defined by the Apache Way, and [report to the ASF board](https://apache.org/foundation/board/reporting), the projects themselves are not independent legal entities.
10 |
11 | Apache Software Foundation Subprojects
12 |
13 | {% include subproject.html subproject=site.data.projects-asf %}
14 |
--------------------------------------------------------------------------------
/_sponsorships/adelielinux.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: adelielinux
3 | commonName: "Adélie Linux"
4 | fiscalHost: spi
5 | nonprofit: c3
6 | staticmap: '20240112'
7 | sponsorurl: https://www.adelielinux.org/sponsors/
8 | levelurl: https://www.adelielinux.org/sponsors/
9 | normalize: 'true'
10 | comment: Adelie Linux uses SPI fiscal hosting; no specific level is set so estimate
11 | at 1001
12 | levels:
13 | first:
14 | name: Sponsor
15 | amount: '1001'
16 | benefits:
17 | logo: 'yes'
18 | sponsors:
19 | - docker.com
20 | - solid-run.com
21 | - gw4.ac.uk
22 | - osuosl.org
23 | - sophon.ai
24 | - ionfish.org
25 | ---
26 |
--------------------------------------------------------------------------------
/_data/sponsorships/gentoo.json:
--------------------------------------------------------------------------------
1 | {
2 | "firstinkind": [
3 | "osuosl.org",
4 | "bytemark.co.uk",
5 | "7l.com",
6 | "top-ix.org",
7 | "fastbull.org",
8 | "dedicatednow.com",
9 | "hotelkatalog24.de",
10 | "numberly.com",
11 | "leaseweb.com",
12 | "hetzner.com",
13 | "cdn77.com",
14 | "vsys.host",
15 | "hp.com",
16 | "eng.mephi.ru"
17 | ],
18 | "secondinkind": [
19 | "nitrokey.com",
20 | "imgtec.com",
21 | "opengear.com",
22 | "nvidia.com",
23 | "amigaforever.com",
24 | "ostc.com",
25 | "jetbrains.com",
26 | "genesi.lu",
27 | "datarescue.com"
28 | ],
29 | "parseDate": "20240212"
30 | }
--------------------------------------------------------------------------------
/_data/sponsorships/raspberrypi.json:
--------------------------------------------------------------------------------
1 | {
2 | "first": [
3 | "google.org"
4 | ],
5 | "second": [
6 | "atlassian.com"
7 | ],
8 | "third": [
9 | "bnymellon.com"
10 | ],
11 | "fourth": [
12 | "oracle.com",
13 | "workday.com",
14 | "bloomfieldtrust.co.uk",
15 | "expo2020dubai.com",
16 | "blizzard.com",
17 | "broadcomfoundation.org",
18 | "spglobal.com",
19 | "infosys.org"
20 | ],
21 | "fifth": [
22 | "dogpatchlabs.com",
23 | "mythic-beasts.com",
24 | "tech.allianz.com"
25 | ],
26 | "sixth": [
27 | "libertyglobal.com",
28 | "logmeininc.com",
29 | "micron.com",
30 | "about.facebook.com",
31 | "humblebundle.com"
32 | ],
33 | "parseDate": "20240926"
34 | }
--------------------------------------------------------------------------------
/_sponsorships/graphql.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: graphql
3 | commonName: GraphQL Foundation
4 | fiscalHost: lf
5 | nonprofit: lf
6 | sponsorurl: https://raw.githubusercontent.com/graphql/graphql-landscape/main/landscape.yml
7 | levelurl: https://graphql.org/foundation/join/
8 | landscape: GraphQL Foundation Member
9 | levels:
10 | first:
11 | name: General
12 | amount: '20000'
13 | amountvaries: sliding scale by number employees
14 | selector: ''
15 | attr: homepage_url
16 | benefits:
17 | governance: vote for board seat; must be LF Silver member
18 | community:
19 | name: Associate
20 | amount: '0'
21 | selector: ''
22 | attr: homepage_url
23 | benefits:
24 | logo: 'yes'
25 | ---
26 |
--------------------------------------------------------------------------------
/_data/sponsorship-levels.json:
--------------------------------------------------------------------------------
1 | {
2 | "first": "Top-level Sponsors",
3 | "second": "Second-level Sponsors",
4 | "third": "Third-level Sponsors",
5 | "fourth": "Fourth-level Sponsors",
6 | "fifth": "Fifth-level Sponsors",
7 | "sixth": "Sixth-level Sponsors",
8 | "seventh": "Seventh-level Sponsors",
9 | "eighth": "Eighth-level Sponsors",
10 | "community": "Community Sponsors",
11 | "firstinkind": "Top-level InKind Sponsors",
12 | "secondinkind": "Second-level InKind Sponsors",
13 | "thirdinkind": "Third-level InKind Sponsors",
14 | "fourthinkind": "Fourth-level InKind Sponsors",
15 | "startuppartners": "Startup Partner Sponsors",
16 | "academic": "Academic Sponsors",
17 | "enduser": "End User Sponsors",
18 | "grants": "Grantmakers"
19 | }
--------------------------------------------------------------------------------
/_sponsorships/rails.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: rails
3 | commonName: Rails Foundation
4 | nonprofit: c6
5 | staticmap: '20240212'
6 | levelurl: https://rubyonrails.org/foundation
7 | levels:
8 | first:
9 | name: Core
10 | amount: '50000'
11 | benefits:
12 | marketing: board seat
13 | logo: 'yes'
14 | sponsors:
15 | - cookpad.com
16 | - doximity.com
17 | - fleetio.com
18 | - github.com
19 | - intercom.com
20 | - procore.com
21 | - shopify.com
22 | - 37signals.com
23 | second:
24 | name: Contributing
25 | amount: '25000'
26 | benefits:
27 | logo: 'yes'
28 | sponsors:
29 | - appsignal.com
30 | - bigbinary.com
31 | - cedarcode.com
32 | - planetargon.com
33 | - renuo.ch
34 | ---
35 |
--------------------------------------------------------------------------------
/_sponsorships/haskell.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: haskell
3 | commonName: Haskell
4 | nonprofit: c3
5 | sponsorurl: https://haskell.foundation/donations/
6 | levelurl: https://haskell.foundation/donations/
7 | normalize: 'true'
8 | levels:
9 | first:
10 | name: monad
11 | amount: '70000'
12 | selector: a.w-48
13 | attr: href
14 | benefits:
15 | marketing: full interview on blog
16 | second:
17 | name: applicative
18 | amount: '25000'
19 | selector: a.w-36
20 | attr: href
21 | benefits:
22 | marketing: supporter spotlight on website and newsletter
23 | third:
24 | name: functor
25 | amount: '10000'
26 | selector: a.w-24
27 | attr: href
28 | benefits:
29 | marketing: basic visibility
30 | logo: 'yes'
31 | ---
32 |
--------------------------------------------------------------------------------
/_includes/foundation-list-nav.html:
--------------------------------------------------------------------------------
1 | {% capture categorynav %}Accepts New Projects? | Fiscal Hosting? | Nonprofit Type | Country | Code of Conduct{% endcapture %}
2 | {% capture fdnlistnav %}
3 | View the FOSS Foundation Directory by:
4 | Alphabetical | {{ categorynav }} | OpenAPI
5 | Other datasets: Sponsorships | US 990 Taxes | Fiscal Hosts | Unincorporated Projects | Projects At Foundations | Commercial Orgs
6 | {% endcapture %}
7 |
--------------------------------------------------------------------------------
/_data/sponsorships/cd.json:
--------------------------------------------------------------------------------
1 | {
2 | "first": [
3 | "apple.com",
4 | "cloudbees.com"
5 | ],
6 | "third": [
7 | "capitalone.com",
8 | "ebay.com",
9 | "fidelity.com",
10 | "jpmorganchase.com",
11 | "nginx.com",
12 | "salesforce.com",
13 | "tracemachina.com"
14 | ],
15 | "second": [
16 | "circleci.com",
17 | "cloudsmith.com",
18 | "codefresh.io",
19 | "harness.io",
20 | "octopus.com",
21 | "opsmx.com",
22 | "paloaltonetworks.com",
23 | "prodvana.io",
24 | "sap.com",
25 | "spacelift.io",
26 | "stackhawk.com",
27 | "sumologic.com",
28 | "tenable.com",
29 | "testkube.io",
30 | "whitesourcesoftware.com"
31 | ],
32 | "community": [
33 | "english.ecnu.edu.cn"
34 | ],
35 | "parseDate": "20240926"
36 | }
--------------------------------------------------------------------------------
/_sponsorships/fsfe.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: fsfe
3 | commonName: Free Software Foundation Europe
4 | nonprofit: charitable e.V.
5 | sponsorurl: https://fsfe.org/donate/thankgnus.en.html
6 | levelurl: https://fsfe.org/donate/thankgnus.en.html
7 | normalize: 'false'
8 | sponsormap: _data/fsfe_map.json
9 | comment: "Bronze sponsors are listed by name only; 480 EUR/year level"
10 | levels:
11 | first:
12 | name: Gold
13 | amount: '12000'
14 | amountCurrency: EUR
15 | selector: "div#content > h2#gold + p + table td img"
16 | attr: 'alt'
17 | benefits:
18 | logo: 'yes'
19 | second:
20 | name: Silver
21 | amount: '2400'
22 | amountCurrency: EUR
23 | selector: "div#content > h2#silver + p + table td img"
24 | attr: 'alt'
25 | benefits:
26 | logo: 'yes'
27 | ---
--------------------------------------------------------------------------------
/_sponsorships/kde.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: kde
3 | commonName: KDE
4 | nonprofit: DEAssociation
5 | sponsorurl: https://ev.kde.org/supporting-members/
6 | levelurl: https://ev.kde.org/getinvolved/supporting-members/
7 | sponsormap: _data/kde_map.json
8 | levels:
9 | first:
10 | name: Patrons
11 | amount: '10000'
12 | amountCurrency: EUR
13 | amountVaries: sliding scale by company size; small is 5000 EUR
14 | selector: div.img-patrons img
15 | attr: alt
16 | benefits:
17 | advisory: seat on advisory board
18 | events: sponsors dinner at annual Akademy conference
19 | logo: yes, no link
20 | second:
21 | name: Supporting
22 | amount: '1000'
23 | selector: div.img-supporters img
24 | attr: alt
25 | benefits:
26 | events: invite to annual Akademy conference
27 | logo: yes, no link
28 | ---
29 |
--------------------------------------------------------------------------------
/_pages/about.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: About / Resources
3 | excerpt: Resources, research ideas, and project governance.
4 | layout: default
5 | permalink: /about
6 | nav_order: 99
7 | has_children: true
8 | ---
9 |
10 | # About This Site
11 |
12 | The FOSS Foundation metadata directory is both a stable listing of a subset of interesting FOSS Foundations and related data, as well as an active development project adding new metadata, new foundations and other entities listed, and is looking for input on what else is useful for you, the reader!
13 |
14 | In particular, we are hoping to be a core resource of metadata about organizations in the open source space to both foundation leaders as well as researchers around the world. So your ideas and help are welcomed. In particular, we have a number of [research ideas waiting to be explored](/research).
15 |
16 | ## More About This Site
17 |
--------------------------------------------------------------------------------
/_data/sponsorships/fsfe.json:
--------------------------------------------------------------------------------
1 | {
2 | "first": [
3 | "google.com",
4 | "intel.com",
5 | "Linuxhotel Villa Vogelsang",
6 | "Microsoft",
7 | "OpenProject",
8 | "redhat.com",
9 | "Reinhard Wiesemann",
10 | "siemens.com"
11 | ],
12 | "second": [
13 | "adfinis.com",
14 | "AVM",
15 | "Collabora Productivity",
16 | "Document Foundation",
17 | "freiheit.com",
18 | "heinlein-support.de",
19 | "intevation.de",
20 | "Julian Rüth GmbH",
21 | "keyfactor.com",
22 | "Lars Hohl a.k.a. derPUPE",
23 | "LINAGORA",
24 | "linuxfoundation.org",
25 | "Nextcloud",
26 | "Otto Kekäläinen",
27 | "publicplan.de",
28 | "SUSE Open Source Community Citizens (OSCC)",
29 | "sysmocom - systems for mobile communications",
30 | "Volvo Cars",
31 | "XWiki / CryptPad Team"
32 | ],
33 | "parseDate": "20240926"
34 | }
--------------------------------------------------------------------------------
/_data/sponsorships/numfocus.json:
--------------------------------------------------------------------------------
1 | {
2 | "first": [
3 | "bloomberg.com",
4 | "troweprice.com",
5 | "ibm.biz",
6 | "anaconda.com",
7 | "posit.co"
8 | ],
9 | "second": [
10 | "microsoft.com",
11 | "holoceneadvisors.com",
12 | "google.com",
13 | "nvidia.com",
14 | "qube-rt.com",
15 | "twosigma.com",
16 | "esri.com",
17 | "planet.com"
18 | ],
19 | "third": [
20 | "imc.com",
21 | "hopsworks.ai",
22 | "safe.com"
23 | ],
24 | "community": [
25 | "snowflake.com",
26 | "block.science",
27 | "sparkgeo.com",
28 | "tesseratherapeutics.com",
29 | "maxar.com",
30 | "corporate.comcast.com",
31 | "geoczech.org"
32 | ],
33 | "startuppartners": [
34 | "bytewax.io"
35 | ],
36 | "grants": [
37 | "moore.org",
38 | "chanzuckerberg.com",
39 | "sloan.org"
40 | ],
41 | "parseDate": "20250911"
42 | }
--------------------------------------------------------------------------------
/_sponsorships/aswf.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: aswf
3 | commonName: Academy Software Foundation
4 | fiscalHost: lf
5 | nonprofit: lf
6 | sponsorurl: https://raw.githubusercontent.com/AcademySoftwareFoundation/aswf-landscape/main/landscape.yml
7 | levelurl: https://www.aswf.io/join/
8 | landscape: ASWF Member Company
9 | levels:
10 | first:
11 | name: Premier
12 | amount: '50000'
13 | selector: ''
14 | attr: homepage_url
15 | benefits:
16 | governance: appoint board seat
17 | second:
18 | name: General
19 | amount: '20000'
20 | amountvaries: sliding scale by number employees
21 | selector: ''
22 | attr: homepage_url
23 | benefits:
24 | governance: vote for board seat
25 | logo: 'yes'
26 | third:
27 | name: Associate
28 | amount: '0'
29 | selector: ''
30 | attr: homepage_url
31 | benefits:
32 | logo: 'yes'
33 | ---
34 |
--------------------------------------------------------------------------------
/_sponsorships/hyperledger.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: hyperledger
3 | commonName: Hyperledger
4 | fiscalHost: lf
5 | nonprofit: lf
6 | sponsorurl: https://raw.githubusercontent.com/hyperledger-dlt-landscape/hyperledger-dlt-landscape/main/landscape.yml
7 | levelurl: https://www.hyperledger.org/join-us
8 | landscape: Hyperledger Members
9 | levels:
10 | first:
11 | name: Premier
12 | amount: '250000'
13 | selector: ''
14 | attr: homepage_url
15 | benefits:
16 | governance: must be LF foundation member
17 | second:
18 | name: General
19 | amount: '50000'
20 | amountvaries: sliding scale by number employees
21 | selector: ''
22 | attr: homepage_url
23 | benefits:
24 | governance: must be LF foundation member
25 | logo: 'yes'
26 | third:
27 | name: Associate
28 | amount: '0'
29 | selector: ''
30 | attr: homepage_url
31 | benefits:
32 | logo: 'yes'
33 | ---
34 |
--------------------------------------------------------------------------------
/.github/workflows/jekyll-build-pages.yml:
--------------------------------------------------------------------------------
1 | # From https://github.com/actions/jekyll-build-pages
2 | name: Build And Deploy Jekyll to Pages
3 | on:
4 | push:
5 | branches: ["test"] # Comment out
6 | permissions:
7 | contents: read
8 | pages: write
9 | id-token: write
10 | jobs:
11 | build:
12 | runs-on: ubuntu-latest
13 | steps:
14 | - name: Checkout
15 | uses: actions/checkout@v3
16 | - name: Setup Pages
17 | uses: actions/configure-pages@v3
18 | - name: Build
19 | uses: actions/jekyll-build-pages@v1.0.7
20 | - name: Upload artifact
21 | uses: actions/upload-pages-artifact@v1
22 | deploy:
23 | runs-on: ubuntu-latest
24 | needs: build
25 | steps:
26 | - name: Deploy to GitHub Pages
27 | id: deployment
28 | uses: actions/deploy-pages@v2
29 | environment:
30 | name: github-pages
31 | url: ${{ steps.deployment.outputs.page_url }}
32 |
--------------------------------------------------------------------------------
/.all-contributorsrc:
--------------------------------------------------------------------------------
1 | {
2 | "files": [
3 | "README.md"
4 | ],
5 | "imageSize": 100,
6 | "commit": false,
7 | "commitConvention": "angular",
8 | "contributors": [
9 | {
10 | "login": "lydiapintscher",
11 | "name": "Lydia Pintscher",
12 | "avatar_url": "https://avatars.githubusercontent.com/u/550412?v=4",
13 | "profile": "http://blog.lydiapintscher.de",
14 | "contributions": [
15 | "data"
16 | ]
17 | },
18 | {
19 | "login": "andrew",
20 | "name": "Andrew Nesbitt",
21 | "avatar_url": "https://avatars.githubusercontent.com/u/1060?v=4",
22 | "profile": "https://nesbitt.io",
23 | "contributions": [
24 | "code"
25 | ]
26 | }
27 | ],
28 | "contributorsPerLine": 7,
29 | "skipCi": true,
30 | "repoType": "github",
31 | "repoHost": "https://github.com",
32 | "projectName": "fossfoundation",
33 | "projectOwner": "Punderthings",
34 | "commitType": "docs"
35 | }
36 |
--------------------------------------------------------------------------------
/_data/sponsorships/jsfoundation.json:
--------------------------------------------------------------------------------
1 | {
2 | "first": [
3 | "ibm.com",
4 | "joyent.com",
5 | "microsoft.com",
6 | "sovereigntechfund.de"
7 | ],
8 | "second": [
9 | "godaddy.com",
10 | "google.com",
11 | "herodevs.com"
12 | ],
13 | "third": [
14 | "americanexpress.com",
15 | "theblogstarter.com",
16 | "bloomberg.com",
17 | "capitalone.com",
18 | "cargurus.com",
19 | "flowfuse.com",
20 | "foursquare.com",
21 | "github.com",
22 | "greyshore.com",
23 | "groupon.com",
24 | "hackerone.com",
25 | "jobyaviation.com",
26 | "livingspec.com",
27 | "fb.com",
28 | "www.nearform.com",
29 | "netflix.com",
30 | "nodesource.com",
31 | "platformatic.dev",
32 | "redhat.com",
33 | "saucelabs.com",
34 | "sentry.io",
35 | "www.tafsol.com",
36 | "www.uber.com"
37 | ],
38 | "academic": null,
39 | "community": null,
40 | "enduser": null,
41 | "parseDate": "20240212"
42 | }
--------------------------------------------------------------------------------
/_sponsorships/gnome.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: gnome
3 | commonName: Gnome
4 | nonprofit: c3
5 | staticmap: '20240212'
6 | sponsorurl: https://foundation.gnome.org/reports/
7 | levelurl: https://foundation.gnome.org/reports/
8 | normalize: 'true'
9 | comment: 'Note: Gnome doesn''t list specific level amounts, so cash value is estimated.'
10 | levels:
11 | first:
12 | name: Advisory
13 | amount: '20000'
14 | benefits:
15 | advisory: seat on advisory (non-governance) board for corporate sponsors
16 | logo: 'yes'
17 | sponsors:
18 | - canonical.com
19 | - google.com
20 | - redhat.com
21 | - system76.com
22 | second:
23 | name: Nonprofit
24 | amount: '0'
25 | benefits:
26 | advisory: seat on advisory (non-governance) board for nonprofit sponsors
27 | logo: 'yes'
28 | sponsors:
29 | - debian.org
30 | - documentfoundation.org
31 | - endlessos.org
32 | - sugarlabs.org
33 | - opensuse.org
34 | ---
35 |
--------------------------------------------------------------------------------
/_sponsorships/owasp.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: owasp
3 | commonName: OWASP
4 | nonprofit: c3
5 | sponsorurl: https://owasp.org/supporters/list
6 | levelurl: https://owasp.org/supporters/packages
7 | normalize: 'true'
8 | levels:
9 | first:
10 | name: platinum
11 | amount: '25000'
12 | selector: section#sec-main ul:nth-of-type(2) a
13 | attr: href
14 | benefits:
15 | events: early event access; 20 discount tickets
16 | marketing: 10 projects/chapters to sponsor
17 | second:
18 | name: gold
19 | amount: '15000'
20 | selector: section#sec-main ul:nth-of-type(3) a
21 | attr: href
22 | benefits:
23 | events: 10 discount tickets
24 | marketing: 5 projects/chapters to sponsor
25 | third:
26 | name: silver
27 | amount: '5000'
28 | selector: section#sec-main ul:nth-of-type(4) a
29 | attr: href
30 | benefits:
31 | events: 2 discount tickets
32 | marketing: 1 projects/chapters to sponsor
33 | ---
34 |
--------------------------------------------------------------------------------
/_data/openstack_map.json:
--------------------------------------------------------------------------------
1 | {
2 | "/a/members/profile/1/ericsson": "ericsson.com",
3 | "/a/members/profile/1/huawei": "huawei.com",
4 | "/a/members/profile/1/wind-river": "windriver.com",
5 | "/a/members/profile/2/99-cloud-inc": "99cloud.net",
6 | "/a/members/profile/2/canonical": "canonical.com",
7 | "/a/members/profile/2/cleura": "cleura.com",
8 | "/a/members/profile/2/deutsche-telekom": "telekom.com",
9 | "/a/members/profile/2/iei-system": "ieisystem.com",
10 | "/a/members/profile/2/red-hat-inc": "redhat.com",
11 | "/a/members/profile/2/zte-corporation": "ztedevices.com",
12 | "/a/members/profile/3/fujitsu": "fujitsu.com",
13 | "/a/members/profile/3/hitachi-vantra": "hitachivantara.com",
14 | "/a/members/profile/3/mirantis": "mirantis.com",
15 | "/a/members/profile/3/nec": "nec.com",
16 | "/a/members/profile/3/rackspace": "rackspace.com",
17 | "/a/members/profile/2/china-telecom": "http://www.ctsi.com.cn/",
18 | "/a/members/profile/3/a-wcloud": "awcloud.com"
19 | }
--------------------------------------------------------------------------------
/_data/sponsorships/openmainframe.json:
--------------------------------------------------------------------------------
1 | {
2 | "first": [
3 | "broadcom.com",
4 | "ibm.com",
5 | "rocketsoftware.com",
6 | "suse.com"
7 | ],
8 | "second": [
9 | "canonical.com",
10 | "convergetp.com",
11 | "phoenixsoftware.com",
12 | "bizapedia.com"
13 | ],
14 | "academic": [
15 | "asurams.edu",
16 | "bit.edu.cn",
17 | "hs-coburg.de",
18 | "ecu.edu",
19 | "hogent.be",
20 | "htl-donaustadt.at",
21 | "goethe-university-frankfurt.de",
22 | "informatik.uni-leipzig.de",
23 | "marist.edu",
24 | "ncat.edu",
25 | "scut.edu.cn",
26 | "beds.ac.uk",
27 | "washington.edu",
28 | "wlv.ac.uk",
29 | "vcu.edu",
30 | "uwo.ca",
31 | "wpunj.edu",
32 | "xidian.edu.cn",
33 | "epsi.fr"
34 | ],
35 | "community": [
36 | "amc-ev.org",
37 | "mainframe-academy.de",
38 | "forbladi.org",
39 | "gse.org.uk",
40 | "gse.org",
41 | "myhsts.org",
42 | "share.org"
43 | ],
44 | "parseDate": "20240926"
45 | }
--------------------------------------------------------------------------------
/_data/lf_map.json:
--------------------------------------------------------------------------------
1 | {
2 | "ericsson": "ericsson.com",
3 | "fujitsu-limited": "fujitsu.com",
4 | "hitachi-ltd": "hitachi.com",
5 | "huawei-technologies-co-ltd": "huawei.com",
6 | "intel-corporation": "intel.com",
7 | "microsoft-corporation": "microsoft.com",
8 | "nec-corporation": "nec.com",
9 | "oracle-america-inc": "oracle.com",
10 | "qualcomm-inc": "qualcomm.com",
11 | "red-hat-inc": "redhat.com",
12 | "samsung-electronics-co-ltd": "samsung.com",
13 | "tencent-holdings-limited": "tencent.com",
14 | "accenture-global-solutions-limited": "accenture.com",
15 | "beijing-baidu-netcom-science-technology-co-ltd": "baidu.com",
16 | "cisco-systems-inc": "cisco.com",
17 | "dell-technologies": "dell.com",
18 | "google-llc": "google.com",
19 | "panasonic-holdings-corporation": "panasonic.com",
20 | "renesas-electronics-corporation": "renesas.com",
21 | "sony-group-corporation": "sony.com",
22 | "toshiba-corporation": "toshiba.com",
23 | "toyota-motor-corporation": "toyota.com",
24 | "webank-co-ltd": "webank.com"
25 | }
--------------------------------------------------------------------------------
/_data/sponsorships/aswf.json:
--------------------------------------------------------------------------------
1 | {
2 | "first": [
3 | "oscars.org",
4 | "adobe.com",
5 | "amd.com",
6 | "amazon.com",
7 | "autodesk.com",
8 | "dneg.com",
9 | "dreamworks.com",
10 | "epicgames.com",
11 | "google.com",
12 | "intel.com",
13 | "microsoft.com",
14 | "netflix.com",
15 | "nvidia.com",
16 | "samsung.com",
17 | "sonypictures.com",
18 | "disney.com",
19 | "wetafx.co.nz"
20 | ],
21 | "second": [
22 | "animallogic.com",
23 | "bolt.graphics",
24 | "caligra.com",
25 | "canonical.com",
26 | "coreweave.com",
27 | "framestore.com",
28 | "ftrack.com",
29 | "hp.com",
30 | "maxon.net",
31 | "modtechlabs.com",
32 | "otoy.com",
33 | "redhat.com",
34 | "rodeofx.com",
35 | "sidefx.com",
36 | "foundry.com",
37 | "warnerbros.com"
38 | ],
39 | "third": [
40 | "blender.org",
41 | "etcenter.org",
42 | "movielabs.com",
43 | "smpte.org",
44 | "khronos.org",
45 | "vesglobal.org"
46 | ],
47 | "parseDate": "20240926"
48 | }
--------------------------------------------------------------------------------
/_sponsorships/lfai.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: lfai
3 | commonName: LF AI Foundation
4 | fiscalHost: lf
5 | nonprofit: lf
6 | sponsorurl: https://raw.githubusercontent.com/lfai/lfai-landscape/main/landscape.yml
7 | levelurl: https://lfaidata.foundation/join/
8 | landscape: LF AI & Data Member Company
9 | levels:
10 | first:
11 | name: Premier
12 | amount: '120000'
13 | selector: ''
14 | attr: homepage_url
15 | benefits:
16 | governance: board seat
17 | advisory: voting rep on subcommittees
18 | marketing: press release
19 | second:
20 | name: General
21 | amount: '45000'
22 | amountvaries: sliding scale by number employees
23 | selector: ''
24 | attr: homepage_url
25 | benefits:
26 | governance: can run for governance board
27 | advisory: access to staff
28 | marketing: submit vendor-neutral content to blog
29 | logo: 'yes'
30 | third:
31 | name: Associate
32 | amount: '0'
33 | selector: ''
34 | attr: homepage_url
35 | benefits:
36 | logo: 'yes'
37 | ---
38 |
--------------------------------------------------------------------------------
/_sponsorships/openmainframe.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: openmainframe
3 | commonName: Open Mainframe Foundation
4 | fiscalHost: lf
5 | nonprofit: lf
6 | sponsorurl: https://raw.githubusercontent.com/openmainframeproject/omp-landscape/main/landscape.yml
7 | levelurl: https://openmainframeproject.org/about/join/
8 | landscape: Open Mainframe Project Member Company
9 | levels:
10 | first:
11 | name: Platinum
12 | amount: '50000'
13 | selector: ''
14 | attr: homepage_url
15 | benefits:
16 | governance: appoint board seat
17 | second:
18 | name: Silver
19 | amount: '20000'
20 | amountvaries: sliding scale by number employees
21 | selector: ''
22 | attr: homepage_url
23 | benefits:
24 | governance: vote for board seat
25 | logo: 'yes'
26 | academic:
27 | name: Academic Institution
28 | amount: '0'
29 | selector: ''
30 | attr: homepage_url
31 | benefits:
32 | logo: 'yes'
33 | community:
34 | name: Associate
35 | amount: '0'
36 | selector: ''
37 | attr: homepage_url
38 | benefits:
39 | logo: 'yes'
40 | ---
41 |
--------------------------------------------------------------------------------
/_sponsorships/plone.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: plone
3 | commonName: Plone
4 | nonprofit: c3
5 | staticmap: '20240212'
6 | sponsorurl: https://plone.org/foundation/sponsorship/sponsors
7 | levelurl: https://plone.org/foundation/sponsorship
8 | normalize: 'true'
9 | levels:
10 | first:
11 | name: Premium
12 | amount: '7500'
13 | amountvaries: amount varies by employee size
14 | selector: div#page-document div.sponsorCardListing:nth-of-type(1) a
15 | attr: href
16 | benefits:
17 | logo: featured on homepage
18 | sponsors:
19 | - syslab.com
20 | - enfoldsystems.com
21 | - quaivecloud.com
22 | - jazkarta.com
23 | - starzel.de
24 | second:
25 | name: Standard
26 | amount: '2500'
27 | amountvaries: amount varies by employee size
28 | selector: div#page-document div.sponsorCardListing:nth-of-type(2) div.sponsor-card
29 | a
30 | attr: href
31 | benefits:
32 | logo: 'yes'
33 | sponsors:
34 | - cloud19.at
35 | - kombinat.at
36 | - kitconcept.com
37 | - zopyx.com
38 | - thomasschorr.de
39 | - redturtle.it
40 | ---
41 |
--------------------------------------------------------------------------------
/_sponsorships/postgresql.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: postgresql
3 | commonName: PostgreSQL
4 | fiscalHost: spi
5 | nonprofit: c3
6 | staticmap: '20240112'
7 | sponsorurl: https://www.postgresql.org/about/financial/
8 | levelurl: https://www.postgresql.org/about/financial/
9 | normalize: 'true'
10 | comment: Postgresql uses SPI fiscal hosting; note this only covers part of the Postgresql
11 | world
12 | levels:
13 | first:
14 | name: Benefactor
15 | amount: '20000'
16 | benefits:
17 | logo: 'yes'
18 | second:
19 | name: Patron
20 | amount: '10000'
21 | benefits:
22 | logo: 'yes'
23 | third:
24 | name: Supporter
25 | amount: '5000'
26 | benefits:
27 | logo: 'yes'
28 | sponsors:
29 | - xata.io
30 | fourth:
31 | name: Friend
32 | amount: '2500'
33 | benefits:
34 | logo: 'yes'
35 | firstinkind:
36 | name: Server Sponsor
37 | amount: '1000'
38 | benefits:
39 | logo: 'yes'
40 | sponsors:
41 | - amazon.com
42 | - rackspace.com
43 | - conova.com
44 | - redpill-linpro.com
45 | - enterprisedb.com
46 | ---
47 |
--------------------------------------------------------------------------------
/_sponsorships/gentoo.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: gentoo
3 | commonName: Gentoo
4 | nonprofit: c3
5 | staticmap: '20240212'
6 | sponsorurl: https://gentoo.org/inside-gentoo/sponsors/
7 | levelurl: https://gentoo.org/inside-gentoo/sponsors/
8 | normalize: 'true'
9 | comment: 'Note: Gentoo doesn''t list specific level amounts, so cash value is estimated.'
10 | levels:
11 | firstinkind:
12 | name: Premium
13 | amount: '5000'
14 | benefits:
15 | logo: 'yes'
16 | sponsors:
17 | - osuosl.org
18 | - bytemark.co.uk
19 | - 7l.com
20 | - top-ix.org
21 | - fastbull.org
22 | - dedicatednow.com
23 | - hotelkatalog24.de
24 | - numberly.com
25 | - leaseweb.com
26 | - hetzner.com
27 | - cdn77.com
28 | - vsys.host
29 | - hp.com
30 | - eng.mephi.ru
31 | secondinkind:
32 | name: Specific Donations
33 | amount: '1000'
34 | benefits:
35 | logo: 'yes'
36 | sponsors:
37 | - nitrokey.com
38 | - imgtec.com
39 | - opengear.com
40 | - nvidia.com
41 | - amigaforever.com
42 | - ostc.com
43 | - jetbrains.com
44 | - genesi.lu
45 | - datarescue.com
46 | ---
47 |
--------------------------------------------------------------------------------
/_data/commercial.csv:
--------------------------------------------------------------------------------
1 | identifier,legalName,website,softwareType,wikidataId,projectsNotable,description
2 | chef,Progress Chef,https://www.chef.io/,devops,Q24479,Chef; Progress,"Progress Chef is the new Chef Software, Inc., main driver of the Chef line of defops tools."
3 | redhat,"Red Hat, Inc.",https://www.redhat.com/,distro,Q485593,RHEL; Fedora,Red Hat Enterprise Linux (RHEL) is the commercially supported version built atop the open source Fedora project.
4 | docker,"Docker, Inc.",https://www.docker.com/,container,Q21892650,Docker,Docker has always been a commerical company with a number of open source provided tools.
5 | mozillacorp,Mozilla Corporation,https://www.mozilla.org/,browser,Q169925,Firefox,"Mozilla Corporation is a for-profit, wholly owned subsidiary of the Mozilla Foundation, a 501(c)3 non-profit."
6 | mariadb,MariaDB plc,https://mariadb.com/,database,Q787177,MariaDB,MariaDB plc is the current publicly traded commercial company building atop the open source MariaDB SQL database.
7 | suse,SUSE Software Solutions Germany GmbH,https://www.suse.com/,distro,Q14594782,SUSE Linux Enterprise; openSUSE,SUSE supports commercial Linux distros atop the openSUSE project.
--------------------------------------------------------------------------------
/_foundations/kuali.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: kuali
3 | commonName: Kuali
4 | legalName: Kuali Foundation Inc.
5 | description:
6 | contacturl:
7 | website: https://www.kuali.co/about
8 | foundingDate: '2006'
9 | dissolutionDate: '2023'
10 | addressCountry: US
11 | addressRegion: IL
12 | newProjects:
13 | softwareType: education
14 | wikidataId: Q6441065
15 | boardSize:
16 | boardType:
17 | boardurl:
18 | teamurl:
19 | missionurl:
20 | bylawsurl:
21 | numberOfEmployees:
22 | governanceOrg:
23 | governanceTech:
24 | projectsNotable:
25 | projectsList:
26 | projectsServices:
27 | eventurl:
28 | nonprofitStatus: Nonprofit501c3
29 | taxID: 20-5118023
30 | taxIDLocal:
31 | budgetUsd:
32 | budgetYear:
33 | budgeturl:
34 | budgetTransparent:
35 | funding:
36 | donateurl:
37 | sponsorurl:
38 | sponsorList:
39 | sponsorships:
40 | licenses:
41 | claPolicy:
42 | securityurl:
43 | ethicsPolicy:
44 | conducturl:
45 | conductEvents:
46 | conductSource:
47 | conductLinked:
48 | diversityPolicy:
49 | diversityDescription:
50 | brandPrimary:
51 | brandSecondary:
52 | brandReg:
53 | brandPolicy:
54 | brandUse:
55 | brandComments:
56 | logo:
57 | logoReg:
58 | subOrganization:
59 | ---
60 |
61 |
--------------------------------------------------------------------------------
/_data/research/drupal-credits.csv:
--------------------------------------------------------------------------------
1 | name,url,notes,year,sponsored,mixed,volunteer
2 | Credit report 2015-2016,https://dri.es/who-sponsors-drupal-development,First year of contribution credits program meant many credits weren't marked at all (and are assumed mixed).,2016,39%,51%,10%
3 | Credit report 2016-2017,https://dri.es/who-sponsors-drupal-development-2017,"Approximately 28% of commits don't have credit data, so may be counted as mixed.",2017,46%,43%,11%
4 | Credit report 2017-2018,https://dri.es/who-sponsors-drupal-development-2018,"Approx 25% of credits are unmarked, and may be counted as mixed.",2018,49%,39%,12%
5 | Credit report 2018-2019,https://dri.es/who-sponsors-drupal-development-2019,,2019,55%,29%,16%
6 | Credit report 2019-2020,https://dri.es/who-sponsors-drupal-development-2020,,2020,69%,16%,15%
7 | Credit report 2020-2021,https://dri.es/who-sponsors-drupal-development-2021,Links to all past reports,2021,68%,16%,16%
8 | Contribution Credit overview page,https://www.drupal.org/drupalorg/contribution-credit,,,,,
9 | Original description and format for Drupal credit system,https://dri.es/a-method-for-giving-credit-to-organizations-that-contribute-code-to-open-source,,,,,
--------------------------------------------------------------------------------
/_foundations/olpc.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: olpc
3 | commonName: OLPC
4 | legalName: One Laptop Per Child Association Inc.
5 | description:
6 | contacturl:
7 | website: https://laptop.org
8 | foundingDate:
9 | addressCountry: US
10 | addressRegion: FL
11 | newProjects:
12 | softwareType:
13 | wikidataId: Q842120
14 | boardSize:
15 | boardType:
16 | boardurl:
17 | teamurl:
18 | missionurl:
19 | bylawsurl:
20 | numberOfEmployees:
21 | governanceOrg:
22 | governanceTech:
23 | projectsNotable:
24 | projectsList:
25 | projectsServices:
26 | eventurl:
27 | nonprofitStatus: Nonprofit501c3
28 | taxID: 46-4736052
29 | taxIDLocal:
30 | budgetUsd:
31 | budgetYear:
32 | budgeturl:
33 | budgetTransparent:
34 | funding:
35 | donateurl: https://laptop.org/make-a-donation/?cause_id=8112
36 | sponsorurl:
37 | sponsorList:
38 | sponsorships:
39 | licenses:
40 | claPolicy:
41 | securityurl:
42 | ethicsPolicy:
43 | conducturl:
44 | conductEvents:
45 | conductSource:
46 | conductLinked:
47 | diversityPolicy:
48 | diversityDescription:
49 | brandPrimary:
50 | brandSecondary:
51 | brandReg:
52 | brandPolicy:
53 | brandUse:
54 | brandComments:
55 | logo:
56 | logoReg:
57 | subOrganization:
58 | ---
59 |
60 |
--------------------------------------------------------------------------------
/_layouts/research.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | ---
4 |
5 | {{ content }}
6 |
7 | Jump to: Foundations To Research, Corporate FOSS Contributor Funds
8 |
9 |
10 | Foundations To Research
11 | There are a number of other interesting FOSS legal organizations we'd like help adding to the directory.
12 | {% assign csvtable = site.data.research.foundations-to-add %}
13 | {% include csvtable.html %}
14 |
15 |
16 |
17 | Corporate FOSS Contributor Funds
18 | A number of companies have announced FOSS Contributor Funds, which allow employees to direct some corporate funding to specific FOSS projects. Can we model these programs, and how would we store the data? Are there other similarly organized corporate programs?
19 | {% assign csvtable = site.data.research.corp-oss-funds %}
20 | {% include csvtable.html %}
21 |
22 |
--------------------------------------------------------------------------------
/_foundations/isc.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: isc
3 | commonName: ISC
4 | legalName: Internet Systems Consortium, Inc.
5 | description:
6 | contacturl:
7 | website: https://www.isc.org/
8 | foundingDate: 2004
9 | addressCountry: US
10 | addressRegion: NH
11 | newProjects:
12 | softwareType: network
13 | wikidataId: Q1668008
14 | boardSize: 4
15 | boardType:
16 | boardurl: https://www.isc.org/team/#Board
17 | teamurl:
18 | missionurl:
19 | bylawsurl:
20 | numberOfEmployees:
21 | governanceOrg:
22 | governanceTech:
23 | projectsNotable:
24 | projectsList:
25 | projectsServices:
26 | eventurl:
27 | nonprofitStatus: Nonprofit501c3
28 | taxID: 20-0141248
29 | taxIDLocal:
30 | budgetUsd:
31 | budgetYear:
32 | budgeturl:
33 | budgetTransparent:
34 | funding:
35 | donateurl:
36 | sponsorurl:
37 | sponsorList:
38 | sponsorships:
39 | licenses:
40 | claPolicy:
41 | securityurl:
42 | ethicsPolicy:
43 | conducturl: https://www.isc.org/conductreporting/
44 | conductEvents:
45 | conductSource:
46 | conductLinked: footer
47 | diversityPolicy:
48 | diversityDescription:
49 | brandPrimary:
50 | brandSecondary:
51 | brandReg:
52 | brandPolicy:
53 | brandUse:
54 | brandComments:
55 | logo:
56 | logoReg:
57 | subOrganization:
58 | ---
59 |
60 |
--------------------------------------------------------------------------------
/_sponsorships/llvm.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: llvm
3 | commonName: LLVM Foundation
4 | nonprofit: c3
5 | sponsorurl: https://foundation.llvm.org/docs/sponsors/
6 | levelurl: https://foundation.llvm.org/documents/sponsorship/LLVMFoundation-Sponsorship-20190802.pdf
7 | normalize: 'true'
8 | comment: CSS is not complete; gold has multiple following divs before next tier
9 | levels:
10 | first:
11 | name: diamond
12 | amount: '500000'
13 | selector: h2#diamond-sponsors + div a
14 | attr: href
15 | benefits:
16 | events: logo at event receptions; 10 event tickets
17 | second:
18 | name: platinum
19 | amount: '100000'
20 | selector: h2#platinum-sponsors + div a
21 | attr: href
22 | benefits:
23 | events: significant event visibility; 7 event tickets
24 | third:
25 | name: gold
26 | amount: '25000'
27 | selector: h2#gold-sponsors + div a
28 | attr: href
29 | benefits:
30 | events: additional event visibility; 4 event tickets
31 | fourth:
32 | name: supporter
33 | amount: '2500'
34 | selector: h2#corporate-supporters + div a
35 | attr: href
36 | benefits:
37 | advisory: seat on advisory committee
38 | events: 1 event discount
39 | logo: 'yes'
40 | ---
41 |
--------------------------------------------------------------------------------
/_data/sponsorships/llvm.json:
--------------------------------------------------------------------------------
1 | {
2 | "error": "ERROR: parse_sponsorship(https://foundation.llvm.org/docs/sponsors/): 404 Not Found\n\n/Users/curcuru/.rubies/ruby-3.3.0/lib/ruby/3.3.0/open-uri.rb:376:in `open_http'\n\t/Users/curcuru/.rubies/ruby-3.3.0/lib/ruby/3.3.0/open-uri.rb:770:in `buffer_open'\n\t/Users/curcuru/.rubies/ruby-3.3.0/lib/ruby/3.3.0/open-uri.rb:220:in `block in open_loop'\n\t/Users/curcuru/.rubies/ruby-3.3.0/lib/ruby/3.3.0/open-uri.rb:218:in `catch'\n\t/Users/curcuru/.rubies/ruby-3.3.0/lib/ruby/3.3.0/open-uri.rb:218:in `open_loop'\n\t/Users/curcuru/.rubies/ruby-3.3.0/lib/ruby/3.3.0/open-uri.rb:158:in `open_uri'\n\t/Users/curcuru/.rubies/ruby-3.3.0/lib/ruby/3.3.0/open-uri.rb:750:in `open'\n\t/Users/curcuru/.rubies/ruby-3.3.0/lib/ruby/3.3.0/open-uri.rb:29:in `open'\n\tassets/ruby/sponsor_utils.rb:198:in `parse_sponsorship'\n\tassets/ruby/sponsor_utils.rb:247:in `process_sponsorship'\n\tassets/ruby/sponsor_utils.rb:260:in `block in process_sponsorships'\n\tassets/ruby/sponsor_utils.rb:259:in `each'\n\tassets/ruby/sponsor_utils.rb:259:in `process_sponsorships'\n\tassets/ruby/sponsor_utils.rb:279:in `process_all_sponsorships'\n\tassets/ruby/sponsor_utils.rb:353:in `'\n\tassets/ruby/sponsor_utils.rb:2:in `'",
3 | "parseDate": "20240926"
4 | }
--------------------------------------------------------------------------------
/_foundations/tug.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: tug
3 | commonName: TeX Users Group
4 | legalName: TeX Users Group
5 | description:
6 | contacturl:
7 | website: https://tug.org
8 | foundingDate:
9 | addressCountry: US
10 | addressRegion: OR
11 | newProjects:
12 | softwareType:
13 | wikidataId:
14 | boardSize: '15'
15 | boardType: elected
16 | boardurl: https://tug.org/board.html
17 | teamurl:
18 | missionurl: https://tug.org/aims_ben.html
19 | bylawsurl: https://tug.org/bylaws/
20 | numberOfEmployees:
21 | governanceOrg:
22 | governanceTech:
23 | projectsNotable:
24 | projectsList:
25 | projectsServices:
26 | eventurl: https://tug.org/meetings.html
27 | nonprofitStatus: Nonprofit501c3
28 | taxID: 22-2868942
29 | taxIDLocal:
30 | budgetUsd:
31 | budgetYear:
32 | budgeturl:
33 | budgetTransparent:
34 | funding:
35 | donateurl: https://tug.org/donate.html
36 | sponsorurl: https://tug.org/instmem.html
37 | sponsorList:
38 | sponsorships:
39 | licenses:
40 | claPolicy:
41 | securityurl:
42 | ethicsPolicy:
43 | conducturl:
44 | conductEvents:
45 | conductSource:
46 | conductLinked:
47 | diversityPolicy:
48 | diversityDescription:
49 | brandPrimary:
50 | brandSecondary:
51 | brandReg:
52 | brandPolicy:
53 | brandUse:
54 | brandComments:
55 | logo:
56 | logoReg:
57 | subOrganization:
58 | ---
59 |
60 |
--------------------------------------------------------------------------------
/_foundations/pculture.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: pculture
3 | commonName: Participatory Culture Foundation
4 | legalName: Participatory Culture Foundation
5 | description:
6 | contacturl: https://pculture.org/contact-pcf
7 | website: https://pculture.org/
8 | foundingDate:
9 | addressCountry: US
10 | addressRegion: MA
11 | newProjects:
12 | softwareType:
13 | wikidataId: Q1572021
14 | boardSize:
15 | boardType:
16 | boardurl: https://pculture.org/about-pcf
17 | teamurl: https://pculture.org/about-pcf
18 | missionurl:
19 | bylawsurl:
20 | numberOfEmployees:
21 | governanceOrg:
22 | governanceTech:
23 | projectsNotable:
24 | projectsList:
25 | projectsServices:
26 | eventurl:
27 | nonprofitStatus: Nonprofit501c3
28 | taxID: 20-2630593
29 | taxIDLocal:
30 | budgetUsd:
31 | budgetYear:
32 | budgeturl:
33 | budgetTransparent:
34 | funding:
35 | donateurl:
36 | sponsorurl:
37 | sponsorList:
38 | sponsorships:
39 | licenses:
40 | claPolicy:
41 | securityurl: https://pculture.org/security
42 | ethicsPolicy:
43 | conducturl:
44 | conductEvents:
45 | conductSource:
46 | conductLinked:
47 | diversityPolicy:
48 | diversityDescription:
49 | brandPrimary:
50 | brandSecondary:
51 | brandReg:
52 | brandPolicy:
53 | brandUse:
54 | brandComments:
55 | logo:
56 | logoReg:
57 | subOrganization:
58 | ---
59 |
60 |
--------------------------------------------------------------------------------
/_foundations/xiph.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: xiph
3 | commonName: Xiph.org
4 | legalName: XIPH ORG Foundation
5 | description:
6 | contacturl: https://xiph.org/contact/
7 | website: https://xiph.org
8 | foundingDate:
9 | addressCountry: US
10 | addressRegion: MA
11 | newProjects:
12 | softwareType:
13 | wikidataId: Q576550
14 | boardSize:
15 | boardType:
16 | boardurl: https://wiki.xiph.org/AdminProcesses
17 | teamurl:
18 | missionurl:
19 | bylawsurl:
20 | numberOfEmployees:
21 | governanceOrg:
22 | governanceTech:
23 | projectsNotable:
24 | projectsList:
25 | projectsServices:
26 | eventurl:
27 | nonprofitStatus: Nonprofit501c3
28 | taxID: 65-1145050
29 | taxIDLocal:
30 | budgetUsd:
31 | budgetYear:
32 | budgeturl:
33 | budgetTransparent:
34 | funding:
35 | donateurl: https://xiph.org/donate/
36 | sponsorurl:
37 | sponsorList:
38 | sponsorships:
39 | licenses:
40 | claPolicy:
41 | securityurl:
42 | ethicsPolicy:
43 | conducturl: https://xmpp.org/extensions/xep-0458.html
44 | conductEvents:
45 | conductSource:
46 | conductLinked:
47 | conductReport: committee, board, or individual
48 | diversityPolicy:
49 | diversityDescription:
50 | brandPrimary:
51 | brandSecondary:
52 | brandReg:
53 | brandPolicy:
54 | brandUse:
55 | brandComments:
56 | logo:
57 | logoReg:
58 | subOrganization:
59 | ---
60 |
61 |
--------------------------------------------------------------------------------
/_sponsorships/cd.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: cd
3 | commonName: CD Foundation
4 | fiscalHost: lf
5 | nonprofit: lf
6 | sponsorurl: https://raw.githubusercontent.com/cdfoundation/cdf-landscape/main/landscape.yml
7 | levelurl: https://cd.foundation/members/join/
8 | landscape: CDF Members
9 | levels:
10 | first:
11 | name: Premier
12 | amount: '100000'
13 | selector: ''
14 | attr: homepage_url
15 | benefits:
16 | governance: appoint board seat
17 | marketing: press release
18 | second:
19 | name: General
20 | amount: '30000'
21 | amountvaries: sliding scale by number employees
22 | selector: ''
23 | attr: homepage_url
24 | benefits:
25 | governance: vote for board seat
26 | advisory: expanded access to council, jobs postings
27 | third:
28 | name: End User
29 | amount: '15000'
30 | amountvaries: sliding scale by number employees
31 | selector: ''
32 | attr: homepage_url
33 | benefits:
34 | advisory: access to end user council
35 | services: access to job posting board
36 | events: sponsorship discounts
37 | logo: 'yes'
38 | community:
39 | name: Associate
40 | amount: '0'
41 | selector: ''
42 | attr: homepage_url
43 | benefits:
44 | logo: 'yes'
45 | ---
46 |
--------------------------------------------------------------------------------
/_foundations/openrobotics.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: openrobotics
3 | commonName: Open Robotics
4 | legalName: Open Source Robotics Foundation Inc
5 | description:
6 | contacturl: https://openrobotics.org/contact
7 | website: https://www.openrobotics.org
8 | foundingDate:
9 | addressCountry: US
10 | addressRegion:
11 | newProjects:
12 | softwareType:
13 | wikidataId: Q104880358
14 | boardSize: '5'
15 | boardType:
16 | boardurl: https://www.openrobotics.org/foundation
17 | teamurl: https://www.openrobotics.org/foundation
18 | missionurl:
19 | bylawsurl:
20 | numberOfEmployees:
21 | governanceOrg:
22 | governanceTech:
23 | projectsNotable:
24 | projectsList:
25 | projectsServices:
26 | eventurl:
27 | nonprofitStatus: Nonprofit501c3
28 | taxID: 45-5230545
29 | taxIDLocal:
30 | budgetUsd:
31 | budgetYear:
32 | budgeturl:
33 | budgetTransparent:
34 | funding:
35 | donateurl: https://openrobotics.org/donate
36 | sponsorurl:
37 | sponsorList:
38 | sponsorships:
39 | licenses:
40 | claPolicy:
41 | securityurl:
42 | ethicsPolicy:
43 | conducturl:
44 | conductEvents:
45 | conductSource:
46 | conductLinked:
47 | diversityPolicy:
48 | diversityDescription:
49 | brandPrimary:
50 | brandSecondary:
51 | brandReg:
52 | brandPolicy:
53 | brandUse:
54 | brandComments:
55 | logo:
56 | logoReg:
57 | subOrganization:
58 | ---
59 |
60 |
--------------------------------------------------------------------------------
/_foundations/fsfse.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: fsfse
3 | commonName: Free Software Support Network
4 | legalName: Free Software Support Network
5 | description:
6 | contacturl:
7 | website: http://freesoftwaresupport.net/
8 | foundingDate:
9 | dissolutionDate: 2024 or earlier
10 | addressCountry: DE
11 | addressRegion:
12 | newProjects: 'yes'
13 | softwareType: various
14 | wikidataId:
15 | boardSize:
16 | boardType:
17 | boardurl:
18 | teamurl:
19 | missionurl:
20 | bylawsurl:
21 | numberOfEmployees:
22 | governanceOrg:
23 | governanceTech:
24 | projectsNotable:
25 | projectsList:
26 | projectsServices:
27 | eventurl:
28 | nonprofitStatus: Nonprofit501c3
29 | taxID:
30 | taxIDLocal:
31 | budgetUsd:
32 | budgetYear:
33 | budgeturl:
34 | budgetTransparent:
35 | funding:
36 | donateurl:
37 | sponsorurl:
38 | sponsorList:
39 | sponsorships:
40 | licenses:
41 | claPolicy:
42 | securityurl:
43 | ethicsPolicy:
44 | conducturl:
45 | conductEvents:
46 | conductSource:
47 | conductLinked:
48 | diversityPolicy:
49 | diversityDescription:
50 | brandPrimary:
51 | brandSecondary:
52 | brandReg:
53 | brandPolicy:
54 | brandUse:
55 | brandComments:
56 | logo:
57 | logoReg:
58 | subOrganization:
59 | ---
60 |
61 | FSSN is a 501(c)(3) not-for-profit organization dedicated to providing assistance to Free and Open Source (FOSS) projects.
62 |
--------------------------------------------------------------------------------
/_foundations/signal.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: signal
3 | commonName: Signal
4 | legalName: Signal Foundation
5 | description:
6 | contacturl:
7 | website: https://signalfoundation.org/
8 | foundingDate:
9 | addressCountry: US
10 | addressRegion:
11 | newProjects: 'no'
12 | softwareType: messaging
13 | wikidataId: Q55074807
14 | boardSize: 5
15 | boardType:
16 | boardurl: https://signalfoundation.org/
17 | teamurl:
18 | missionurl:
19 | bylawsurl:
20 | numberOfEmployees: 50
21 | governanceOrg:
22 | governanceTech:
23 | projectsNotable:
24 | projectsList:
25 | projectsServices:
26 | eventurl:
27 | nonprofitStatus: Nonprofit501c3
28 | taxID: 82-4506840
29 | taxIDLocal:
30 | budgetUsd: 50M
31 | budgetYear: 2023
32 | budgeturl: https://signal.org/blog/signal-is-expensive/
33 | budgetTransparent:
34 | funding:
35 | donateurl: https://signal.org/donate/
36 | sponsorurl:
37 | sponsorList:
38 | sponsorships:
39 | licenses: AGPL-3.0-only
40 | claPolicy: https://signal.org/cla/
41 | securityurl:
42 | ethicsPolicy:
43 | conducturl:
44 | conductEvents:
45 | conductSource:
46 | conductLinked:
47 | diversityPolicy:
48 | diversityDescription:
49 | brandPrimary:
50 | brandSecondary:
51 | brandReg: true
52 | brandPolicy: https://www.signal.org/legal/
53 | brandUse:
54 | brandComments:
55 | logo:
56 | logoReg:
57 | subOrganization:
58 | ---
59 |
--------------------------------------------------------------------------------
/_foundations/haskell.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: haskell
3 | commonName: Haskell
4 | legalName: Haskell-org Inc.
5 | description:
6 | contacturl:
7 | website: https://www.haskell.org/
8 | foundingDate: 2015
9 | addressCountry: US
10 | addressRegion: DE
11 | newProjects:
12 | softwareType: language
13 | wikidataId:
14 | boardSize: 15
15 | boardType:
16 | boardurl: https://www.haskell.org/haskell-org-committee/
17 | teamurl:
18 | missionurl:
19 | bylawsurl:
20 | numberOfEmployees:
21 | governanceOrg:
22 | governanceTech:
23 | projectsNotable:
24 | projectsList: https://haskell.foundation/projects/
25 | projectsServices:
26 | eventurl:
27 | nonprofitStatus: Nonprofit501c3
28 | taxID: 47-5236502
29 | taxIDLocal:
30 | budgetUsd:
31 | budgetYear:
32 | budgeturl:
33 | budgetTransparent:
34 | funding:
35 | donateurl:
36 | sponsorurl: https://haskell.foundation/donations/
37 | sponsorList:
38 | sponsorships:
39 | - haskell
40 | licenses:
41 | claPolicy:
42 | securityurl:
43 | ethicsPolicy:
44 | conducturl: https://haskell.foundation/guidelines-for-respectful-communication/
45 | conductEvents:
46 | conductSource:
47 | conductLinked:
48 | diversityPolicy:
49 | diversityDescription:
50 | brandPrimary:
51 | brandSecondary:
52 | brandReg:
53 | brandPolicy:
54 | brandUse:
55 | brandComments:
56 | logo:
57 | logoReg:
58 | subOrganization:
59 | ---
60 |
61 |
--------------------------------------------------------------------------------
/_sponsorships/lfenergy.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: lfenergy
3 | commonName: LF Energy Foundation
4 | fiscalHost: lf
5 | nonprofit: lf
6 | sponsorurl: https://raw.githubusercontent.com/lf-energy/lfenergy-landscape/main/landscape.yml
7 | levelurl: https://lfenergy.org/become-a-member/
8 | landscape: LF Energy Member
9 | levels:
10 | first:
11 | name: Strategic
12 | amount: '170000'
13 | selector: ''
14 | attr: homepage_url
15 | benefits:
16 | governance: one board seat; one technical council seat
17 | advisory: appoint representative to subcommittees; access to staff
18 | events: additional event invites and discounts
19 | marketing: press release; various other featured blog/webinar posts
20 | second:
21 | name: General
22 | amount: '70000'
23 | amountvaries: sliding scale by number employees
24 | selector: ''
25 | attr: homepage_url
26 | benefits:
27 | governance: vote on governance board; must be LF foundation member
28 | events: access Member summit; event discounts
29 | services: 10 seats training subscriptions
30 | marketing: provide blog post
31 | third:
32 | name: Associate
33 | amount: '0'
34 | selector: ''
35 | attr: homepage_url
36 | benefits:
37 | events: event discounts
38 | logo: 'yes'
39 | ---
40 |
--------------------------------------------------------------------------------
/_foundations/idcommons.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: idcommons
3 | commonName: Identity Commons
4 | legalName: Identity Commons Inc
5 | description:
6 | contacturl: https://www.idcommons.org/organization/contact-us/
7 | website: https://idcommons.net
8 | foundingDate: '2007-05-09'
9 | dissolutionDate: 2017 or earlier
10 | addressCountry: US
11 | addressRegion: FL
12 | newProjects:
13 | softwareType:
14 | wikidataId:
15 | boardSize:
16 | boardType:
17 | boardurl: https://www.idcommons.org/about/people/
18 | teamurl:
19 | missionurl:
20 | bylawsurl:
21 | numberOfEmployees:
22 | governanceOrg:
23 | governanceTech:
24 | projectsNotable:
25 | projectsList: https://www.idcommons.org/working-groups/
26 | projectsServices:
27 | eventurl: https://www.idcommons.org/events/
28 | nonprofitStatus: Nonprofit501c6
29 | taxID: 26-1643504
30 | taxIDLocal:
31 | budgetUsd:
32 | budgetYear:
33 | budgeturl:
34 | budgetTransparent:
35 | funding:
36 | donateurl:
37 | sponsorurl:
38 | sponsorList:
39 | sponsorships:
40 | licenses:
41 | claPolicy:
42 | securityurl:
43 | ethicsPolicy:
44 | conducturl:
45 | conductEvents:
46 | conductSource:
47 | conductLinked:
48 | diversityPolicy:
49 | diversityDescription:
50 | brandPrimary:
51 | brandSecondary:
52 | brandReg:
53 | brandPolicy:
54 | brandUse:
55 | brandComments:
56 | logo:
57 | logoReg:
58 | subOrganization:
59 | ---
60 |
61 |
--------------------------------------------------------------------------------
/_foundations/llvm.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: llvm
3 | commonName: LLVM
4 | legalName: LLVM Foundation
5 | description:
6 | contacturl:
7 | website: https://foundation.llvm.org/
8 | foundingDate:
9 | addressCountry: US
10 | addressRegion: CA
11 | newProjects:
12 | softwareType: compiler
13 | wikidataId:
14 | boardSize: 9
15 | boardType:
16 | boardurl:
17 | teamurl:
18 | missionurl:
19 | bylawsurl: https://foundation.llvm.org/documents/other/LLVMF-Bylaws.pdf
20 | numberOfEmployees:
21 | governanceOrg:
22 | governanceTech:
23 | projectsNotable:
24 | projectsList:
25 | projectsServices:
26 | eventurl:
27 | nonprofitStatus: Nonprofit501c3
28 | taxID: 47-1136085
29 | taxIDLocal:
30 | budgetUsd:
31 | budgetYear:
32 | budgeturl:
33 | budgetTransparent:
34 | funding:
35 | donateurl:
36 | sponsorurl: https://foundation.llvm.org/docs/sponsors/
37 | sponsorList:
38 | sponsorships:
39 | licenses:
40 | claPolicy:
41 | securityurl:
42 | ethicsPolicy:
43 | conducturl: https://foundation.llvm.org/docs/code-of-conduct/
44 | conductEvents:
45 | conductSource:
46 | - covenant
47 | conductLinked: footer
48 | conductReport: email; committee; conduct@
49 | diversityPolicy:
50 | diversityDescription:
51 | brandPrimary:
52 | brandSecondary:
53 | brandReg:
54 | brandPolicy:
55 | brandUse:
56 | brandComments:
57 | logo:
58 | logoReg:
59 | subOrganization:
60 | ---
61 |
62 |
--------------------------------------------------------------------------------
/_foundations/sflc.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: sflc
3 | commonName: Software Freedom Law Center
4 | legalName: Software Freedom Law Center
5 | description:
6 | contacturl:
7 | website: https://www.softwarefreedom.org/
8 | foundingDate:
9 | addressCountry: US
10 | addressRegion: NY
11 | newProjects:
12 | softwareType: education
13 | wikidataId: Q1394821
14 | boardSize:
15 | boardType:
16 | boardurl:
17 | teamurl:
18 | missionurl:
19 | bylawsurl:
20 | numberOfEmployees:
21 | governanceOrg: https://www.softwarefreedom.org/about/team/
22 | governanceTech:
23 | projectsNotable:
24 | projectsList:
25 | projectsServices:
26 | eventurl:
27 | nonprofitStatus: Nonprofit501c3
28 | taxID: 41-2165986
29 | taxIDLocal: 21-15-53
30 | budgetUsd:
31 | budgetYear:
32 | budgeturl:
33 | budgetTransparent:
34 | funding:
35 | donateurl:
36 | sponsorurl:
37 | sponsorList:
38 | sponsorships:
39 | licenses:
40 | claPolicy:
41 | securityurl:
42 | ethicsPolicy:
43 | conducturl:
44 | conductEvents:
45 | conductSource:
46 | conductLinked:
47 | diversityPolicy:
48 | diversityDescription:
49 | brandPrimary: SFLC
50 | brandSecondary:
51 | brandReg: 'no'
52 | brandPolicy:
53 | brandUse:
54 | brandComments:
55 | logo:
56 | logoReg: 'no'
57 | subOrganization:
58 | ---
59 |
60 | The Software Freedom Law Center provides pro-bono legal services to developers of Free, Libre, and Open Source Software.
61 |
--------------------------------------------------------------------------------
/_sponsorships/finos.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: finos
3 | commonName: FINOS Foundation
4 | fiscalHost: lf
5 | nonprofit: lf
6 | sponsorurl: https://www.finos.org/members
7 | xsponsorurl: https://raw.githubusercontent.com/finos/finos-landscape/master/landscape.yml
8 | levelurl: https://www.finos.org/membership-benefits
9 | xlandscape: FINOS Members - note landscape isn't actually used for members!
10 | normalize: 'true'
11 | levels:
12 | first:
13 | name: Platinum
14 | amount: '200000'
15 | selector: div#platinum div.member_item a
16 | attr: href
17 | benefits:
18 | governance: appoint board seat
19 | second:
20 | name: Gold
21 | amount: '50000'
22 | selector: div#gold div.member_item a
23 | attr: href
24 | benefits:
25 | governance: vote for gold board seat
26 | logo: 'yes'
27 | third:
28 | name: Silver
29 | amount: '30000'
30 | amountvaries: sliding scale by number employees
31 | selector: div#silver div.member_item a
32 | attr: href
33 | benefits:
34 | governance: vote for silver board seat
35 | events: access at events
36 | logo: 'yes'
37 | community:
38 | name: Associate
39 | amount: '0'
40 | selector: div#notfound this section doesn't have an id is just in the silver section
41 | attr: href
42 | benefits:
43 | logo: 'yes'
44 | ---
45 |
--------------------------------------------------------------------------------
/_foundations/scale.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: scale
3 | commonName: SCALE
4 | legalName: Linux Expo of Southern California
5 | description:
6 | contacturl: https://socallinuxexpo.org/scale/21x/contact-us
7 | website: https://www.socallinuxexpo.org/
8 | foundingDate:
9 | addressCountry: US
10 | addressRegion: CA
11 | newProjects:
12 | softwareType:
13 | wikidataId:
14 | boardSize:
15 | boardType:
16 | boardurl:
17 | teamurl:
18 | missionurl:
19 | bylawsurl:
20 | numberOfEmployees:
21 | governanceOrg:
22 | governanceTech:
23 | projectsNotable:
24 | projectsList:
25 | projectsServices:
26 | eventurl:
27 | nonprofitStatus: Nonprofit501c3
28 | taxID: 30-0109876
29 | taxIDLocal:
30 | budgetUsd:
31 | budgetYear:
32 | budgeturl:
33 | budgetTransparent:
34 | funding:
35 | donateurl:
36 | sponsorurl: https://www.socallinuxexpo.org/scale/21x/sponsors
37 | sponsorList:
38 | sponsorships:
39 | licenses:
40 | claPolicy:
41 | securityurl:
42 | ethicsPolicy:
43 | conducturl: https://socallinuxexpo.org/scale/23x/code-conduct
44 | conductEvents:
45 | conductSource:
46 | - geekfeminism
47 | conductLinked: footer
48 | diversityPolicy:
49 | diversityDescription:
50 | brandPrimary:
51 | brandSecondary:
52 | brandReg:
53 | brandPolicy:
54 | brandUse:
55 | brandComments:
56 | logo:
57 | logoReg:
58 | subOrganization:
59 | policyurl: https://socallinuxexpo.org/scale/21x/policies
60 | ---
61 |
62 |
--------------------------------------------------------------------------------
/assets/ruby/openapi_builder.rb:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env ruby
2 | module OpenapiBuilder
3 | DESCRIPTION = <<-HEREDOC
4 | OpenapiBuilder: Simplistic CI tool to update openapi bits.
5 | HEREDOC
6 | module_function
7 | require 'yaml'
8 | require 'json'
9 | require_relative 'foundation_reporter.rb'
10 |
11 | # Build api:_foundations/list data structure
12 | # TODO replace this with a curated aliasOf feature instead
13 | # @return hash of foundation ids => array of alternate ids
14 | def build_list(dir)
15 | data = FoundationReporter.get_yamldataset(dir)
16 | list = {}
17 | data.each do | id, hash |
18 | list[id] = []
19 | list[id] << hash['website'].sub(/^https?\:\/\/(www.)?/,'').chomp('/')
20 | cn = hash['commonName']
21 | ln = hash.fetch('legalName', nil)
22 | list[id] << cn
23 | if ln && !ln.eql?(cn)
24 | list[id] << hash['legalName']
25 | end
26 | # TODO are there any other alternate lookup methods to include?
27 | end
28 | return list
29 | end
30 |
31 | # ### #### ##### ######
32 | # Main method for command line use
33 | if __FILE__ == $PROGRAM_NAME
34 | dir = File.join(Dir.pwd, '_foundations')
35 | list = build_list(dir)
36 | File.open(File.join(dir, 'list.json'), "w") do |f|
37 | f.write(JSON.pretty_generate(list))
38 | end
39 | end
40 | end
41 |
--------------------------------------------------------------------------------
/_foundations/haiku.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: haiku
3 | commonName: Haiku
4 | legalName: Haiku, Inc.
5 | description:
6 | contacturl:
7 | website: https://www.haiku-inc.org/
8 | foundingDate: 2003
9 | addressCountry: US
10 | addressRegion: NY
11 | newProjects:
12 | softwareType: distro
13 | wikidataId:
14 | boardSize: 5
15 | boardType: elected
16 | boardurl: https://www.haiku-inc.org/about/
17 | teamurl:
18 | missionurl:
19 | bylawsurl:
20 | numberOfEmployees:
21 | governanceOrg:
22 | governanceTech:
23 | projectsNotable:
24 | projectsList:
25 | projectsServices:
26 | eventurl:
27 | nonprofitStatus: Nonprofit501c3
28 | taxID: 20-0105056
29 | taxIDLocal:
30 | budgetUsd:
31 | budgetYear:
32 | budgeturl:
33 | budgetTransparent:
34 | funding:
35 | donateurl:
36 | sponsorurl: https://www.haiku-inc.org/donate/public_sponsors/
37 | sponsorList:
38 | sponsorships:
39 | licenses: MIT
40 | claPolicy:
41 | securityurl:
42 | ethicsPolicy:
43 | conducturl:
44 | conductEvents:
45 | conductProjects:
46 | - https://www.haiku-os.org/community/ml/etiquette/
47 | conductSource:
48 | conductReport: none
49 | conductLinked:
50 | diversityPolicy:
51 | diversityDescription:
52 | brandPrimary: Haiku
53 | brandSecondary:
54 | brandReg: true
55 | brandPolicy: https://www.haiku-inc.org/trademarks/
56 | brandUse:
57 | brandComments:
58 | logo:
59 | logoReg: true
60 | subOrganization:
61 | ---
62 |
63 |
--------------------------------------------------------------------------------
/_foundations/biobricks.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: biobricks
3 | commonName: Biobricks
4 | legalName: BioBricks Foundation
5 | description:
6 | contacturl: https://biobricks.org/contact/
7 | website: https://biobricks-NOW-DOMAIN-SCAMMER.org/
8 | foundingDate:
9 | dissolutionDate: 2023 or earlier
10 | addressCountry: US
11 | addressRegion: CA
12 | newProjects:
13 | softwareType:
14 | wikidataId: Q43895568
15 | boardSize: '3'
16 | boardType:
17 | boardurl: https://biobricks.org/team-and-board/
18 | teamurl: https://biobricks.org/team-and-board/
19 | missionurl:
20 | bylawsurl:
21 | numberOfEmployees:
22 | governanceOrg:
23 | governanceTech:
24 | projectsNotable:
25 | projectsList:
26 | projectsServices:
27 | eventurl:
28 | nonprofitStatus: Nonprofit501c3
29 | taxID: 20-3310501
30 | taxIDLocal:
31 | budgetUsd:
32 | budgetYear:
33 | budgeturl:
34 | budgetTransparent:
35 | funding:
36 | donateurl: https://biobricks.org/donate/
37 | sponsorurl:
38 | sponsorList:
39 | sponsorships:
40 | licenses:
41 | claPolicy:
42 | securityurl:
43 | ethicsPolicy:
44 | conducturl:
45 | conductEvents:
46 | conductSource:
47 | conductLinked:
48 | diversityPolicy:
49 | diversityDescription:
50 | brandPrimary:
51 | brandSecondary:
52 | brandReg:
53 | brandPolicy:
54 | brandUse:
55 | brandComments:
56 | logo:
57 | logoReg:
58 | subOrganization:
59 | policyurl: https://biobricks.org/privacy-policy/
60 | ---
61 |
62 |
--------------------------------------------------------------------------------
/_pages/projects.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: Software Projects Hosted At Foundations
3 | excerpt: Partial list of key projects hosted by the major FOSS Foundations.
4 | layout: default
5 | permalink: /projects
6 | parent: Foundations Directory
7 | nav_order: 30
8 | ---
9 |
10 | Many major open source projects are hosted at some of the key FOSS Foundations, like the ASF, Linux Foundation, Software Freedom Conservancy, and more. These projects aren't individual legal entities, but may follow governance, release, financial, or other policies at their host foundation.
11 |
12 | These listings are updated on a best-effort basis, and provide just a snapshot into the kinds of projects that are hosted at just a few foundations out there today.
13 |
14 | - [Apache Software Foundation](projects-asf) projects.
15 | - Linux Foundation projects.
16 | - Eclipse Foundation projects.
17 | - Software Freedom Conservancy projects.
18 | - [NumFocus](projects-numfocus) projects.
19 | - [Software In The Public Interest](projects-spi) projects.
20 | - [Processing Foundation](projects-processingfoundation) projects.
21 |
22 | Project listings may not be current. Various helper scripts in [assets/ruby/scrapers.rb](https://github.com/Punderthings/fossfoundation/tree/main/assets/ruby/scrapers.rb) are used to semi-automate enumerating foundation projects and creating a simplified per-foundation `.csv` listing.
23 |
--------------------------------------------------------------------------------
/_includes/foundation-postamble.html:
--------------------------------------------------------------------------------
1 |
2 | {% if page.taxID %}
3 | {% assign pein = page.taxID | remove: "-" %}{% assign pp = site.data.p990[pein] %}
4 | {% if pp %}
5 |
6 | Tax Financial Data
7 | IRS determination date: {{ pp.organization.ruling_date }}
8 | NTEE Code: {{ pp.organization.ntee_code }}
9 |
10 |
Approximate financial status from
ProPublica JSON data
11 |
Tax Period:
{{ pp.organization.tax_period }}
12 |
Assets EOY:
{{ pp.organization.asset_amount }}
13 |
Revenue:
{{ pp.organization.revenue_amount }}
14 |
15 |
16 | {% endif %}
17 | {% endif %}
18 |
19 |
20 |
21 | {{ content }}
22 |
23 |
24 |
--------------------------------------------------------------------------------
/CODE_OF_CONDUCT.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: Code Of Conduct
3 | layout: default
4 | parent: About / Resources
5 | nav_order: 98
6 | ---
7 | ## Code of Conduct for Contributors
8 |
9 | This site is run by Shane Curcuru, and is meant as a resource for the world to showcase the many non-profit FOSS Foundations that help keep open source projects and communities running. Contributions, corrections, and improvements are welcomed, and must be licensable under [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0). Regular contributors may be asked to join as project maintainers.
10 |
11 | Contributors and participants in the GitHub project infrastructure are expected to be excellent to each :smiley_cat: :dog: other, and in general follow the widely-used [Contributor Covenant Code of Conduct version 2.1](https://www.contributor-covenant.org/version/2/1/code_of_conduct/) 
12 |
13 | Opening a GitHub Issue detailing any unacceptable behavior within this project is the preferred way to report problems; however if for any reason you wish to make a report privately, you may email **complete** details of the errant behavior, as well as **why** you believe the behavior is inappropriate, to shane@punderthings.com. All reports will be treated as confidentially as practical (meaning: if I get a subpoena, I may have to turn over emails).
14 |
--------------------------------------------------------------------------------
/_foundations/oisf.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: oisf
3 | commonName: Open Information Security Foundation
4 | legalName: Open Information Security Foundation
5 | description: Building community and supporting open source security technologies like Suricata.
6 | contacturl: https://oisf.net/contact/
7 | website: https://oisf.net/
8 | foundingDate:
9 | addressCountry: US
10 | addressRegion: IN
11 | newProjects:
12 | softwareType:
13 | wikidataId:
14 | boardSize: '5'
15 | boardType:
16 | boardurl: https://oisf.net/team/
17 | teamurl: https://oisf.net/team/
18 | missionurl:
19 | bylawsurl:
20 | numberOfEmployees:
21 | governanceOrg:
22 | governanceTech:
23 | projectsNotable: Suricata
24 | projectsList:
25 | projectsServices:
26 | eventurl:
27 | nonprofitStatus: Nonprofit501c3
28 | taxID: 26-3316567
29 | taxIDLocal:
30 | budgetUsd:
31 | budgetYear:
32 | budgeturl:
33 | budgetTransparent:
34 | funding:
35 | donateurl:
36 | sponsorurl: https://oisf.net/memberships/
37 | sponsorList: https://oisf.net/consortium/
38 | sponsorships:
39 | licenses: GPL
40 | claPolicy:
41 | securityurl:
42 | ethicsPolicy:
43 | conducturl: https://oisf.net/about-us/
44 | conductEvents:
45 | conductSource:
46 | conductLinked:
47 | diversityPolicy:
48 | diversityDescription:
49 | brandPrimary:
50 | brandSecondary:
51 | brandReg:
52 | brandPolicy:
53 | brandUse:
54 | brandComments:
55 | logo:
56 | logoReg:
57 | subOrganization:
58 | ---
59 |
60 |
--------------------------------------------------------------------------------
/_sponsorships/freebsd.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: freebsd
3 | commonName: FreeBSD
4 | nonprofit: c3
5 | sponsorurl: https://freebsdfoundation.org/our-donors/donors/
6 | levelurl: https://freebsdfoundation.org/our-donors/freebsd-foundation-partnership-program/
7 | normalize: 'true'
8 | levels:
9 | first:
10 | name: platinum
11 | amount: '250000'
12 | selector: div.freebsd-donors-list--partners > div.freebsd-donors-list--level >
13 | ul a
14 | attr: href
15 | benefits:
16 | governance: Monthly staff/board meeting
17 | events: Sponsorship package and 10 tickets
18 | marketing: Social mention once per month
19 | logo: 'yes'
20 | second:
21 | name: gold
22 | amount: '150000'
23 | selector: TODO none displayed yet
24 | attr: href
25 | benefits:
26 | governance: Quarterly staff/board meeting
27 | events: 2 tickets
28 | marketing: Social mention once per quarter
29 | logo: 'yes'
30 | third:
31 | name: silver
32 | amount: '100000'
33 | amountvaries: sliding scale by number employees
34 | selector: TODO none displayed yet
35 | attr: href
36 | benefits:
37 | marketing: Social mention once twice a year
38 | logo: 'yes'
39 | firstinkind:
40 | name: In Kind
41 | amount: '0'
42 | selector: TODO-requires-elementor-cruft
43 | attr: href
44 | benefits:
45 | logo: 'yes'
46 | ---
47 |
--------------------------------------------------------------------------------
/_data/sponsorships/openstreetmap.json:
--------------------------------------------------------------------------------
1 | {
2 | "first": [
3 | "tomtom.com",
4 | "microsoft.com"
5 | ],
6 | "second": [
7 | "mapbox.com",
8 | "esri.com",
9 | "facebook.com",
10 | "grab.com",
11 | "graphhopper.com",
12 | "gojek.com",
13 | "komoot.com"
14 | ],
15 | "third": [
16 | "cesiumjs.org",
17 | "radar.com",
18 | "opencagedata.com",
19 | "geofabrik.de",
20 | "nextbillion.ai",
21 | "elastic.co",
22 | "bolt.eu",
23 | "hotosm.org",
24 | "ioki.com",
25 | "regrid.com",
26 | "qgis.org",
27 | "calimoto.com"
28 | ],
29 | "fourth": [
30 | "geotab.com",
31 | "omniscale.com",
32 | "kaartgroup.com",
33 | "krick.com",
34 | "yellowmap.com",
35 | "nextgis.com",
36 | "maps.vk.com",
37 | "nwt.ai",
38 | "indrive.com",
39 | "initse.com",
40 | "rinkai.cz",
41 | "stadiamaps.com",
42 | "suse.com",
43 | "verso-optim.com",
44 | "interline.io",
45 | "esmartcontrol.com",
46 | "landclan.com"
47 | ],
48 | "fifth": [
49 | "maptoolkit.com",
50 | "locationiq.org",
51 | "discoverpassenger.com",
52 | "intevation.de",
53 | "skyhost.dk",
54 | "aisin-mobility.eu",
55 | "peakfinder.org",
56 | "safe-sky.net",
57 | "kendallcountyil.gov",
58 | "mobilitylabel.com",
59 | "cvp.at",
60 | "farmeye.ie",
61 | "btcmap.org"
62 | ],
63 | "parseDate": "20240926"
64 | }
--------------------------------------------------------------------------------
/_sponsorships/openssf.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: openssf
3 | commonName: Open SSF Foundation
4 | fiscalHost: lf
5 | nonprofit: lf
6 | sponsorurl: https://raw.githubusercontent.com/ossf/ossf-landscape/main/landscape.yml
7 | levelurl: TODO
8 | normalize: 'true'
9 | landscape: OpenSSF Members
10 | levels:
11 | first:
12 | name: Premier
13 | amount: '270000'
14 | selector: ''
15 | attr: homepage_url
16 | benefits:
17 | governance: Board seat appointment
18 | advisory: Provide rep to governing committees
19 | events: Invite to board event
20 | services: 50 seat training subscription
21 | marketing: Press release; additional marketing opportunities
22 | logo: Featured prominently
23 | second:
24 | name: General
25 | amount: '40000'
26 | amountvaries: sliding scale by number employees
27 | selector: ''
28 | attr: homepage_url
29 | benefits:
30 | governance: Vote on board member
31 | advisory: ''
32 | events: ''
33 | services: 10 seats training subscription
34 | marketing: Some PR opportunities
35 | logo: ''
36 | third:
37 | name: Associate
38 | amount: '0'
39 | selector: ''
40 | attr: homepage_url
41 | benefits:
42 | governance: Vote for associate board member
43 | advisory: ''
44 | events: ''
45 | services: ''
46 | marketing: Basic PR opportunity
47 | logo: ''
48 | ---
49 |
--------------------------------------------------------------------------------
/_foundations/oeglobal.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: oeglobal
3 | commonName: OEGlobal
4 | legalName: Open Education Global Inc
5 | description:
6 | contacturl: https://oeglobal.org/about-us/contact-us/
7 | website: https://www.oeglobal.org/
8 | foundingDate:
9 | addressCountry: US
10 | addressRegion: MA
11 | newProjects:
12 | softwareType:
13 | wikidataId: Q62073537
14 | boardSize: '14'
15 | boardType:
16 | boardurl: https://www.oeglobal.org/about-us/people-of-oeg/board-of-directors/
17 | teamurl: https://www.oeglobal.org/about-us/people-of-oeg/staff/
18 | missionurl:
19 | bylawsurl:
20 | numberOfEmployees:
21 | governanceOrg:
22 | governanceTech:
23 | projectsNotable:
24 | projectsList:
25 | projectsServices:
26 | eventurl:
27 | nonprofitStatus: Nonprofit501c3
28 | taxID: 01-0908761
29 | taxIDLocal:
30 | budgetUsd:
31 | budgetYear:
32 | budgeturl:
33 | budgetTransparent:
34 | funding:
35 | donateurl: https://www.oeglobal.org/donate/
36 | sponsorurl: https://www.oeglobal.org/about-us/members-list/
37 | sponsorList:
38 | sponsorships:
39 | licenses:
40 | claPolicy:
41 | securityurl:
42 | ethicsPolicy:
43 | conducturl:
44 | conductEvents:
45 | conductSource:
46 | conductLinked:
47 | diversityPolicy:
48 | diversityDescription:
49 | brandPrimary:
50 | brandSecondary:
51 | brandReg:
52 | brandPolicy: https://www.oeglobal.org/communication/oeglobal-brandmark-style-guide/
53 | brandUse:
54 | brandComments:
55 | logo:
56 | logoReg:
57 | subOrganization:
58 | ---
59 |
60 |
--------------------------------------------------------------------------------
/_foundations/oset.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: oset
3 | commonName: OSET
4 | legalName: OSET Institute
5 | description:
6 | contacturl: https://osetfoundation.org/contact
7 | website: https://www.osetinstitute.org
8 | foundingDate:
9 | addressCountry: US
10 | addressRegion: CA
11 | newProjects:
12 | softwareType:
13 | wikidataId: Q65566139
14 | boardSize: '12'
15 | boardType:
16 | boardurl: https://www.osetinstitute.org/who-we-are
17 | teamurl: https://www.osetinstitute.org/who-we-are
18 | missionurl: https://osetfoundation.org/our-mission
19 | bylawsurl:
20 | numberOfEmployees:
21 | governanceOrg:
22 | governanceTech:
23 | projectsNotable:
24 | projectsList:
25 | projectsServices:
26 | eventurl:
27 | nonprofitStatus: Nonprofit501c3
28 | taxID: 20-8743186
29 | taxIDLocal:
30 | budgetUsd:
31 | budgetYear:
32 | budgeturl:
33 | budgetTransparent:
34 | funding:
35 | donateurl: https://secure.anedot.com/the-trustthevote-project/donate
36 | sponsorurl:
37 | sponsorList:
38 | sponsorships:
39 | licenses: OSET-PL
40 | claPolicy:
41 | securityurl: https://www.osetinstitute.org/cybersecurity-advisory
42 | ethicsPolicy:
43 | conducturl:
44 | conductEvents:
45 | conductSource:
46 | conductLinked:
47 | diversityPolicy:
48 | diversityDescription:
49 | brandPrimary:
50 | brandSecondary:
51 | brandReg:
52 | brandPolicy:
53 | brandUse:
54 | brandComments:
55 | logo:
56 | logoReg:
57 | subOrganization:
58 | policyurl: https://osetfoundation.org/technology-policy
59 | ---
60 |
61 |
--------------------------------------------------------------------------------
/_sponsorships/osgeo.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: osgeo
3 | commonName: OSGEO
4 | nonprofit: c3
5 | sponsorurl: https://www.osgeo.org/sponsors/
6 | levelurl: https://www.osgeo.org/sponsors/
7 | normalize: 'true'
8 | levels:
9 | first:
10 | name: diamond
11 | amount: '30000'
12 | selector: ".Diamond-sponsors a"
13 | attr: href
14 | benefits:
15 | events: event invite and featured booth
16 | marketing: press release
17 | logo: logo in site footer and About OSGeo page
18 | second:
19 | name: platinum
20 | amount: '20000'
21 | selector: ".Platinum-sponsors a"
22 | attr: href
23 | benefits:
24 | events: event invite and featured booth
25 | marketing: press release
26 | logo: logo in site footer and About OSGeo page
27 | third:
28 | name: gold
29 | amount: '10000'
30 | selector: ".Gold-sponsors a"
31 | attr: href
32 | benefits:
33 | events: event invite
34 | marketing: blog posting announcement
35 | logo: logo in site footer
36 | fourth:
37 | name: silver
38 | amount: '3000'
39 | selector: ".Silver-sponsors a"
40 | attr: href
41 | benefits:
42 | events: event invite
43 | marketing: blog posting announcement
44 | logo: logo in site footer
45 | fifth:
46 | name: bronze
47 | amount: '500'
48 | selector: ".Bronze-sponsors a"
49 | attr: href
50 | benefits:
51 | logo: small logo
52 | ---
53 |
--------------------------------------------------------------------------------
/_foundations/openhomefoundation.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: openhomefoundation
3 | commonName: Open Home Foundation
4 | legalName: Open Home Foundation
5 | website: https://www.openhomefoundation.org/
6 | foundingDate: 2024
7 | addressCountry: CH
8 | newProjects: yes
9 | softwareType: smart home
10 | wikidataId: Q132690397
11 | taxID: CHE-416.988.952
12 | nonprofitStatus: stiftung
13 | boardSize: 4
14 | boardType: non-paid
15 | boardurl: https://www.openhomefoundation.org/organization/#board-members
16 | bylawsurl:
17 | numberOfEmployees:
18 | funding: commercial partnerships, donations
19 | budgetUsd:
20 | budgetYear:
21 | budgeturl:
22 | donateurl: https://www.openhomefoundation.org/organization/#support-our-work
23 | sponsorurl:
24 | sponsorList:
25 | licenses:
26 | claPolicy:
27 | ethicsPolicy:
28 | governanceOrg:
29 | governanceTech:
30 | projectsNotable: Home Assistant, ESPHome
31 | projectsList: https://www.openhomefoundation.org/projects/
32 | projectsServices:
33 | logo: https://www.openhomefoundation.org/assets/images/logo/open-home-foundation.svg
34 | logoReg:
35 | brandPrimary:
36 | brandSecondary:
37 | brandPolicy:
38 | brandReg:
39 | brandUse:
40 | brandComments:
41 | conducturl:
42 | conductEvents:
43 | conductSource:
44 | conductLinked:
45 | diversityPolicy:
46 | diversityDescription:
47 | ---
48 |
49 | The Open Home Foundation fights for the fundamental principles of privacy, choice, and sustainability for smart homes. And for every person who lives in one.
50 |
--------------------------------------------------------------------------------
/_foundations/rubycentral.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: rubycentral
3 | commonName: Ruby Central
4 | legalName: Ruby Central, Inc.
5 | description:
6 | contacturl:
7 | website: https://rubycentral.org/
8 | foundingDate:
9 | addressCountry: US
10 | addressRegion: CA
11 | newProjects:
12 | softwareType: language
13 | wikidataId: Q7376287
14 | boardSize: 7
15 | boardType:
16 | boardurl: https://rubycentral.org/#directors
17 | teamurl: https://rubycentral.org/about/#staff
18 | missionurl:
19 | bylawsurl:
20 | numberOfEmployees:
21 | governanceOrg:
22 | governanceTech:
23 | projectsNotable:
24 | projectsList:
25 | projectsServices:
26 | eventurl: https://rubyconf.org/
27 | nonprofitStatus: Nonprofit501c3
28 | taxID: 30-0040446
29 | taxIDLocal:
30 | budgetUsd:
31 | budgetYear:
32 | budgeturl:
33 | budgetTransparent:
34 | funding:
35 | donateurl:
36 | sponsorurl: https://rubycentral.org/support/#oss-sponsors
37 | sponsorList:
38 | sponsorships:
39 | licenses:
40 | claPolicy:
41 | securityurl: https://rubygems.org/pages/security
42 | ethicsPolicy:
43 | conducturl: https://rubycentral.org/news/project-codes-of-conduct/
44 | conductEvents: https://drive.google.com/file/d/1OBF15i76xc-bsVTOIgBZeB6vpTo-Bsg3/view
45 | conductSource:
46 | - covenant
47 | conductLinked:
48 | diversityPolicy:
49 | diversityDescription:
50 | brandPrimary: Ruby
51 | brandSecondary: RailsConf, RubyConf
52 | brandReg:
53 | brandPolicy:
54 | brandUse:
55 | brandComments:
56 | logo:
57 | logoReg:
58 | subOrganization:
59 | ---
60 |
--------------------------------------------------------------------------------
/_foundations/omsf.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: omsf
3 | commonName: Open Molecular Software Foundation
4 | legalName: Open Molecular Software Foundation
5 | description: The Open Molecular Software Foundation
6 | contacturl:
7 | website: https://omsf.io
8 | foundingDate:
9 | addressCountry: US
10 | addressRegion: CA
11 | newProjects:
12 | softwareType:
13 | wikidataId: Q127415563
14 | boardSize: '5'
15 | boardType:
16 | boardurl: http://omsf.io/about/people/
17 | teamurl:
18 | missionurl: https://omsf.io/about/mission/
19 | bylawsurl: https://omsf.io/bylaws
20 | numberOfEmployees:
21 | governanceOrg:
22 | governanceTech:
23 | projectsNotable:
24 | projectsList: http://omsf.io/projects/project-list/
25 | projectsServices:
26 | eventurl:
27 | nonprofitStatus: Nonprofit501c3
28 | taxID: 86-2536664
29 | taxIDLocal:
30 | budgetUsd:
31 | budgetYear:
32 | budgeturl:
33 | budgetTransparent:
34 | funding:
35 | donateurl: https://omsf.io/support/how-to
36 | sponsorurl: https://omsf.io/support/how-to/
37 | sponsorList:
38 | sponsorships:
39 | licenses:
40 | claPolicy:
41 | securityurl:
42 | ethicsPolicy:
43 | conducturl: https://omsf.io/conduct/
44 | conductEvents:
45 | conductSource:
46 | - Apache Software Foundation
47 | conductLinked:
48 | diversityPolicy:
49 | diversityDescription:
50 | brandPrimary:
51 | brandSecondary:
52 | brandReg:
53 | brandPolicy:
54 | brandUse:
55 | brandComments:
56 | logo:
57 | logoReg:
58 | subOrganization:
59 | policyurl: https://omsf.io/antitrust-policy
60 | ---
61 |
62 |
--------------------------------------------------------------------------------
/_foundations/rails.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: rails
3 | commonName: Rails Foundation
4 | legalName: Rails Foundation
5 | description:
6 | contacturl:
7 | website: https://rubyonrails.org/foundation
8 | foundingDate: '20221114'
9 | addressCountry: US
10 | addressRegion:
11 | newProjects: 'no'
12 | softwareType: language
13 | wikidataId:
14 | boardSize: 8
15 | boardType:
16 | boardurl: https://rubyonrails.org/foundation
17 | teamurl:
18 | missionurl:
19 | bylawsurl:
20 | numberOfEmployees:
21 | governanceOrg:
22 | governanceTech:
23 | projectsNotable:
24 | projectsList:
25 | projectsServices:
26 | eventurl:
27 | nonprofitStatus: Nonprofit501c6
28 | taxID: 88-2382127
29 | taxIDLocal:
30 | budgetUsd:
31 | budgetYear:
32 | budgeturl:
33 | budgetTransparent:
34 | funding:
35 | donateurl:
36 | sponsorurl: https://rubyonrails.org/foundation
37 | sponsorList: Cookpad, Doximity, Fleetio, GitHub, Intercom, Procore, Shopify, 37signals
38 | sponsorships:
39 | - rails
40 | licenses: MIT
41 | claPolicy:
42 | securityurl:
43 | ethicsPolicy:
44 | conducturl: https://rubyonrails.org/conduct
45 | conductEvents:
46 | conductSource:
47 | conductLinked: footer
48 | diversityPolicy:
49 | diversityDescription:
50 | brandPrimary: Rails
51 | brandSecondary: Ruby on Rails
52 | brandReg: true
53 | brandPolicy: https://rubyonrails.org/trademarks
54 | brandUse:
55 | brandComments:
56 | logo: https://raw.githubusercontent.com/rails/website/main/assets/images/logo.svg
57 | logoReg: true
58 | subOrganization:
59 | ---
60 |
61 |
--------------------------------------------------------------------------------
/_foundations/linuxkernel.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: linuxkernel
3 | commonName: Linux Kernel
4 | legalName: Linux Kernel Organization
5 | description:
6 | contacturl:
7 | website: https://www.kernel.org/nonprofit.html
8 | foundingDate:
9 | addressCountry: US
10 | addressRegion: CA
11 | newProjects:
12 | softwareType: distro
13 | wikidataId: Q14579
14 | boardSize:
15 | boardType:
16 | boardurl:
17 | teamurl:
18 | missionurl:
19 | bylawsurl:
20 | numberOfEmployees:
21 | governanceOrg:
22 | governanceTech:
23 | projectsNotable:
24 | projectsList:
25 | projectsServices:
26 | eventurl:
27 | nonprofitStatus: Nonprofit501c3
28 | taxID: 74-3183459
29 | taxIDLocal:
30 | budgetUsd:
31 | budgetYear:
32 | budgeturl:
33 | budgetTransparent:
34 | funding:
35 | donateurl:
36 | sponsorurl:
37 | sponsorList:
38 | sponsorships:
39 | licenses:
40 | claPolicy:
41 | securityurl:
42 | ethicsPolicy:
43 | conducturl: https://www.kernel.org/doc/html/latest/process/code-of-conduct.html
44 | conductEvents:
45 | conductSource:
46 | - covenant
47 | conductLinked: About section
48 | conductReport: email; committee; conduct@
49 | diversityPolicy:
50 | diversityDescription:
51 | brandPrimary:
52 | brandSecondary:
53 | brandReg:
54 | brandPolicy:
55 | brandUse:
56 | brandComments:
57 | logo:
58 | logoReg:
59 | subOrganization:
60 | ---
61 |
62 | The Linux Kernel Organization is a California Public Benefit Corporation established in 2002 to distribute the Linux kernel and other Open Source software to the public without charge.
63 |
--------------------------------------------------------------------------------
/_sponsorships/lf.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: lf
3 | commonName: Linux Foundation
4 | nonprofit: lf
5 | Xsponsorurl: https://lf-landscape.netlify.app/pages/members
6 | sponsorurl: https://raw.githubusercontent.com/jmertic/lf-landscape/main/landscape.yml
7 | levelurl: https://www.linuxfoundation.org/hubfs/lf_member_benefits_122723a.pdf?hsLang=en
8 | normalize: 'true'
9 | xsponsormap: _data/lf_map.json
10 | landscape: LF Members
11 | levels:
12 | first:
13 | name: Platinum
14 | amount: '500000'
15 | selector: div[data-section-id="lf-members-platinum"] > div
16 | attr: homepage_url
17 | benefits:
18 | governance: ''
19 | events: ''
20 | marketing: ''
21 | logo: ''
22 | second:
23 | name: Gold
24 | amount: '100000'
25 | selector: div[data-section-id="lf-members-gold"] > div
26 | attr: homepage_url
27 | benefits:
28 | governance: ''
29 | events: ''
30 | marketing: ''
31 | logo: ''
32 | third:
33 | name: Silver
34 | amount: '20000'
35 | selector: div[data-section-id="lf-members-silver"] > div
36 | attr: homepage_url
37 | benefits:
38 | governance: ''
39 | events: ''
40 | marketing: ''
41 | logo: ''
42 | fourth:
43 | name: Associate
44 | amount: TBD
45 | selector: div[data-section-id="lf-members-platinum"] > div
46 | attr: homepage_url
47 | benefits:
48 | governance: ''
49 | events: ''
50 | marketing: ''
51 | logo: ''
52 | ---
53 |
--------------------------------------------------------------------------------
/_sponsorships/raspberrypi.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: raspberrypi
3 | commonName: Raspberry Pi NA
4 | nonprofit: c3
5 | sponsorurl: https://www.raspberrypi.org/about/supporters/
6 | levelurl: https://www.raspberrypi.org/about/supporters/
7 | normalize: 'true'
8 | comment: Raspberry Pi includes UK charity, US c3, and a subsidiary corp; but count
9 | as c3 for reporting purposes.
10 | levels:
11 | first:
12 | name: First
13 | amount: '1000000'
14 | selector: div.o-container ul:nth-of-type(1) a
15 | attr: href
16 | benefits:
17 | advisory: No specific benefits; levels are in pounds not USD!
18 | second:
19 | name: Second
20 | amount: '500000'
21 | selector: div.o-container ul:nth-of-type(2) a
22 | attr: href
23 | benefits:
24 | logo: 'no'
25 | third:
26 | name: Third
27 | amount: '250000'
28 | selector: div.o-container ul:nth-of-type(3) a
29 | attr: href
30 | benefits:
31 | logo: 'no'
32 | fourth:
33 | name: Fourth
34 | amount: '100000'
35 | selector: div.o-container ul:nth-of-type(4) a
36 | attr: href
37 | benefits:
38 | logo: 'no'
39 | fifth:
40 | name: Fifth
41 | amount: '50000'
42 | selector: div.o-container ul:nth-of-type(5) a
43 | attr: href
44 | benefits:
45 | logo: 'no'
46 | sixth:
47 | name: Sixth
48 | amount: '30000'
49 | selector: div.o-container ul:nth-of-type(6) a
50 | attr: href
51 | benefits:
52 | logo: 'no'
53 | ---
54 |
--------------------------------------------------------------------------------
/_foundations/xmpp.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: xmpp
3 | commonName: Jabber XMPP
4 | legalName: XMPP Standards Foundation
5 | description:
6 | contacturl:
7 | website: https://xmpp.org
8 | foundingDate:
9 | addressCountry: US
10 | addressRegion: CO
11 | newProjects:
12 | softwareType:
13 | wikidataId: Q1461130
14 | boardSize: '5'
15 | boardType: elected
16 | boardurl: https://xmpp.org/about/xmpp-standards-foundation/#board
17 | teamurl: https://xmpp.org/about/xmpp-standards-foundation/
18 | missionurl: https://xmpp.org/about/xsf/mission/
19 | bylawsurl: https://xmpp.org/about/xsf/bylaws/
20 | numberOfEmployees:
21 | governanceOrg:
22 | governanceTech:
23 | projectsNotable:
24 | projectsList: https://xmpp.org/extensions/
25 | projectsServices:
26 | eventurl: https://xmpp.org/community/events/
27 | nonprofitStatus: Nonprofit501c3
28 | taxID: 84-1611178
29 | taxIDLocal:
30 | budgetUsd:
31 | budgetYear:
32 | budgeturl:
33 | budgetTransparent:
34 | funding:
35 | donateurl:
36 | sponsorurl: https://xmpp.org/community/sponsorship/
37 | sponsorList:
38 | sponsorships:
39 | licenses:
40 | claPolicy:
41 | securityurl: https://xmpp.org/community/security-notices/
42 | ethicsPolicy:
43 | conducturl:
44 | conductEvents:
45 | conductSource:
46 | conductLinked:
47 | diversityPolicy:
48 | diversityDescription:
49 | brandPrimary:
50 | brandSecondary:
51 | brandReg:
52 | brandPolicy: https://xmpp.org/about/xsf/jabber-trademark/
53 | brandUse:
54 | brandComments:
55 | logo:
56 | logoReg:
57 | subOrganization:
58 | ---
59 |
60 |
--------------------------------------------------------------------------------
/_foundations/fsf.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: fsf
3 | commonName: Free Software Foundation
4 | legalName: Free Software Foundation, Inc.
5 | description:
6 | contacturl:
7 | website: http://www.fsf.org
8 | foundingDate:
9 | addressCountry: US
10 | addressRegion: MA
11 | newProjects: 'yes'
12 | softwareType: various
13 | wikidataId: Q48413
14 | boardSize: '7'
15 | boardType: appointed
16 | boardurl: https://www.fsf.org/about/staff-and-board/
17 | teamurl:
18 | missionurl:
19 | bylawsurl: http://static.fsf.org/nosvn/fsf-amended-bylaws-current.pdf
20 | numberOfEmployees:
21 | governanceOrg:
22 | governanceTech:
23 | projectsNotable:
24 | projectsList: https://www.fsf.org/about/projects.html
25 | projectsServices:
26 | eventurl:
27 | nonprofitStatus: Nonprofit501c3
28 | taxID: 04-2888848
29 | taxIDLocal:
30 | budgetUsd:
31 | budgetYear:
32 | budgeturl:
33 | budgetTransparent:
34 | funding:
35 | donateurl:
36 | sponsorurl: https://www.fsf.org/patrons
37 | sponsorList:
38 | sponsorships:
39 | licenses: GPL-3.0
40 | claPolicy:
41 | securityurl:
42 | ethicsPolicy:
43 | conducturl: https://www.gnu.org/philosophy/kind-communication.html
44 | conductEvents:
45 | conductSource:
46 | conductLinked:
47 | diversityPolicy:
48 | diversityDescription:
49 | brandPrimary:
50 | brandSecondary:
51 | brandReg: 'no'
52 | brandPolicy:
53 | brandUse:
54 | brandComments:
55 | logo:
56 | logoReg: 'no'
57 | subOrganization:
58 | ---
59 |
60 | The Free Software Foundation (FSF) is a nonprofit with a worldwide mission to promote computer user freedom.
61 |
--------------------------------------------------------------------------------
/_foundations/netbsd.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: netbsd
3 | commonName: NetBSD
4 | legalName: The NetBSD Foundation, Inc.
5 | description:
6 | contacturl:
7 | website: http://www.netbsd.org/
8 | foundingDate:
9 | addressCountry: US
10 | addressRegion: DE
11 | newProjects:
12 | softwareType: distro
13 | wikidataId: Q56753378
14 | boardSize: '7'
15 | boardType: elected
16 | boardurl: https://www.netbsd.org/foundation/
17 | teamurl:
18 | missionurl:
19 | bylawsurl: https://www.netbsd.org/foundation/bylaws.html
20 | numberOfEmployees:
21 | governanceOrg:
22 | governanceTech:
23 | projectsNotable:
24 | projectsList:
25 | projectsServices:
26 | eventurl:
27 | nonprofitStatus: Nonprofit501c3
28 | taxID: 13-4134071
29 | taxIDLocal:
30 | budgetUsd: 40K
31 | budgetYear:
32 | budgeturl: https://www.netbsd.org/foundation/reports/financial/2017.html
33 | budgetTransparent:
34 | funding:
35 | donateurl:
36 | sponsorurl:
37 | sponsorList:
38 | sponsorships:
39 | licenses: BSD
40 | claPolicy:
41 | securityurl:
42 | ethicsPolicy:
43 | conducturl: https://www.netbsd.org/foundation/code-of-conduct.html
44 | conductEvents:
45 | conductSource:
46 | - geekfeminism
47 | conductLinked: about nav
48 | conductReport: email; committee; conduct@
49 | diversityPolicy:
50 | diversityDescription:
51 | brandPrimary:
52 | brandSecondary:
53 | brandReg:
54 | brandPolicy:
55 | brandUse:
56 | brandComments:
57 | logo:
58 | logoReg:
59 | subOrganization:
60 | ---
61 |
62 | The NetBSD foundation serves as a fiscal and legal host for the NetBSD distribution.
63 |
--------------------------------------------------------------------------------
/_foundations/postgresql.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: postgresql
3 | commonName: PostgreSQL.US
4 | legalName: United States Postgresql Association
5 | description:
6 | contacturl: https://postgresql.us/contactus
7 | website: https://postgresql.us
8 | foundingDate:
9 | addressCountry: US
10 | addressRegion: OR
11 | newProjects:
12 | softwareType:
13 | wikidataId: Q56787304
14 | boardSize: '5'
15 | boardType:
16 | boardurl: https://postgresql.us/team
17 | teamurl: https://postgresql.us/team
18 | missionurl: https://postgresql.us/aboutus/
19 | bylawsurl: https://postgresql.us/media/pgus/files/bylaws.pdf
20 | numberOfEmployees:
21 | governanceOrg:
22 | governanceTech:
23 | projectsNotable:
24 | projectsList:
25 | projectsServices:
26 | eventurl:
27 | nonprofitStatus: Nonprofit501c3
28 | taxID: 26-2194507
29 | taxIDLocal:
30 | budgetUsd:
31 | budgetYear:
32 | budgeturl:
33 | budgetTransparent:
34 | funding:
35 | donateurl: https://postgresql.us/donate/
36 | sponsorurl: https://drive.google.com/file/d/1-VVf1MAFeB5Fe-kJ4EzzEd2lKAX_z1xs/view
37 | sponsorList: https://postgresql.us/sponsors
38 | sponsorships:
39 | licenses:
40 | claPolicy:
41 | securityurl:
42 | ethicsPolicy:
43 | conducturl: https://postgresql.us/policy_coc
44 | conductEvents:
45 | conductSource:
46 | conductLinked:
47 | diversityPolicy: https://postgresql.us/diversity/
48 | diversityDescription:
49 | brandPrimary:
50 | brandSecondary:
51 | brandReg:
52 | brandPolicy:
53 | brandUse:
54 | brandComments:
55 | logo:
56 | logoReg:
57 | subOrganization:
58 | ---
59 |
60 |
--------------------------------------------------------------------------------
/_foundations/djangeventsna.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: djangoevents
3 | commonName: Django Events
4 | legalName: Django Events Foundation North America
5 | description:
6 | contacturl: https://www.defna.org/contact/
7 | website: https://www.defna.org/
8 | foundingDate:
9 | addressCountry: US
10 | addressRegion: CA
11 | newProjects:
12 | softwareType: events
13 | wikidataId:
14 | boardSize: 9
15 | boardType:
16 | boardurl: https://www.defna.org/about/
17 | teamurl:
18 | missionurl:
19 | bylawsurl:
20 | numberOfEmployees:
21 | governanceOrg:
22 | governanceTech:
23 | projectsNotable:
24 | projectsList:
25 | projectsServices:
26 | eventurl:
27 | nonprofitStatus: Nonprofit501c3
28 | taxID: 47-3151229
29 | taxIDLocal:
30 | budgetUsd:
31 | budgetYear:
32 | budgeturl:
33 | budgetTransparent:
34 | funding:
35 | donateurl: https://www.defna.org/donate/
36 | sponsorurl:
37 | sponsorList:
38 | sponsorships:
39 | licenses:
40 | claPolicy:
41 | securityurl:
42 | ethicsPolicy:
43 | conducturl: https://2025.djangocon.us/conduct/
44 | conductEvents: https://2025.djangocon.us/conduct/
45 | conductSource:
46 | - geekfeminism
47 | conductLinked: header
48 | conductReport: email; committee; conduct@
49 | diversityPolicy:
50 | diversityDescription:
51 | brandPrimary: Django Events Foundation North America, DEFNA
52 | brandSecondary:
53 | brandReg:
54 | brandPolicy:
55 | brandUse:
56 | brandComments:
57 | logo:
58 | logoReg:
59 | subOrganization:
60 | ---
61 |
62 | The Django Events Foundation North America runs various events for the Django community.
63 |
--------------------------------------------------------------------------------
/_foundations/erlef.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: erlef
3 | commonName: Erlang Ecosystem Foundation
4 | legalName: Erlang Ecosystem Foundation
5 | description: Supporting the next generation of advanced, reliable, realtime applications
6 | contacturl: https://erlef.org/contact/
7 | website: https://www.erlef.org/
8 | foundingDate:
9 | addressCountry: US
10 | addressRegion: CA
11 | newProjects:
12 | softwareType: language
13 | wikidataId:
14 | boardSize: 11
15 | boardType: elected
16 | boardurl: https://www.erlef.org/board_members/
17 | teamurl:
18 | missionurl:
19 | bylawsurl: https://www.erlef.org/bylaws/
20 | numberOfEmployees:
21 | governanceOrg: membership
22 | governanceTech:
23 | projectsNotable:
24 | projectsList:
25 | projectsServices:
26 | eventurl: https://erlef.org/events/
27 | nonprofitStatus: Nonprofit501c3
28 | taxID: 83-3185247
29 | taxIDLocal:
30 | budgetUsd:
31 | budgetYear:
32 | budgeturl: https://erlef.org/public_records/
33 | budgetTransparent:
34 | funding:
35 | donateurl:
36 | sponsorurl: https://erlef.org/sponsors#become-a-sponsor
37 | sponsorList: https://erlef.org/sponsors#sponsors
38 | sponsorships:
39 | licenses:
40 | claPolicy:
41 | securityurl:
42 | ethicsPolicy:
43 | conducturl: https://erlef.org/code-of-conduct
44 | conductEvents:
45 | conductSource:
46 | - covenant
47 | conductLinked: footer
48 | conductReport: email; committee; conduct@
49 | diversityPolicy:
50 | diversityDescription:
51 | brandPrimary:
52 | brandSecondary:
53 | brandReg:
54 | brandPolicy:
55 | brandUse:
56 | brandComments:
57 | logo:
58 | logoReg:
59 | subOrganization:
60 | ---
61 |
--------------------------------------------------------------------------------
/_foundations/oasis.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: oasis
3 | commonName: OASIS
4 | legalName: Oasis Open
5 | description:
6 | contacturl:
7 | website: https://www.oasis-open.org/
8 | foundingDate:
9 | addressCountry: US
10 | addressRegion: MA
11 | newProjects: 'yes'
12 | softwareType: standards
13 | wikidataId: Q1455952
14 | boardSize: 11
15 | boardType: elected
16 | boardurl: https://www.oasis-open.org/board/
17 | teamurl:
18 | missionurl:
19 | bylawsurl: https://www.oasis-open.org/policies-guidelines/bylaws
20 | numberOfEmployees:
21 | governanceOrg:
22 | governanceTech:
23 | projectsNotable:
24 | projectsList:
25 | projectsServices:
26 | eventurl:
27 | nonprofitStatus: Nonprofit501c3
28 | taxID: 25-1720375
29 | taxIDLocal:
30 | budgetUsd:
31 | budgetYear:
32 | budgeturl: https://www.oasis-open.org/annual-reports/
33 | budgetTransparent:
34 | funding:
35 | donateurl:
36 | sponsorurl: https://www.oasis-open.org/members/
37 | sponsorList:
38 | sponsorships:
39 | licenses:
40 | claPolicy:
41 | securityurl:
42 | ethicsPolicy: https://www.oasis-open.org/policies-guidelines/conflict-of-interest
43 | conducturl: https://www.oasis-open.org/policies-guidelines/oasis-participants-code-of-conduct/
44 | conductEvents:
45 | conductSource:
46 | conductLinked: Policies page
47 | conductReport: email; individual; conduct-liaison@
48 | diversityPolicy:
49 | diversityDescription:
50 | brandPrimary:
51 | brandSecondary:
52 | brandReg:
53 | brandPolicy: https://www.oasis-open.org/policies-guidelines/trademark
54 | brandUse:
55 | brandComments:
56 | logo:
57 | logoReg:
58 | subOrganization:
59 | ---
60 |
--------------------------------------------------------------------------------
/_foundations/raspberrypina.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: raspberrypina
3 | commonName: Raspberry Pi NA
4 | legalName: Raspberry Pi Foundation North America Inc
5 | description:
6 | contacturl:
7 | website: https://www.raspberrypi.org/about/
8 | foundingDate:
9 | addressCountry: US
10 | addressRegion: CA
11 | newProjects:
12 | softwareType: hardware
13 | wikidataId:
14 | boardSize: '2'
15 | boardType:
16 | boardurl: https://www.raspberrypi.org/about/governance/
17 | teamurl:
18 | missionurl:
19 | bylawsurl:
20 | numberOfEmployees: 6
21 | governanceOrg:
22 | governanceTech:
23 | projectsNotable:
24 | projectsList:
25 | projectsServices:
26 | eventurl:
27 | nonprofitStatus: Nonprofit501c3
28 | taxID: 81-5480308
29 | taxIDLocal:
30 | budgetUsd:
31 | budgetYear:
32 | budgeturl:
33 | budgetTransparent:
34 | funding:
35 | donateurl:
36 | sponsorurl: https://www.raspberrypi.org/about/supporters/
37 | sponsorList:
38 | sponsorships:
39 | licenses: BSD-3-Clause, various
40 | claPolicy:
41 | securityurl:
42 | ethicsPolicy:
43 | conducturl:
44 | conductEvents:
45 | conductSource:
46 | conductLinked:
47 | diversityPolicy:
48 | diversityDescription:
49 | brandPrimary: Pi
50 | brandSecondary:
51 | brandReg: 'no'
52 | brandPolicy: https://www.raspberrypi.org/trademark-rules/
53 | brandUse:
54 | brandComments:
55 | logo: https://www.raspberrypi.com/app/uploads/2022/02/COLOUR-Raspberry-Pi-Symbol-Registered.png
56 | logoReg: 'yes'
57 | subOrganization:
58 | ---
59 |
60 | The Raspberry Pi Foundation North America Inc. is the US nonprofit subsidiary of the popular Raspberry Pi charity in the UK.
61 |
--------------------------------------------------------------------------------
/_foundations/benetech.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: benetech
3 | commonName: Benetech
4 | legalName: Beneficent Technology Inc
5 | description: Benetech’s nonprofit software empowers communities with software for
6 | social good. Learn how all humanity can benefit from the technology we’re developing.
7 | contacturl: https://benetech.org/about/contact/
8 | website: https://benetech.org/
9 | foundingDate:
10 | addressCountry: US
11 | addressRegion: CA
12 | newProjects:
13 | softwareType:
14 | wikidataId: Q4887530
15 | boardSize: '14'
16 | boardType:
17 | boardurl: https://benetech.org/about/leadership/
18 | teamurl:
19 | missionurl: https://benetech.org/about/our-truths/
20 | bylawsurl:
21 | numberOfEmployees:
22 | governanceOrg:
23 | governanceTech:
24 | projectsNotable:
25 | projectsList: https://benetech.org/our-work/
26 | projectsServices:
27 | eventurl: https://benetech.org/events/
28 | nonprofitStatus: Nonprofit501c3
29 | taxID: 77-0555413
30 | taxIDLocal: 2269751
31 | budgetUsd:
32 | budgetYear:
33 | budgeturl: https://benetech.org/about/financials/
34 | budgetTransparent:
35 | funding:
36 | donateurl: https://benetech.org/get-involved/give/
37 | sponsorurl:
38 | sponsorList:
39 | sponsorships:
40 | licenses:
41 | claPolicy:
42 | securityurl:
43 | ethicsPolicy:
44 | conducturl:
45 | conductEvents:
46 | conductSource:
47 | conductLinked:
48 | diversityPolicy:
49 | diversityDescription:
50 | brandPrimary:
51 | brandSecondary:
52 | brandReg:
53 | brandPolicy:
54 | brandUse:
55 | brandComments:
56 | logo:
57 | logoReg:
58 | subOrganization:
59 | policyurl: https://benetech.org/about/privacy-policy/
60 | ---
61 |
62 |
--------------------------------------------------------------------------------
/_foundations/openjsf.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: openjsf
3 | commonName: OpenJS Foundation
4 | legalName: OpenJS Foundation
5 | description:
6 | contacturl:
7 | website: https://www.openjsf.org/
8 | foundingDate: '20190319'
9 | addressCountry: US
10 | addressRegion:
11 | newProjects: 'yes'
12 | softwareType: various
13 | wikidataId: Q80653810
14 | boardSize: '12'
15 | boardType: sponsor, elected
16 | boardurl: https://openjsf.org/governance
17 | teamurl:
18 | missionurl:
19 | bylawsurl: https://bylaws.openjsf.org/
20 | numberOfEmployees:
21 | governanceOrg:
22 | governanceTech:
23 | projectsNotable:
24 | projectsList: https://openjsf.org/projects
25 | projectsServices:
26 | eventurl:
27 | nonprofitStatus: Nonprofit501c6
28 | taxID: 47-1491876
29 | taxIDLocal: '5579593'
30 | budgetUsd:
31 | budgetYear:
32 | budgeturl:
33 | budgetTransparent:
34 | funding: sponsors
35 | donateurl:
36 | sponsorurl: https://openjsf.org/members
37 | sponsorList:
38 | sponsorships:
39 | licenses: various
40 | claPolicy:
41 | securityurl: https://openjsf.org/security
42 | ethicsPolicy:
43 | conducturl: https://code-of-conduct.openjsf.org/
44 | conductEvents:
45 | conductSource:
46 | - covenant
47 | conductLinked: footer
48 | conductReport: email; report@
49 | diversityPolicy:
50 | diversityDescription:
51 | brandPrimary: OpenJS
52 | brandSecondary:
53 | brandReg: 'yes'
54 | brandPolicy: https://trademark-policy.openjsf.org/
55 | brandUse:
56 | brandComments:
57 | logo: https://openjsf.org/logo.svg
58 | logoReg:
59 | subOrganization:
60 | ---
61 |
62 | OpenJS promotes the widespread adoption and continued development of key JavaScript technologies worldwide.
63 |
--------------------------------------------------------------------------------
/_foundations/openid.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: openid
3 | commonName: OpenID
4 | legalName: OpenID Foundation
5 | description:
6 | contacturl:
7 | website: https://openid.net/foundation/
8 | foundingDate:
9 | addressCountry: US
10 | addressRegion: CA
11 | newProjects:
12 | softwareType:
13 | wikidataId: Q105272307
14 | boardSize: '19'
15 | boardType:
16 | boardurl: https://openid.net/foundation/board/
17 | teamurl: https://openid.net/foundation/leadership/
18 | missionurl:
19 | bylawsurl: https://openid.net/wp-content/uploads/2023/11/OIDF-Org-Doc-Bylaws-Final-11-16-2023.pdf
20 | numberOfEmployees:
21 | governanceOrg:
22 | governanceTech:
23 | projectsNotable:
24 | projectsList: https://openid.net/developers/specs/
25 | projectsServices:
26 | eventurl: https://openid.net/calendar/
27 | nonprofitStatus: Nonprofit501c6
28 | taxID: 26-0447503
29 | taxIDLocal:
30 | budgetUsd:
31 | budgetYear:
32 | budgeturl:
33 | budgetTransparent:
34 | funding:
35 | donateurl:
36 | sponsorurl: https://openid.net/foundation/sponsoring-members/
37 | sponsorList:
38 | sponsorships:
39 | licenses:
40 | claPolicy: https://openid.net/intellectual-property/openid-foundation-contribution-agreements/
41 | securityurl:
42 | ethicsPolicy:
43 | conducturl: https://openid.net/policies/
44 | conductEvents:
45 | conductSource:
46 | conductLinked:
47 | diversityPolicy:
48 | diversityDescription:
49 | brandPrimary:
50 | brandSecondary:
51 | brandReg:
52 | brandPolicy: https://openid.net/wp-content/uploads/2023/06/openid-logo-guidelines.pdf
53 | brandUse:
54 | brandComments:
55 | logo:
56 | logoReg:
57 | subOrganization:
58 | policyurl: https://openid.net/policies/
59 | ---
60 |
61 |
--------------------------------------------------------------------------------
/_foundations/openconnectivity.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: openconnectivity
3 | commonName: OCF
4 | legalName: Open Connectivity Foundation Inc
5 | description:
6 | contacturl: https://openconnectivity.org/join/contact-us
7 | website: https://openconnectivity.org/
8 | foundingDate:
9 | addressCountry: US
10 | addressRegion: OR
11 | newProjects:
12 | softwareType:
13 | wikidataId: Q24589795
14 | boardSize: '2'
15 | boardType:
16 | boardurl: https://openconnectivity.org/foundation/organizational-structure/board-of-directors/
17 | teamurl:
18 | missionurl:
19 | bylawsurl: https://openconnectivity.org/wp-content/uploads/docs/OCF_Bylaws.pdf
20 | numberOfEmployees:
21 | governanceOrg: https://openconnectivity.org/foundation/organizational-structure/
22 | governanceTech:
23 | projectsNotable:
24 | projectsList:
25 | projectsServices:
26 | eventurl: https://openconnectivity.org/events/
27 | nonprofitStatus: Nonprofit501c6
28 | taxID: 47-1709705
29 | taxIDLocal:
30 | budgetUsd:
31 | budgetYear:
32 | budgeturl:
33 | budgetTransparent:
34 | funding:
35 | donateurl:
36 | sponsorurl: https://openconnectivity.org/foundation/join/
37 | sponsorList: https://openconnectivity.org/foundation/membership-list/
38 | sponsorships:
39 | licenses:
40 | claPolicy:
41 | securityurl: https://openconnectivity.org/ocf-security/
42 | ethicsPolicy:
43 | conducturl:
44 | conductEvents:
45 | conductSource:
46 | conductLinked:
47 | diversityPolicy:
48 | diversityDescription:
49 | brandPrimary:
50 | brandSecondary:
51 | brandReg:
52 | brandPolicy:
53 | brandUse:
54 | brandComments:
55 | logo:
56 | logoReg:
57 | subOrganization:
58 | policyurl: https://openconnectivity.org/privacy-policy/
59 | ---
60 |
61 |
--------------------------------------------------------------------------------
/_foundations/dotnet.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: dotnet
3 | commonName: ".Net Foundation"
4 | legalName: ".NET Foundation"
5 | description:
6 | contacturl:
7 | website: https://dotnetfoundation.org/
8 | foundingDate:
9 | addressCountry: US
10 | addressRegion: WA
11 | newProjects: 'yes'
12 | softwareType: various
13 | wikidataId: Q20020535
14 | boardSize: 7
15 | boardType:
16 | boardurl: https://dotnetfoundation.org/about/board-of-directors
17 | teamurl:
18 | missionurl:
19 | bylawsurl: https://dotnetfoundation.org/about/policies/.net-foundation-bylaws
20 | numberOfEmployees:
21 | governanceOrg:
22 | governanceTech:
23 | projectsNotable:
24 | projectsList: https://dotnetfoundation.org/projects/current-projects
25 | projectsServices: https://dotnetfoundation.org/projects/benefits
26 | eventurl: https://dotnetfoundation.org/community/.net-meetups
27 | nonprofitStatus: Nonprofit501c6
28 | taxID: 47-2119192
29 | taxIDLocal:
30 | budgetUsd: 300K
31 | budgetYear: '2022'
32 | budgeturl: https://dotnetfoundation.org/about/budget
33 | budgetTransparent: 'yes'
34 | funding: sponsors
35 | donateurl:
36 | sponsorurl: https://dotnetfoundation.org/membership/corporate-sponsorship
37 | sponsorList:
38 | sponsorships:
39 | licenses: various
40 | claPolicy:
41 | securityurl:
42 | ethicsPolicy:
43 | conducturl: https://dotnetfoundation.org/about/policies/code-of-conduct
44 | conductEvents:
45 | conductSource:
46 | - covenant
47 | conductLinked: footer
48 | diversityPolicy:
49 | diversityDescription:
50 | brandPrimary: ".NET"
51 | brandSecondary: various projects
52 | brandReg:
53 | brandPolicy:
54 | brandUse:
55 | brandComments:
56 | logo:
57 | logoReg:
58 | subOrganization:
59 | ---
60 |
61 |
62 |
--------------------------------------------------------------------------------
/_foundations/sahana.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: sahana
3 | commonName: Sahana Foundation
4 | legalName: Sahana Foundation
5 | description:
6 | contacturl: https://sahanafoundation.org/contact/
7 | website: https://sahanafoundation.org/
8 | foundingDate:
9 | addressCountry: US
10 | addressRegion: CA
11 | newProjects:
12 | softwareType:
13 | wikidataId: Q18215982
14 | boardSize: '8'
15 | boardType:
16 | boardurl: https://wiki.sahanafoundation.org/foundation/board
17 | teamurl:
18 | missionurl:
19 | bylawsurl: http://wiki.sahanafoundation.org/foundation/bylaws
20 | numberOfEmployees:
21 | governanceOrg:
22 | governanceTech:
23 | projectsNotable:
24 | projectsList:
25 | projectsServices:
26 | eventurl:
27 | nonprofitStatus: Nonprofit501c3
28 | taxID: 27-0596562
29 | taxIDLocal:
30 | budgetUsd:
31 | budgetYear:
32 | budgeturl:
33 | budgetTransparent:
34 | funding:
35 | donateurl: https://sahanafoundation.org/donate/
36 | sponsorurl:
37 | sponsorList:
38 | sponsorships:
39 | licenses: MIT
40 | claPolicy: https://docs.google.com/forms/d/e/1FAIpQLScQPLttJkLC1S8r904Tnbe7SVZ1vlbFrW-CCtAjw3GekiDW0A/viewform?formkey=dEp5czdPYThPY2htX2pNM1JGaTBrRGc6MQ#gid=0
41 | securityurl:
42 | ethicsPolicy:
43 | conducturl: https://wiki.sahanafoundation.org/foundation/code_of_conduct
44 | conductEvents:
45 | conductSource:
46 | conductLinked:
47 | diversityPolicy: http://wiki.sahanafoundation.org/foundation/policies/nondiscrimination
48 | diversityDescription:
49 | brandPrimary:
50 | brandSecondary:
51 | brandReg:
52 | brandPolicy:
53 | brandUse:
54 | brandComments:
55 | logo:
56 | logoReg:
57 | subOrganization:
58 | policyurl: http://wiki.sahanafoundation.org/foundation/policies/conflict
59 | ---
60 |
61 |
--------------------------------------------------------------------------------
/_foundations/gentoo.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: gentoo
3 | commonName: Gentoo Linux
4 | legalName: The Gentoo Foundation, Inc.
5 | description:
6 | contacturl:
7 | website: https://www.gentoo.org/
8 | foundingDate:
9 | addressCountry: US
10 | addressRegion: NM
11 | newProjects:
12 | softwareType: distro
13 | wikidataId: Q75837444
14 | boardSize: 5
15 | boardType: elected
16 | boardurl: https://wiki.gentoo.org/wiki/Foundation:Main_Page
17 | teamurl:
18 | missionurl:
19 | bylawsurl: https://wiki.gentoo.org/wiki/Foundation:Bylaws
20 | numberOfEmployees:
21 | governanceOrg:
22 | governanceTech:
23 | projectsNotable:
24 | projectsList:
25 | projectsServices:
26 | eventurl:
27 | nonprofitStatus: New Mexico non profit
28 | taxID:
29 | taxIDLocal: '2463313'
30 | budgetUsd:
31 | budgetYear:
32 | budgeturl: https://wiki.gentoo.org/wiki/Foundation:Financial_Reports
33 | budgetTransparent:
34 | funding:
35 | donateurl:
36 | sponsorurl: https://www.gentoo.org/inside-gentoo/sponsors/
37 | sponsorList:
38 | sponsorships:
39 | - gentoo
40 | licenses: GPL-2.0-only
41 | claPolicy:
42 | securityurl:
43 | ethicsPolicy:
44 | conducturl: https://wiki.gentoo.org/wiki/Project:Council/Code_of_conduct
45 | conductEvents:
46 | conductSource:
47 | conductLinked:
48 | diversityPolicy:
49 | diversityDescription:
50 | brandPrimary: Gentoo
51 | brandSecondary:
52 | brandReg: 'no'
53 | brandPolicy: https://wiki.gentoo.org/wiki/User:SwifT/trademark
54 | brandUse:
55 | brandComments:
56 | logo:
57 | logoReg:
58 | subOrganization:
59 | ---
60 |
61 | The Gentoo Foundation provides support for development of the Gentoo distribution. It is a New Mexico non-profit corporation, but does not have US IRS non-profit status.
62 |
--------------------------------------------------------------------------------
/_sponsorships/openstack.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: openstack
3 | commonName: Open Stack Foundation
4 | nonprofit: c6
5 | sponsorurl: https://openinfra.dev/members/
6 | levelurl: https://openinfra.dev/join/members/
7 | sponsormap: _data/openstack_map.json
8 | levels:
9 | first:
10 | name: platinum
11 | amount: '350000'
12 | selector: div#platinum div.company-level-platinum a
13 | attr: href
14 | benefits:
15 | governance: appoint one board member
16 | marketing: featured in member spotlight
17 | logo: prominent placements
18 | second:
19 | name: gold
20 | amount: '150000'
21 | selector: div#gold div.company-level-gold a
22 | attr: href
23 | benefits:
24 | governance: can run for board seat
25 | events: expanded sponsorship opportunities
26 | marketing: press release
27 | third:
28 | name: silver
29 | amount: '15000'
30 | selector: div#silver div.company-level-silver a
31 | attr: href
32 | benefits:
33 | services: access to job board
34 | marketing: trademark use; press opportunities
35 | logo: 'yes'
36 | academic:
37 | name: associate
38 | amount: '0'
39 | selector: div#associate div.company-level-associate a
40 | attr: href
41 | benefits:
42 | logo: 'yes'
43 | firstinkind:
44 | name: infrastructure
45 | amount: '0'
46 | selector: div#infrastructure div.company-level-infrastructure a
47 | attr: href
48 | benefits:
49 | logo: 'yes'
50 | community:
51 | name: supporting
52 | amount: '0'
53 | selector: div#supporting div.company-level-supporting a
54 | attr: href
55 | benefits:
56 | logo: 'yes'
57 | ---
58 |
--------------------------------------------------------------------------------
/.github/workflows/jekyll-gh-pages.yml:
--------------------------------------------------------------------------------
1 | # Sample workflow for building and deploying a Jekyll site to GitHub Pages
2 | # Installed via GH wizard 20250904-sc
3 | name: Deploy Jekyll with GitHub Pages dependencies preinstalled
4 |
5 | on:
6 | # Runs on pushes targeting the default branch
7 | push:
8 | branches: ["main"]
9 |
10 | # Allows you to run this workflow manually from the Actions tab
11 | workflow_dispatch:
12 |
13 | # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
14 | permissions:
15 | contents: read
16 | pages: write
17 | id-token: write
18 |
19 | # Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
20 | # However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
21 | concurrency:
22 | group: "pages"
23 | cancel-in-progress: false
24 |
25 | jobs:
26 | # Build job
27 | build:
28 | runs-on: ubuntu-latest
29 | steps:
30 | - name: Checkout
31 | uses: actions/checkout@v4
32 | - name: Setup Pages
33 | uses: actions/configure-pages@v5
34 | - name: Build with Jekyll
35 | uses: actions/jekyll-build-pages@v1
36 | with:
37 | source: ./
38 | destination: ./_site
39 | - name: Upload artifact
40 | uses: actions/upload-pages-artifact@v3
41 |
42 | # Deployment job
43 | deploy:
44 | environment:
45 | name: github-pages
46 | url: ${{ steps.deployment.outputs.page_url }}
47 | runs-on: ubuntu-latest
48 | needs: build
49 | steps:
50 | - name: Deploy to GitHub Pages
51 | id: deployment
52 | uses: actions/deploy-pages@v4
53 |
--------------------------------------------------------------------------------
/_foundations/lpi_org.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: lpi
3 | commonName: Linux Professional Institute
4 | legalName: Linux Professional Institute (LPI)
5 | description: Linux Professional Institute (LPI) is the global certification standard
6 | and career support organization for open source professionals.
7 | contacturl: https://www.lpi.org/about-lpi/contact-us/
8 | website: https://www.lpi.org/
9 | foundingDate:
10 | addressCountry: CA
11 | addressRegion:
12 | newProjects: 'no'
13 | softwareType: education
14 | wikidataId: Q1429513
15 | boardSize: 14
16 | boardType: elected
17 | boardurl: https://www.lpi.org/about-lpi/meet-our-board-of-directors/
18 | teamurl:
19 | missionurl: https://www.lpi.org/why/
20 | bylawsurl: https://www.lpi.org/bylaws/
21 | numberOfEmployees:
22 | governanceOrg: https://www.lpi.org/governance/
23 | governanceTech:
24 | projectsNotable:
25 | projectsList:
26 | projectsServices:
27 | eventurl: https://www.lpi.org/events/
28 | nonprofitStatus:
29 | taxID: '876037722'
30 | taxIDLocal:
31 | budgetUsd:
32 | budgetYear:
33 | budgeturl:
34 | budgetTransparent:
35 | funding:
36 | donateurl:
37 | sponsorurl: https://www.lpi.org/about-lpi/corporate-sponsorship/
38 | sponsorList:
39 | sponsorships:
40 | licenses:
41 | claPolicy:
42 | securityurl:
43 | ethicsPolicy:
44 | policyurl: https://www.lpi.org/policies/
45 | conducturl:
46 | conductEvents:
47 | conductProjects:
48 | conductSource:
49 | conductLinked:
50 | conductReport:
51 | diversityPolicy: https://www.lpi.org/diversity-equity-and-inclusion-dei-policy/
52 | diversityDescription:
53 | brandPrimary:
54 | brandSecondary:
55 | brandReg:
56 | brandPolicy:
57 | brandUse:
58 | brandComments:
59 | logo:
60 | logoReg:
61 | subOrganization:
62 | ---
63 |
--------------------------------------------------------------------------------
/_foundations/kde.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: kde
3 | commonName: KDE
4 | legalName: KDE e.V.
5 | description:
6 | contacturl:
7 | website: https://ev.kde.org/
8 | foundingDate: 27 November 1997
9 | addressCountry: DE
10 | addressRegion:
11 | newProjects: 'yes'
12 | softwareType: various
13 | wikidataId: Q1431
14 | boardSize: 5
15 | boardType: elected
16 | boardurl: https://ev.kde.org/corporate/board/
17 | teamurl:
18 | missionurl:
19 | bylawsurl: https://ev.kde.org/corporate/statutes/
20 | numberOfEmployees: 2
21 | governanceOrg:
22 | governanceTech:
23 | projectsNotable: Plasma, Krita, Kdenlive, KDE Frameworks
24 | projectsList: https://kde.org/products/
25 | projectsServices:
26 | eventurl:
27 | nonprofitStatus: DEAssociation
28 | taxID: VR31685
29 | taxIDLocal: DE278127691
30 | budgetUsd:
31 | budgetYear:
32 | budgeturl:
33 | budgetTransparent:
34 | funding: sponsors, donations, memberships
35 | donateurl: https://kde.org/community/donations/
36 | sponsorurl: https://ev.kde.org/supporting-members/
37 | sponsorList:
38 | sponsorships:
39 | licenses: GPL; LGPL; various
40 | claPolicy: https://ev.kde.org/rules/fla/
41 | securityurl:
42 | ethicsPolicy: https://ev.kde.org/rules/ConflictofInterestPolicy.pdf
43 | conducturl: https://kde.org/code-of-conduct/
44 | conductEvents:
45 | conductSource:
46 | - ubuntu
47 | conductLinked: footer
48 | diversityPolicy:
49 | diversityDescription:
50 | brandPrimary: KDE
51 | brandSecondary:
52 | brandReg: 'yes'
53 | brandPolicy:
54 | brandUse:
55 | brandComments:
56 | logo: https://ev.kde.org/images/ev_large.png
57 | logoReg: 'yes'
58 | subOrganization:
59 | ---
60 |
61 | KDE e.V. is a registered non-profit organization that represents the KDE Project in legal and financial matters.
62 |
--------------------------------------------------------------------------------
/_foundations/opentransit.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: opentransit
3 | commonName: Open Transit
4 | legalName: Open Transit Software Foundation
5 | description:
6 | contacturl: https://opentransitsoftwarefoundation.org/contact-us/
7 | website: https://opentransitsoftwarefoundation.org/
8 | foundingDate:
9 | addressCountry: US
10 | addressRegion: WA
11 | newProjects:
12 | softwareType:
13 | wikidataId:
14 | boardSize: '12'
15 | boardType: elected by class
16 | boardurl: https://opentransitsoftwarefoundation.org/overview/board-of-directors/
17 | teamurl: https://opentransitsoftwarefoundation.org/overview/board-of-directors/
18 | missionurl: https://opentransitsoftwarefoundation.org/overview/
19 | bylawsurl: https://opentransitsoftwarefoundation.org/wp-content/uploads/OTSF-bylaws-signed-june2020.pdf
20 | numberOfEmployees:
21 | governanceOrg:
22 | governanceTech:
23 | projectsNotable:
24 | projectsList: https://onebusaway.org/
25 | projectsServices:
26 | eventurl:
27 | nonprofitStatus: Nonprofit501c3
28 | taxID: 84-1786969
29 | taxIDLocal:
30 | budgetUsd:
31 | budgetYear:
32 | budgeturl:
33 | budgetTransparent:
34 | funding:
35 | donateurl: https://opentransitsoftwarefoundation.org/donate/
36 | sponsorurl: https://opentransitsoftwarefoundation.org/overview/members/
37 | sponsorList:
38 | sponsorships:
39 | licenses:
40 | claPolicy:
41 | securityurl:
42 | ethicsPolicy:
43 | conducturl:
44 | conductEvents:
45 | conductSource:
46 | conductLinked:
47 | diversityPolicy:
48 | diversityDescription:
49 | brandPrimary:
50 | brandSecondary:
51 | brandReg:
52 | brandPolicy: https://opentransitsoftwarefoundation.org/overview/brand-guidelines/
53 | brandUse:
54 | brandComments:
55 | logo:
56 | logoReg:
57 | subOrganization:
58 | ---
59 |
60 |
--------------------------------------------------------------------------------
/_sponsorships/eclipse.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: eclipse
3 | commonName: Eclipse
4 | nonprofit: c6
5 | sponsorurl: https://www.eclipse.org/membership/exploreMembership.php
6 | levelurl: https://www.eclipse.org/membership/documents/membership-prospectus.pdf
7 | levels:
8 | first:
9 | name: Strategic
10 | amount: '300000'
11 | amountCurrency: EUR
12 | amountVaries: sliding scale by corporate revenues
13 | selector: "div.eclipsefdn-members-list > div.row:nth-of-type(1) a.link-unstyled"
14 | attr: href
15 | benefits:
16 | governance: board seat
17 | advisory: can lead working groups; seat on Foundation councils
18 | events: additional event discounts
19 | services: IP analysis and reporting
20 | marketing: access to marketing programs
21 | logo: yes, premium spot in conferences
22 | second:
23 | name: Contributing
24 | amount: '25000'
25 | amountCurrency: EUR
26 | amountVaries: sliding scale by corporate revenues
27 | selector: "div.eclipsefdn-members-list > div.row:nth-of-type(2) a.link-unstyled"
28 | attr: href
29 | benefits:
30 | governance: can vote in board elections
31 | advisory: can join working groups as voting member
32 | events: ticket and sponsorship discounts
33 | marketing: access to marketing programs
34 | logo: yes
35 | third:
36 | name: Associate
37 | amount: '25000'
38 | amountCurrency: EUR
39 | amountVaries: sliding scale by corporate revenues; 0 for nonprofits
40 | selector: "div.eclipsefdn-members-list > div.row:nth-of-type(3) a.link-unstyled"
41 | attr: href
42 | benefits:
43 | advisory: can join working groups as guest
44 | logo: yes
45 | ---
46 |
--------------------------------------------------------------------------------
/_foundations/wikimedia.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: wikimedia
3 | commonName: Wikimedia
4 | legalName: Wikimedia Foundation
5 | description:
6 | contacturl: https://wikimediafoundation.org/about/contact/
7 | website: https://wikimediafoundation.org/
8 | foundingDate:
9 | addressCountry: US
10 | addressRegion: CA
11 | newProjects:
12 | softwareType: non-code
13 | wikidataId: Q180
14 | boardSize: 12
15 | boardType:
16 | boardurl: https://wikimediafoundation.org/role/board/
17 | teamurl: https://wikimediafoundation.org/role/staff/
18 | missionurl: https://wikimediafoundation.org/who-we-are/
19 | bylawsurl:
20 | numberOfEmployees:
21 | governanceOrg:
22 | governanceTech:
23 | projectsNotable: Wikipedia
24 | projectsList: https://wikimediafoundation.org/what-we-do/wikimedia-projects/
25 | projectsServices:
26 | eventurl:
27 | nonprofitStatus: Nonprofit501c3
28 | taxID: 20-0049703
29 | taxIDLocal:
30 | budgetUsd: 120M
31 | budgetYear: '2020'
32 | budgeturl:
33 | budgetTransparent:
34 | funding:
35 | donateurl:
36 | sponsorurl:
37 | sponsorList:
38 | sponsorships:
39 | licenses:
40 | claPolicy:
41 | securityurl:
42 | ethicsPolicy:
43 | conducturl: https://foundation.wikimedia.org/wiki/Policy:Universal_Code_of_Conduct
44 | conductEvents:
45 | conductSource:
46 | conductLinked:
47 | diversityPolicy:
48 | diversityDescription:
49 | brandPrimary: Wikipedia
50 | brandSecondary: Wikimedia
51 | brandReg: yes
52 | brandPolicy: https://foundation.wikimedia.org/wiki/Policy:Wikimedia_Foundation_Trademark_Policy
53 | brandUse:
54 | brandComments:
55 | logo:
56 | logoReg:
57 | subOrganization:
58 | ---
59 |
60 | The nonprofit Wikimedia Foundation provides the essential infrastructure for free knowledge, by hosting Wikipedia and other free data sources.
61 |
--------------------------------------------------------------------------------
/_sponsorships/openstreetmap.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: openstreetmap
3 | commonName: OpenStreetMap
4 | nonprofit: LimitedByGuaranteeCharity
5 | sponsorurl: https://osmfoundation.org/wiki/Corporate_Members
6 | levelurl: https://osmfoundation.org/wiki/Join_as_a_corporate_member
7 | normalize: 'true'
8 | levels:
9 | first:
10 | name: Platinum
11 | amount: '30000'
12 | amountCurrency: EUR
13 | selector: "div.corporate-platinum a"
14 | attr: href
15 | benefits:
16 | advisory: seat on advisory board; access to general meeting
17 | marketing: sponsorship recognition on social media
18 | logo: featured
19 | second:
20 | name: Gold
21 | amount: '15000'
22 | amountCurrency: EUR
23 | selector: "div.corporate-gold a"
24 | attr: href
25 | benefits:
26 | advisory: seat on advisory board; access to general meeting
27 | marketing: sponsorship recognition on social media
28 | logo: yes
29 | third:
30 | name: Silver
31 | amount: '6000'
32 | amountCurrency: EUR
33 | selector: "div.corporate-silver a"
34 | attr: href
35 | benefits:
36 | advisory: seat on advisory board; access to general meeting
37 | marketing: sponsorship recognition on social media
38 | logo: yes
39 | fourth:
40 | name: Bronze
41 | amount: '2250'
42 | amountCurrency: EUR
43 | selector: "div.corporate-bronze a"
44 | attr: href
45 | benefits:
46 | advisory: seat on advisory board; access to general meeting
47 | logo: yes
48 | fifth:
49 | name: Supporter
50 | amount: '750'
51 | amountCurrency: EUR
52 | selector: "div.corporate-supporter a"
53 | attr: href
54 | benefits:
55 | logo: text only
56 | ---
57 |
--------------------------------------------------------------------------------
/_foundations/fsharp.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: fsharp
3 | commonName: F# Software Foundation
4 | legalName: F# Software Foundation
5 | description:
6 | contacturl:
7 | website: https://foundation.fsharp.org/
8 | foundingDate: 2014
9 | addressCountry: US
10 | addressRegion: NV
11 | newProjects:
12 | softwareType:
13 | wikidataId: Q18751291
14 | boardSize: 5
15 | boardType:
16 | boardurl: https://foundation.fsharp.org/board_and_officers
17 | teamurl:
18 | missionurl:
19 | bylawsurl: https://d3n8a8pro7vhmx.cloudfront.net/fsharp/pages/46/attachments/original/1426897574/FSSF-Bylaws-20150219.pdf?1426897574
20 | numberOfEmployees:
21 | governanceOrg:
22 | governanceTech:
23 | projectsNotable:
24 | projectsList:
25 | projectsServices:
26 | eventurl:
27 | nonprofitStatus: Nonprofit501c3
28 | taxID: 30-0845638
29 | taxIDLocal:
30 | budgetUsd:
31 | budgetYear:
32 | budgeturl:
33 | budgetTransparent:
34 | funding:
35 | donateurl:
36 | sponsorurl:
37 | sponsorList:
38 | sponsorships:
39 | licenses: MIT
40 | claPolicy:
41 | securityurl:
42 | ethicsPolicy:
43 | conducturl: https://foundation.fsharp.org/code_of_conduct
44 | conductEvents:
45 | conductSource:
46 | - ada
47 | - python
48 | - django
49 | - speakup
50 | conductLinked: nav
51 | conductReport: email; committee; conduct@
52 | diversityPolicy: https://foundation.fsharp.org/diversity
53 | diversityDescription:
54 | brandPrimary:
55 | brandSecondary:
56 | brandReg:
57 | brandPolicy:
58 | brandUse:
59 | brandComments:
60 | logo: https://fsharp.org/img/logo.png
61 | logoReg:
62 | subOrganization:
63 | ---
64 |
65 | The F# Software Foundation is a community operated, not-for-profit organization dedicated to growing, supporting, and educating a diverse community around the F# programming language ecosystem.
66 |
--------------------------------------------------------------------------------
/_foundations/mozilla.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: mozilla
3 | commonName: Mozilla
4 | legalName: Mozilla Foundation
5 | description:
6 | contacturl:
7 | website: https://www.mozilla.org/
8 | foundingDate:
9 | addressCountry: US
10 | addressRegion:
11 | newProjects:
12 | softwareType: various
13 | wikidataId: Q55672
14 | boardSize:
15 | boardType:
16 | boardurl: https://foundation.mozilla.org/en/who-we-are/leadership/
17 | teamurl:
18 | missionurl:
19 | bylawsurl: https://foundation.mozilla.org/en/who-we-are/public-records/
20 | numberOfEmployees:
21 | governanceOrg:
22 | governanceTech:
23 | projectsNotable:
24 | projectsList:
25 | projectsServices:
26 | eventurl:
27 | nonprofitStatus: Nonprofit501c3
28 | taxID: 20-0097189
29 | taxIDLocal:
30 | budgetUsd:
31 | budgetYear:
32 | budgeturl:
33 | budgetTransparent:
34 | funding:
35 | donateurl:
36 | sponsorurl: https://foundation.mozilla.org/en/what-we-fund/fellowships-and-awards-partners/
37 | sponsorList:
38 | sponsorships:
39 | licenses: MPL-2.0
40 | claPolicy:
41 | securityurl:
42 | ethicsPolicy:
43 | conducturl: https://www.mozilla.org/en-US/about/governance/policies/participation/
44 | conductEvents:
45 | conductSource:
46 | - ubuntu
47 | - citizen
48 | conductLinked: footer
49 | diversityPolicy: https://blog.mozilla.org/inclusion/
50 | diversityDescription: Initiative
51 | brandPrimary: FireFox
52 | brandSecondary: Thunderbird, Rust
53 | brandReg: 'yes'
54 | brandPolicy: https://www.mozilla.org/en-US/foundation/trademarks/
55 | brandUse:
56 | brandComments: Nicely detailed policies about various Mozilla marks.
57 | logo:
58 | logoReg: 'yes'
59 | subOrganization:
60 | ---
61 |
62 | The Mozilla Foundation works to ensure the internet remains a public resource that is open and accessible to us all.
63 |
--------------------------------------------------------------------------------
/_foundations/creativecommons.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: creativecommons
3 | commonName: Creative Commons
4 | legalName: Creative Commons
5 | description:
6 | contacturl: https://creativecommons.org/about/contact
7 | website: https://creativecommons.org/
8 | foundingDate:
9 | addressCountry: US
10 | addressRegion: CA
11 | newProjects:
12 | softwareType:
13 | wikidataId: Q43449
14 | boardSize: '12'
15 | boardType:
16 | boardurl: https://creativecommons.org/mission/team/
17 | teamurl: https://creativecommons.org/mission/team/
18 | missionurl:
19 | bylawsurl:
20 | numberOfEmployees:
21 | governanceOrg:
22 | governanceTech:
23 | projectsNotable:
24 | projectsList:
25 | projectsServices:
26 | eventurl:
27 | nonprofitStatus: Nonprofit501c3
28 | taxID: 04-3585301
29 | taxIDLocal:
30 | budgetUsd:
31 | budgetYear:
32 | budgeturl:
33 | budgetTransparent:
34 | funding:
35 | donateurl: https://creativecommons.org/about/support-cc/
36 | sponsorurl: https://creativecommons.org/support-cc/open-infrastructure-circle/
37 | sponsorList:
38 | sponsorships:
39 | licenses: https://creativecommons.org/policies/#licensing%20statement
40 | claPolicy:
41 | securityurl:
42 | ethicsPolicy:
43 | conducturl: https://creativecommons.org/code-of-conduct/
44 | conductEvents:
45 | conductSource:
46 | - covenant
47 | - geekfeminism
48 | - ubuntu
49 | - citizen
50 | - Mozilla
51 | conductLinked:
52 | diversityPolicy:
53 | diversityDescription:
54 | brandPrimary:
55 | brandSecondary:
56 | brandReg:
57 | brandPolicy: https://creativecommons.org/policies/#trademark
58 | brandUse:
59 | brandComments:
60 | logo:
61 | logoReg:
62 | subOrganization:
63 | policyurl: https://creativecommons.org/policies
64 | annualReport: https://creativecommons.org/2022/04/05/2021-annual-report/
65 | ---
66 |
67 |
--------------------------------------------------------------------------------
/_foundations/ocf.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: ocf
3 | commonName: Open Collective Foundation
4 | legalName: Open Collective Foundation
5 | description: Past fiscal host for FOSS projects; shutting down in 2024
6 | contacturl:
7 | website: https://opencollective.foundation
8 | foundingDate: '2017'
9 | dissolutionDate: '2024'
10 | addressCountry: US
11 | addressRegion: CA
12 | newProjects: 'no'
13 | softwareType: various
14 | wikidataId: Q131848318
15 | boardSize: '5'
16 | boardType: appointed
17 | boardurl: https://docs.opencollective.foundation/about/governance/board-members
18 | teamurl:
19 | missionurl:
20 | bylawsurl: https://docs.opencollective.foundation/about/governance/bylaws
21 | numberOfEmployees:
22 | governanceOrg:
23 | governanceTech:
24 | projectsNotable:
25 | projectsList:
26 | projectsServices:
27 | eventurl:
28 | nonprofitStatus: Nonprofit501c3
29 | taxID: 81-4004928
30 | taxIDLocal:
31 | budgetUsd:
32 | budgetYear:
33 | budgeturl:
34 | budgetTransparent:
35 | funding:
36 | donateurl:
37 | sponsorurl:
38 | sponsorList:
39 | sponsorships:
40 | licenses:
41 | claPolicy:
42 | securityurl:
43 | ethicsPolicy:
44 | conducturl:
45 | conductEvents:
46 | conductSource:
47 | conductLinked:
48 | diversityPolicy:
49 | diversityDescription:
50 | brandPrimary:
51 | brandSecondary:
52 | brandReg:
53 | brandPolicy:
54 | brandUse:
55 | brandComments:
56 | logo:
57 | logoReg:
58 | subOrganization:
59 | ---
60 |
61 | The Open Collective Foundation used to provide nonprofit status + fundraising + money management software to aligned groups. However, the [OCF has announced they are terminating operations](https://blog.opencollective.com/open-collective-official-statement-ocf-dissolution/) by the end of 2024, so this entry will be left as a historical record.
62 |
--------------------------------------------------------------------------------
/_data/p990/854376974.json:
--------------------------------------------------------------------------------
1 | {
2 | "organization": {
3 | "id": 854376974,
4 | "ein": 854376974,
5 | "name": "Rust Foundation",
6 | "careofname": null,
7 | "address": "8 THE GREEN 11976",
8 | "city": "Dover",
9 | "state": "DE",
10 | "zipcode": "19901",
11 | "exemption_number": null,
12 | "subsection_code": 6,
13 | "affiliation_code": null,
14 | "classification_codes": null,
15 | "ruling_date": null,
16 | "deductibility_code": null,
17 | "foundation_code": null,
18 | "activity_codes": null,
19 | "organization_code": null,
20 | "exempt_organization_status_code": null,
21 | "tax_period": null,
22 | "asset_code": null,
23 | "income_code": null,
24 | "filing_requirement_code": null,
25 | "pf_filing_requirement_code": null,
26 | "accounting_period": null,
27 | "asset_amount": null,
28 | "income_amount": null,
29 | "revenue_amount": null,
30 | "ntee_code": null,
31 | "sort_name": null,
32 | "created_at": "2024-12-19T14:51:20.599Z",
33 | "updated_at": "2024-12-19T16:36:33.491Z",
34 | "data_source": "xml_backfill",
35 | "have_extracts": null,
36 | "have_pdfs": null,
37 | "latest_object_id": "202433179349308418"
38 | },
39 | "filings_with_data": [],
40 | "filings_without_data": [],
41 | "data_source": "ProPublica Nonprofit Explorer API: https://projects.propublica.org/nonprofits/api/\nIRS Exempt Organizations Business Master File Extract (EO BMF): https://www.irs.gov/charities-non-profits/exempt-organizations-business-master-file-extract-eo-bmf\nIRS Annual Extract of Tax-Exempt Organization Financial Data: https://www.irs.gov/uac/soi-tax-stats-annual-extract-of-tax-exempt-organization-financial-data",
42 | "api_version": 2
43 | }
--------------------------------------------------------------------------------
/_data/sponsorships/lfenergy.json:
--------------------------------------------------------------------------------
1 | {
2 | "first": [
3 | "alliander.com",
4 | "google.com",
5 | "microsoft.com",
6 | "rte-france.com",
7 | "shell.com"
8 | ],
9 | "second": [
10 | "artelys.com",
11 | "aspentech.com",
12 | "aveva.com",
13 | "chargebyte.com",
14 | "d-fine.com",
15 | "energinet.dk",
16 | "futurewei.com",
17 | "ge.com",
18 | "hydroquebec.com",
19 | "lutech.group",
20 | "pionix.de",
21 | "recurve.com",
22 | "savoirfairelinux.com",
23 | "sensereply.com",
24 | "statnett.no",
25 | "tennet.eu",
26 | "utilidata.com",
27 | "utilityapi.com",
28 | "vattenfalleldistribution.se",
29 | "wattcarbon.com",
30 | "welotec.com"
31 | ],
32 | "third": [
33 | "carbon.coop",
34 | "centerdenmark.com",
35 | "cresym.eu",
36 | "tudelft.nl",
37 | "edsn.nl",
38 | "tue.nl",
39 | "elaad.nl",
40 | "epri.com",
41 | "enaccess.org",
42 | "ef.org",
43 | "energyai.berlin",
44 | "energytag.org",
45 | "entsoe.eu",
46 | "epfl.ch",
47 | "fiware.org",
48 | "iis.fraunhofer.de",
49 | "fau.eu",
50 | "iastate.edu",
51 | "kth.se",
52 | "hslu.ch",
53 | "mrets.org",
54 | "nrel.gov",
55 | "openclimatefix.org",
56 | "openearth.org",
57 | "openadr.org",
58 | "openuk.uk",
59 | "owntech.org",
60 | "pecanstreet.org",
61 | "project-haystack.org",
62 | "rwth-aachen.de",
63 | "stanford.edu",
64 | "turing.ac.uk",
65 | "energycoalition.org",
66 | "trustedcomputinggroup.org",
67 | "uitm.edu.my",
68 | "uni-kassel.de",
69 | "vanderbilt.edu",
70 | "volta.foundation",
71 | "wsu.edu",
72 | "watttime.org"
73 | ],
74 | "parseDate": "20240926"
75 | }
--------------------------------------------------------------------------------
/_foundations/plone.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: plone
3 | commonName: Plone
4 | legalName: Plone Foundation
5 | description:
6 | contacturl:
7 | website: https://plone.org/foundation/committees/ip/policy
8 | foundingDate:
9 | addressCountry: US
10 | addressRegion:
11 | newProjects:
12 | softwareType: content
13 | wikidataId: Q924422
14 | boardSize: 7
15 | boardType:
16 | boardurl: https://plone.org/foundation/board
17 | teamurl:
18 | missionurl:
19 | bylawsurl:
20 | numberOfEmployees:
21 | governanceOrg:
22 | governanceTech:
23 | projectsNotable:
24 | projectsList:
25 | projectsServices:
26 | eventurl:
27 | nonprofitStatus: Nonprofit501c3
28 | taxID: 56-2468025
29 | taxIDLocal:
30 | budgetUsd:
31 | budgetYear:
32 | budgeturl:
33 | budgetTransparent:
34 | funding:
35 | donateurl:
36 | sponsorurl: https://plone.org/sponsors
37 | sponsorList: https://plone.org/foundation/sponsorship/sponsors
38 | sponsorships:
39 | - plone
40 | licenses: GPL-2.0-or-later
41 | claPolicy: https://plone.org/foundation/contributors-agreement
42 | securityurl: https://plone.org/security
43 | ethicsPolicy:
44 | conducturl: https://plone.org/foundation/about/materials/foundation-resolutions/code-of-conduct
45 | conductEvents:
46 | conductSource:
47 | conductLinked: footer
48 | diversityPolicy: https://plone.org/news/foundation/materials/foundation-resolutions/diversity-statement
49 | diversityDescription: Statement supporting diversity
50 | brandPrimary: Plone
51 | brandSecondary:
52 | brandReg: 'yes'
53 | brandPolicy: https://plone.org/foundation/committees/ip/policy
54 | brandUse:
55 | brandComments:
56 | logo:
57 | logoReg: 'yes'
58 | subOrganization:
59 | ---
60 |
61 | The Plone Foundation exists to further the development, marketing, and legal affairs of Plone and the Plone community.
62 |
--------------------------------------------------------------------------------
/_foundations/django.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: django
3 | commonName: Django
4 | legalName: Django Software Foundation
5 | description:
6 | contacturl: https://www.djangoproject.com/contact/foundation/
7 | website: https://www.djangoproject.com/
8 | foundingDate:
9 | addressCountry: US
10 | addressRegion: KS
11 | newProjects:
12 | softwareType: content
13 | wikidataId: Q5285237
14 | boardSize: 7
15 | boardType: elected
16 | boardurl: https://www.djangoproject.com/foundation/#board
17 | teamurl:
18 | missionurl:
19 | bylawsurl: https://www.djangoproject.com/m/foundation/bylaws.pdf
20 | numberOfEmployees:
21 | governanceOrg:
22 | governanceTech:
23 | projectsNotable:
24 | projectsList:
25 | projectsServices:
26 | eventurl:
27 | nonprofitStatus: Nonprofit501c3
28 | taxID: 26-2708549
29 | taxIDLocal:
30 | budgetUsd:
31 | budgetYear:
32 | budgeturl:
33 | budgetTransparent:
34 | funding:
35 | donateurl:
36 | sponsorurl: https://www.djangoproject.com/fundraising/
37 | sponsorList: https://www.djangoproject.com/foundation/corporate-members/
38 | sponsorships:
39 | licenses: BSD-3-Clause
40 | claPolicy: https://www.djangoproject.com/foundation/cla/faq/
41 | securityurl:
42 | ethicsPolicy:
43 | conducturl: https://www.djangoproject.com/conduct/
44 | conductEvents:
45 | conductSource:
46 | - speakup
47 | conductLinked: footer
48 | diversityPolicy: https://www.djangoproject.com/diversity/
49 | diversityDescription: Statement supporting diversity
50 | brandPrimary: Django
51 | brandSecondary:
52 | brandReg: 'yes'
53 | brandPolicy: https://www.djangoproject.com/trademarks/
54 | brandUse:
55 | brandComments:
56 | logo:
57 | logoReg:
58 | subOrganization:
59 | ---
60 |
61 | The Django Software Foundation promotes, supports, and advances the goals of the Django Python web framework.
62 |
--------------------------------------------------------------------------------
/_foundations/processingfoundation.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: processingfoundation
3 | commonName: Processing Foundation
4 | legalName: Processing Foundation, Inc.
5 | website: https://processingfoundation.org
6 | foundingDate: 2012
7 | addressCountry: US
8 | addressRegion: NY
9 | newProjects: no
10 | softwareType: education
11 | wikidataId: Q56057168
12 | taxID: 46-0830259
13 | taxIDLocal: 44-50-31
14 | nonprofitStatus: Nonprofit501c3
15 | boardSize: 10
16 | boardType: appointed
17 | boardurl: https://processingfoundation.org/people
18 | bylawsurl:
19 | numberOfEmployees:
20 | funding: individual donations, grants, sponsorships
21 | budgetUsd: 1056277
22 | budgetYear: 2023
23 | budgeturl: https://processingfoundation.report/
24 | sponsorurl:
25 | sponsorList:
26 | licenses: GPL-2.0, LGPL-2.1, CC-BY-NC-SA-4.0
27 | claPolicy:
28 | ethicsPolicy:
29 | governanceOrg:
30 | governanceTech:
31 | projectsNotable:
32 | projectsList:
33 | projectsServices:
34 | logo: https://commons.wikimedia.org/wiki/File:Processing_Foundation_2021_logo.svg
35 | logoReg:
36 | brandPrimary:
37 | brandSecondary:
38 | brandPolicy:
39 | brandReg:
40 | brandUse:
41 | brandComments:
42 | conducturl:
43 | conductProjects:
44 | - https://github.com/processing/processing-website?tab=coc-ov-file
45 | - https://github.com/processing/p5.js/blob/main/CODE_OF_CONDUCT.md
46 | conductEvents:
47 | conductSource:
48 | - covenant
49 | conductLinked:
50 | diversityPolicy:
51 | diversityDescription:
52 | ---
53 |
54 | The Processing Foundation is a nonprofit organization that develops open-source software projects, including Processing and p5.js, to promote coding education and encourage artistic exploration in STEM fields, with a focus on accessibility and supporting marginalized communities.
55 |
--------------------------------------------------------------------------------
/_foundations/rust.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: rust
3 | commonName: Rust
4 | legalName: Rust Foundation
5 | description:
6 | contacturl:
7 | website: https://foundation.rust-lang.org/
8 | foundingDate: 2021
9 | addressCountry: US
10 | addressRegion: DE
11 | newProjects: 'no'
12 | softwareType: language
13 | wikidataId: Q105394699
14 | boardSize: 12
15 | boardType:
16 | boardurl: https://foundation.rust-lang.org/about/
17 | teamurl:
18 | missionurl:
19 | bylawsurl: https://foundation.rust-lang.org/policies/bylaws/
20 | numberOfEmployees: 10
21 | governanceOrg:
22 | governanceTech:
23 | projectsNotable:
24 | projectsList:
25 | projectsServices:
26 | eventurl:
27 | nonprofitStatus: Nonprofit501c6
28 | taxID: 85-4376974
29 | taxIDLocal:
30 | budgetUsd: 1.9M
31 | budgetYear: 2022
32 | budgeturl: https://foundation.rust-lang.org/resources/
33 | budgetTransparent:
34 | funding:
35 | donateurl:
36 | sponsorurl: https://foundation.rust-lang.org/members/
37 | sponsorList:
38 | sponsorships:
39 | licenses: Apache-2.0; MIT
40 | claPolicy:
41 | securityurl:
42 | ethicsPolicy: https://foundation.rust-lang.org/policies/conflict-of-interest-policy/
43 | conducturl: https://foundation.rust-lang.org/policies/code-of-conduct/
44 | conductEvents:
45 | conductSource:
46 | conductLinked: footer
47 | diversityPolicy:
48 | diversityDescription:
49 | brandPrimary: Rust
50 | brandSecondary: Cargo
51 | brandReg:
52 | brandPolicy: https://foundation.rust-lang.org/policies/logo-policy-and-media-guide/
53 | brandUse:
54 | brandComments:
55 | logo: https://foundation.rust-lang.org/img/rust-logo-blk.svg
56 | logoReg:
57 | subOrganization:
58 | ---
59 |
60 | The Rust Foundation is run by a small team of full time staff, and governed by a Board of Directors who represent the Rust project and our member companies.
61 |
--------------------------------------------------------------------------------
/_data/p990/200105056.json:
--------------------------------------------------------------------------------
1 | {
2 | "organization": {
3 | "id": 200105056,
4 | "ein": 200105056,
5 | "name": "Haiku Inc",
6 | "careofname": "% RYAN LEAVENGOOD",
7 | "address": "1381 HARVEST VIEW XING",
8 | "city": "Loxahatchee",
9 | "state": "FL",
10 | "zipcode": "33470-2148",
11 | "exemption_number": 0,
12 | "subsection_code": 3,
13 | "affiliation_code": 3,
14 | "classification_codes": "1000",
15 | "ruling_date": "2004-06-01",
16 | "deductibility_code": 1,
17 | "foundation_code": 15,
18 | "activity_codes": "000000000",
19 | "organization_code": 1,
20 | "exempt_organization_status_code": 1,
21 | "tax_period": "2021-12-01",
22 | "asset_code": 0,
23 | "income_code": 0,
24 | "filing_requirement_code": 2,
25 | "pf_filing_requirement_code": 0,
26 | "accounting_period": 12,
27 | "asset_amount": 0,
28 | "income_amount": 0,
29 | "revenue_amount": 0,
30 | "ntee_code": "U41",
31 | "sort_name": null,
32 | "created_at": "2023-05-09T20:35:38.556Z",
33 | "updated_at": "2024-01-04T01:33:52.237Z",
34 | "data_source": "current_2024_01_04",
35 | "have_extracts": null,
36 | "have_pdfs": null,
37 | "latest_object_id": null
38 | },
39 | "filings_with_data": [
40 |
41 | ],
42 | "filings_without_data": [
43 |
44 | ],
45 | "data_source": "ProPublica Nonprofit Explorer API: https://projects.propublica.org/nonprofits/api/\nIRS Exempt Organizations Business Master File Extract (EO BMF): https://www.irs.gov/charities-non-profits/exempt-organizations-business-master-file-extract-eo-bmf\nIRS Annual Extract of Tax-Exempt Organization Financial Data: https://www.irs.gov/uac/soi-tax-stats-annual-extract-of-tax-exempt-organization-financial-data",
46 | "api_version": 2
47 | }
--------------------------------------------------------------------------------
/_data/p990/300845638.json:
--------------------------------------------------------------------------------
1 | {
2 | "organization": {
3 | "id": 300845638,
4 | "ein": 300845638,
5 | "name": "F Software Foundation",
6 | "careofname": null,
7 | "address": "3773 HOWARD HUGHES PKWY STE 500",
8 | "city": "Las Vegas",
9 | "state": "NV",
10 | "zipcode": "89169-5940",
11 | "exemption_number": 0,
12 | "subsection_code": 3,
13 | "affiliation_code": 3,
14 | "classification_codes": "2000",
15 | "ruling_date": "2015-12-01",
16 | "deductibility_code": 1,
17 | "foundation_code": 15,
18 | "activity_codes": "000000000",
19 | "organization_code": 1,
20 | "exempt_organization_status_code": 1,
21 | "tax_period": "2021-12-01",
22 | "asset_code": 0,
23 | "income_code": 0,
24 | "filing_requirement_code": 2,
25 | "pf_filing_requirement_code": 0,
26 | "accounting_period": 12,
27 | "asset_amount": 0,
28 | "income_amount": 0,
29 | "revenue_amount": 0,
30 | "ntee_code": "U41",
31 | "sort_name": null,
32 | "created_at": "2023-05-09T20:37:13.378Z",
33 | "updated_at": "2024-01-04T01:34:44.876Z",
34 | "data_source": "current_2024_01_04",
35 | "have_extracts": null,
36 | "have_pdfs": null,
37 | "latest_object_id": null
38 | },
39 | "filings_with_data": [
40 |
41 | ],
42 | "filings_without_data": [
43 |
44 | ],
45 | "data_source": "ProPublica Nonprofit Explorer API: https://projects.propublica.org/nonprofits/api/\nIRS Exempt Organizations Business Master File Extract (EO BMF): https://www.irs.gov/charities-non-profits/exempt-organizations-business-master-file-extract-eo-bmf\nIRS Annual Extract of Tax-Exempt Organization Financial Data: https://www.irs.gov/uac/soi-tax-stats-annual-extract-of-tax-exempt-organization-financial-data",
46 | "api_version": 2
47 | }
--------------------------------------------------------------------------------
/_foundations/clojuriststogether.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: clojuriststogether
3 | commonName: Clojurists Together
4 | legalName: Clojurists Together Foundation
5 | description: The Clojurists Together Foundation is a trade organisation, dedicated to funding and supporting open source software, infrastructure, and documentation that is important to the Clojure and ClojureScript community.
6 | contacturl:
7 | website: https://www.clojuriststogether.org
8 | foundingDate: 2019
9 | addressCountry: US
10 | addressRegion: DE
11 | newProjects:
12 | softwareType: language
13 | wikidataId:
14 | boardSize: 7
15 | boardType: (non-paid) member elected
16 | boardurl: https://www.clojuriststogether.org/team/
17 | teamurl: https://www.clojuriststogether.org/team/
18 | missionurl:
19 | bylawsurl:
20 | numberOfEmployees:
21 | governanceOrg:
22 | governanceTech:
23 | projectsNotable:
24 | projectsList: https://www.clojuriststogether.org/projects/
25 | projectsServices:
26 | eventurl:
27 | nonprofitStatus: Nonprofit501c6
28 | taxID: 84-3661535
29 | taxIDLocal:
30 | budgetUsd:
31 | budgetYear:
32 | budgeturl:
33 | budgetTransparent:
34 | funding:
35 | donateurl: https://www.clojuriststogether.org/companies/
36 | sponsorurl: https://www.clojuriststogether.org/members/
37 | sponsorList:
38 | licenses:
39 | claPolicy:
40 | securityurl:
41 | ethicsPolicy:
42 | conducturl: https://www.clojuriststogether.org/docs/code-of-conduct/
43 | conductEvents:
44 | conductSource:
45 | - covenant
46 | conductLinked: footer
47 | conductReport: email; single; conduct@
48 | diversityPolicy:
49 | diversityDescription:
50 | brandPrimary:
51 | brandSecondary:
52 | brandReg:
53 | brandPolicy:
54 | brandUse:
55 | brandComments:
56 | logo:
57 | logoReg:
58 | subOrganization:
59 | ---
60 |
61 | Funding critical Clojure open source software
62 |
--------------------------------------------------------------------------------
/_foundations/lfcharities.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: lfcharities
3 | commonName: LF Charities
4 | legalName: LF Charities Inc
5 | description: A non-profit fiscal host working closely with the LF.
6 | contacturl: https://lf-charities.org/contact/
7 | website: https://lf-charities.org/
8 | foundingDate: 2020
9 | addressCountry: US
10 | addressRegion: CA
11 | newProjects: 'yes'
12 | softwareType: various
13 | wikidataId:
14 | boardSize: 1
15 | boardType: appointed
16 | boardurl:
17 | teamurl:
18 | missionurl:
19 | bylawsurl:
20 | numberOfEmployees:
21 | governanceOrg:
22 | governanceTech:
23 | projectsNotable: Tazama
24 | projectsList: https://lf-charities.org/
25 | projectsServices:
26 | eventurl:
27 | nonprofitStatus: Nonprofit501c3
28 | taxID: 84-1730246
29 | taxIDLocal:
30 | budgetUsd: 500000
31 | budgetYear: 2022
32 | budgeturl: https://projects.propublica.org/nonprofits/organizations/841730246/202303179349304755/full
33 | budgetTransparent:
34 | funding:
35 | donateurl:
36 | sponsorurl:
37 | sponsorList:
38 | sponsorships:
39 | licenses:
40 | claPolicy:
41 | securityurl:
42 | ethicsPolicy: https://lf-charities.org/antitrust-policy/
43 | conducturl: https://www.kernel.org/doc/html/latest/process/code-of-conduct.html
44 | conductEvents:
45 | conductSource:
46 | conductLinked:
47 | diversityPolicy:
48 | diversityDescription:
49 | brandPrimary:
50 | brandSecondary:
51 | brandReg:
52 | brandPolicy: https://lf-charities.org/trademark-policy/
53 | brandUse:
54 | brandComments:
55 | logo:
56 | logoReg:
57 | subOrganization:
58 | ---
59 |
60 | Through LF Charities, Inc. (“LF Charities”), we aim to accelerate this effort, by educating, inspiring, and empowering technologists and their communities; and supporting them with necessary funding by facilitating charitable and philanthropic donations of funds.
61 |
--------------------------------------------------------------------------------
/_foundations/opentechfund.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: opentechfund
3 | commonName: OpenTechFund
4 | legalName: Open Technology Fund
5 | description: OTF | Supporting Internet Freedom Worldwide
6 | contacturl:
7 | website: https://www.opentech.fund/
8 | foundingDate:
9 | addressCountry: US
10 | addressRegion: DC
11 | newProjects: true
12 | softwareType: grantmaker
13 | wikidataId: Q24910455
14 | boardSize: 8
15 | boardType:
16 | boardurl: https://www.opentech.fund/about/people-type/board/
17 | teamurl: https://www.opentech.fund/about/people-type/staff/
18 | missionurl: https://www.opentech.fund/about/values-principles/
19 | bylawsurl:
20 | numberOfEmployees: 24
21 | governanceOrg:
22 | governanceTech:
23 | projectsNotable:
24 | projectsList: https://www.opentech.fund/projects-we-support/supported-projects/
25 | projectsServices:
26 | eventurl:
27 | nonprofitStatus: Nonprofit501c3
28 | taxID: 84-3126447
29 | taxIDLocal:
30 | budgetUsd:
31 | budgetYear:
32 | budgeturl: https://www.opentech.fund/about/about-our-funding/
33 | budgetTransparent:
34 | funding: grants
35 | donateurl:
36 | sponsorurl:
37 | sponsorList:
38 | sponsorships:
39 | licenses:
40 | claPolicy:
41 | securityurl:
42 | ethicsPolicy:
43 | conducturl:
44 | conductEvents:
45 | conductSource:
46 | conductLinked:
47 | diversityPolicy:
48 | diversityDescription:
49 | brandPrimary:
50 | brandSecondary:
51 | brandReg:
52 | brandPolicy:
53 | brandUse:
54 | brandComments:
55 | logo:
56 | logoReg:
57 | subOrganization:
58 | ---
59 |
60 | Open Technology Fund (OTF) works to advance internet freedom in repressive environments by supporting the research, development, implementation, and maintenance of technologies that counter censorship and combat repressive surveillance to enable all citizens to exercise their fundamental human rights online.
61 |
--------------------------------------------------------------------------------
/_data/p990/841786969.json:
--------------------------------------------------------------------------------
1 | {
2 | "organization": {
3 | "id": 841786969,
4 | "ein": 841786969,
5 | "name": "Open Transit Software Foundation",
6 | "careofname": "% ALAN BORNING",
7 | "address": "PO BOX 222554",
8 | "city": "Seattle",
9 | "state": "WA",
10 | "zipcode": "98122-0000",
11 | "exemption_number": 0,
12 | "subsection_code": 3,
13 | "affiliation_code": 3,
14 | "classification_codes": "1000",
15 | "ruling_date": "2019-09-01",
16 | "deductibility_code": 1,
17 | "foundation_code": 15,
18 | "activity_codes": "000000000",
19 | "organization_code": 1,
20 | "exempt_organization_status_code": 1,
21 | "tax_period": "2022-12-01",
22 | "asset_code": 0,
23 | "income_code": 0,
24 | "filing_requirement_code": 2,
25 | "pf_filing_requirement_code": 0,
26 | "accounting_period": 12,
27 | "asset_amount": 0,
28 | "income_amount": 0,
29 | "revenue_amount": 0,
30 | "ntee_code": "S20",
31 | "sort_name": null,
32 | "created_at": "2023-05-09T20:43:46.113Z",
33 | "updated_at": "2024-01-04T01:38:47.342Z",
34 | "data_source": "current_2024_01_04",
35 | "have_extracts": null,
36 | "have_pdfs": null,
37 | "latest_object_id": null
38 | },
39 | "filings_with_data": [
40 |
41 | ],
42 | "filings_without_data": [
43 |
44 | ],
45 | "data_source": "ProPublica Nonprofit Explorer API: https://projects.propublica.org/nonprofits/api/\nIRS Exempt Organizations Business Master File Extract (EO BMF): https://www.irs.gov/charities-non-profits/exempt-organizations-business-master-file-extract-eo-bmf\nIRS Annual Extract of Tax-Exempt Organization Financial Data: https://www.irs.gov/uac/soi-tax-stats-annual-extract-of-tax-exempt-organization-financial-data",
46 | "api_version": 2
47 | }
--------------------------------------------------------------------------------
/_sponsorships/numfocus.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: numfocus
3 | commonName: NumFOCUS
4 | nonprofit: c3
5 | sponsorurl: https://numfocus.org/sponsors
6 | levelurl: https://numfocus.org/sponsors/become-a-sponsor
7 | normalize: 'true'
8 | levels:
9 | first:
10 | name: principal
11 | amount: '100000'
12 | selector: ".et_pb_section_1 .et_pb_row_1 div > a"
13 | attr: href
14 | benefits:
15 | events: All as Sustaining level plus Diamond PyData sponsorship
16 | second:
17 | name: sustaining
18 | amount: '50000'
19 | selector: ".et_pb_section_1 .et_pb_row_4 div > a"
20 | attr: href
21 | benefits:
22 | governance: seat on NumFocus Advisory Council
23 | advisory: In person presentation by NumFOCUS team
24 | events: event invitation; PyData Platinum sponsorship
25 | third:
26 | name: contributing
27 | amount: '10000'
28 | selector: ".et_pb_section_1 .et_pb_row_7 div > a"
29 | attr: href
30 | benefits:
31 | advisory: virtual presentation by NumFOCUS team
32 | events: PyData Gold event sponsorship
33 | community:
34 | name: platinum
35 | amount: '1000'
36 | selector: ".et_pb_section_1 .et_pb_row_10 div > a"
37 | attr: href
38 | benefits:
39 | marketing: partner spotlight features
40 | logo: 'yes'
41 | startuppartners:
42 | name: startuppartners
43 | amount: '0'
44 | selector: ".et_pb_section_1 .et_pb_row_13 a"
45 | attr: href
46 | benefits:
47 | governance: ''
48 | events: ''
49 | marketing: ''
50 | logo: ''
51 | grants:
52 | name: grants
53 | amount: '0'
54 | selector: ".et_pb_section_2 a"
55 | attr: href
56 | benefits:
57 | governance: ''
58 | events: ''
59 | marketing: ''
60 | logo: ''
61 | ---
62 |
--------------------------------------------------------------------------------
/_foundations/matrix.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: matrix
3 | commonName: The Matrix.org Foundation
4 | legalName: THE MATRIX.ORG FOUNDATION C.I.C.
5 | description: Neutral custodian of the Matrix community assets
6 | contacturl: https://matrix.org/contact/
7 | website: https://matrix.org/
8 | foundingDate: 29 October 2018
9 | addressCountry: UK
10 | addressRegion:
11 | newProjects: 'yes'
12 | softwareType: various
13 | wikidataId: Q111043933
14 | boardSize: 23
15 | boardType: elected
16 | boardurl: https://matrix.org/foundation/governing-board/
17 | teamurl: https://matrix.org/foundation/about/#the-staff-of-the-foundation
18 | missionurl: https://matrix.org/foundation/about/
19 | bylawsurl: https://matrix.org/foundation/governing-board/bylaws/02-bylaws/
20 | numberOfEmployees: 5
21 | governanceOrg:
22 | governanceTech:
23 | projectsNotable: Matrix Spec, Matrix Rust SDK, Matrix JS SDK
24 | projectsList: https://matrix.org/ecosystem
25 | projectsServices:
26 | eventurl:
27 | nonprofitStatus: CommunityInterestCompany
28 | taxID: 11648710
29 | taxIDLocal: GB-COH-11648710
30 | budgetUsd:
31 | budgetYear:
32 | budgeturl:
33 | budgetTransparent:
34 | funding: sponsors, donations, memberships
35 | donateurl: https://donorbox.org/keep-matrix-exciting
36 | sponsorurl: https://matrix.org/membership/
37 | sponsorList:
38 | sponsorships:
39 | licenses: Apache
40 | claPolicy:
41 | securityurl:
42 | ethicsPolicy:
43 | conducturl: https://matrix.org/legal/code-of-conduct/
44 | conductEvents:
45 | conductSource:
46 | - covenant
47 | conductLinked:
48 | diversityPolicy:
49 | diversityDescription:
50 | brandPrimary: Matrix.org
51 | brandSecondary:
52 | brandReg: 'yes'
53 | brandPolicy:
54 | brandUse:
55 | brandComments:
56 | logo: https://matrix.org/images/matrix-logo-white.svg
57 | logoReg: 'yes'
58 | subOrganization:
59 | ---
60 |
--------------------------------------------------------------------------------
/_pages/openapi.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: "OpenAPI Documentation"
3 | excerpt: "OpenAPI plans and concepts."
4 | layout: default
5 | permalink: /openapi
6 | parent: Data Models
7 | nav_order: 99
8 | ---
9 |
10 | ## OpenAPI Roadmap
11 |
12 | We plan to use OpenAPI to provide read-only access to discover listed foundations, as well as get metadata for a foundation.
13 |
14 | ### Concept
15 |
16 | - Foundation frontmatter metadata matches [openapi/.../foundation-schema.yaml](https://github.com/Punderthings/fossfoundation/blob/main/openapi/v1/foundation-schema.yaml)
17 | - Find the list of foundations by identifier ([openapi](https://github.com/Punderthings/fossfoundation/blob/main/openapi/v1/openapi.yaml#L43)):
18 | - `GET https://raw.githubusercontent.com/Punderthings/fossfoundation/main/_foundations/list.json`
19 | - Returns `{"almalinux": ["almalinux.org","AlmaLinux","AlmaLinux OS Foundation"], "asf": ["apache.org", ...`
20 | - Get data for a single foundation ([openapi](https://github.com/Punderthings/fossfoundation/blob/main/openapi/v1/openapi.yaml#L57)):
21 | - `GET https://raw.githubusercontent.com/Punderthings/fossfoundation/main/_foundations/asf.md`
22 | - Returns:
23 |
24 | ```YAML
25 | ---
26 | identifier: asf
27 | commonName: Apache Software Foundation
28 | legalName: Apache Software Foundation
29 | description:
30 | contacturl:
31 | website: https://www.apache.org/
32 | foundingDate: '1999'
33 | etc.
34 | ```
35 |
36 | ### TODOs
37 |
38 | - Build update tooling based on schema to create the _foundations/list.json based on all foundation.md files checked in.
39 | - Build PR linting actions based on that schema.
40 | - Replicate for entities, sponsorships, etc.
41 | - What else do we need to build tooling from to ensure data models are kept linted?
42 | - What other read-only OpenAPI access should we provide?
43 |
--------------------------------------------------------------------------------
/_data/sponsorships/asf.json:
--------------------------------------------------------------------------------
1 | {
2 | "first": [
3 | "apple.com",
4 | "aws.amazon.com",
5 | "meta.com",
6 | "geico.com",
7 | "google.com",
8 | "huawei.com",
9 | "microsoft.com",
10 | "news.apache.org",
11 | "snowflake.com",
12 | "visa.com",
13 | "yahooinc.com"
14 | ],
15 | "second": [
16 | "aiven.io",
17 | "apache.org",
18 | "baidu.com",
19 | "bloomberg.com",
20 | "opensource.bytedance.com",
21 | "cloudera.com",
22 | "confluent.io",
23 | "ibm.com",
24 | "union-investment.de",
25 | "workday.com"
26 | ],
27 | "third": [
28 | "americanexpress.com",
29 | "capitalone.com",
30 | "indeed.com",
31 | "lycorp.co.jp",
32 | "redhat.com"
33 | ],
34 | "fourth": [
35 | "canva.com",
36 | "cargurus.com",
37 | "curity.io",
38 | "gridgain.com",
39 | "getgrist.com",
40 | "libriciel.fr",
41 | "rx-m.com",
42 | "renre.com",
43 | "sentry.io"
44 | ],
45 | "firstinkind": [
46 | "aws.amazon.com",
47 | "cloudbees.com",
48 | "dlapiper.com",
49 | "gradle.com",
50 | "jfrog.com",
51 | "microsoft.com",
52 | "yahooinc.com",
53 | "sonatype.com",
54 | "jetbrains.com",
55 | "fastly.com",
56 | "github.com"
57 | ],
58 | "secondinkind": [
59 | "atlassian.com",
60 | "datadoghq.com",
61 | "docker.com",
62 | "phoenixnap.com",
63 | "dinosource.co"
64 | ],
65 | "thirdinkind": [
66 | "instaclustr.com",
67 | "sourceforge.net",
68 | "mi.com"
69 | ],
70 | "fourthinkind": [
71 | "bloomberg.com",
72 | "ena.com",
73 | "google.com",
74 | "hopsie.com",
75 | "noip.com",
76 | "pagerduty.com",
77 | "pccc.com",
78 | "sonic.com",
79 | "surfnet.nl",
80 | "virtru.com"
81 | ],
82 | "parseDate": "20250911"
83 | }
--------------------------------------------------------------------------------
/_foundations/eff.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: eff
3 | commonName: Electronic Frontier Foundation
4 | legalName: Electronic Frontier Foundation
5 | description: Defending your rights in the digital world
6 | contacturl: https://eff.org/about/contact
7 | website: https://www.eff.org/
8 | foundingDate: '1990'
9 | addressCountry: US
10 | addressRegion: MA
11 | newProjects:
12 | softwareType: advocacy
13 | wikidataId: Q624023
14 | boardSize: '13'
15 | boardType:
16 | boardurl: https://www.eff.org/about/board#main-content
17 | teamurl: https://www.eff.org/about/staff#main-content
18 | missionurl:
19 | bylawsurl: https://www.eff.org/document/eff-bylaws
20 | numberOfEmployees:
21 | governanceOrg:
22 | governanceTech:
23 | projectsNotable:
24 | projectsList: https://www.eff.org/pages/tools
25 | projectsServices:
26 | eventurl:
27 | nonprofitStatus: Nonprofit501c3
28 | taxID: 04-3091431
29 | taxIDLocal: '027045'
30 | budgetUsd:
31 | budgetYear:
32 | budgeturl:
33 | budgetTransparent:
34 | funding:
35 | donateurl: https://supporters.eff.org/donate/join-eff-today
36 | sponsorurl: https://www.eff.org/thanks
37 | sponsorList: https://www.eff.org/thanks#organizational_members
38 | sponsorships:
39 | licenses:
40 | claPolicy:
41 | securityurl: https://www.eff.org/issues/security
42 | ethicsPolicy:
43 | conducturl: https://www.eff.org/pages/eppcode
44 | conductEvents:
45 | conductSource:
46 | conductLinked:
47 | diversityPolicy: https://www.eff.org/pages/effs-diversity-statement
48 | diversityDescription:
49 | brandPrimary:
50 | brandSecondary:
51 | brandReg:
52 | brandPolicy: https://eff.org/pages/trademark-and-brand-usage-policy
53 | brandUse:
54 | brandComments:
55 | logo:
56 | logoReg:
57 | subOrganization:
58 | policyurl: https://eff.org/policy
59 | annualReport: https://www.eff.org/about/annual-reports-and-financials#main-content
60 | ---
61 |
62 |
--------------------------------------------------------------------------------
/_foundations/blender.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: blender
3 | commonName: Blender Foundation
4 | legalName: Stichting Blender Foundation
5 | description: Supporting the blender.org ecosystem.
6 | contacturl:
7 | website: https://www.blender.org/
8 | foundingDate: '2002'
9 | addressCountry: NL
10 | addressRegion:
11 | newProjects:
12 | softwareType:
13 | wikidataId: Q883799
14 | boardSize: '2'
15 | boardType:
16 | boardurl: https://www.blender.org/about/foundation/
17 | teamurl: https://www.blender.org/about/people/
18 | missionurl:
19 | bylawsurl:
20 | numberOfEmployees:
21 | governanceOrg:
22 | governanceTech:
23 | projectsNotable: Blender
24 | projectsList: https://projects.blender.org
25 | projectsServices:
26 | fiscalHost:
27 | eventurl:
28 | nonprofitStatus: Stichting
29 | taxID: NL811166223
30 | taxIDLocal:
31 | budgetUsd:
32 | budgetYear:
33 | budgeturl:
34 | budgetTransparent:
35 | funding: sponsors, donations
36 | donateurl: https://fund.blender.org
37 | sponsorurl: https://fund.blender.org
38 | sponsorList: https://fund.blender.org/#credits
39 | sponsorships:
40 | licenses: GPL, Apache-2.0
41 | claPolicy:
42 | securityurl:
43 | ethicsPolicy:
44 | conducturl:
45 | conductEvents: https://conference.blender.org/code-of-conduct/
46 | conductProjects:
47 | - https://developer.blender.org/docs/handbook/communication/code_of_conduct/
48 | conductSource:
49 | conductLinked:
50 | conductReport: email; single; moderators@
51 | diversityPolicy:
52 | diversityDescription:
53 | brandPrimary: Blender
54 | brandSecondary:
55 | brandReg: 'yes'
56 | brandPolicy: https://www.blender.org/about/logo/
57 | brandUse: https://www.blender.org/about/logo/
58 | brandComments:
59 | logo:
60 | logoReg: 'no'
61 | subOrganization:
62 | ---
63 |
64 | Blender Foundation coordinates Blender's mission to get the world’s best 3D CG technology in the hands of artists as free/open source software.
65 |
--------------------------------------------------------------------------------
/_foundations/osi.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: osi
3 | commonName: Open Source Initiative
4 | legalName: Open Source Initiative
5 | description:
6 | contacturl:
7 | website: http://opensource.org/
8 | foundingDate: 1998
9 | addressCountry: US
10 | addressRegion: CA
11 | newProjects: 'no'
12 | softwareType: non-code
13 | wikidataId: Q845918
14 | boardSize: 10
15 | boardType: elected
16 | boardurl: https://opensource.org/about/board-of-directors/
17 | teamurl:
18 | missionurl:
19 | bylawsurl: https://opensource.org/bylaws/
20 | numberOfEmployees: 6
21 | governanceOrg:
22 | governanceTech:
23 | projectsNotable:
24 | projectsList: https://opensource.org/programs/
25 | projectsServices:
26 | eventurl:
27 | nonprofitStatus: Nonprofit501c3
28 | taxID: 91-2037395
29 | taxIDLocal:
30 | budgetUsd: 406576
31 | budgetYear: 2021
32 | budgeturl: https://gitlab.com/floss-foundations/npo-public-filings/-/blob/master/Form990s/osi_2021_form-990_from-org.pdf
33 | budgetTransparent:
34 | funding: sponsors, donations
35 | donateurl:
36 | sponsorurl: https://opensource.org/sponsors
37 | sponsorList:
38 | sponsorships:
39 | - osi
40 | licenses: various
41 | claPolicy:
42 | securityurl:
43 | ethicsPolicy: https://opensource.org/conflict_of_interest_policy/
44 | conducturl: https://opensource.org/codeofconduct
45 | conductEvents:
46 | conductSource:
47 | conductLinked: false
48 | diversityPolicy:
49 | diversityDescription:
50 | brandPrimary: OSI
51 | brandSecondary: OSD; OSI logos
52 | brandReg: 'yes'
53 | brandPolicy: http://opensource.org/trademark-guidelines
54 | brandUse:
55 | brandComments: Applies to their "approved licenses" trademarks/logos.
56 | logo: https://i0.wp.com/opensource.org/wp-content/uploads/2009/08/osi_standard_logo_0.png?resize=1280%2C1536&ssl=1
57 | logoReg: 'yes'
58 | subOrganization:
59 | ---
60 |
61 | The Open Source Definition is the foundation of the modern software ecosystem.
62 |
--------------------------------------------------------------------------------
/_foundations/joomla.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: joomla
3 | commonName: Open Source Matters
4 | legalName: Open Source Matters
5 | description:
6 | contacturl:
7 | website: https://www.opensourcematters.org/
8 | foundingDate:
9 | addressCountry: US
10 | addressRegion:
11 | newProjects:
12 | softwareType: content
13 | wikidataId: Q56759875
14 | boardSize: 7
15 | boardType:
16 | boardurl: https://www.opensourcematters.org/organisation/directors.html
17 | teamurl:
18 | missionurl: https://www.joomla.org/about-joomla/the-project/mission-vision-and-values.html
19 | bylawsurl: https://www.opensourcematters.org/organisation/by-laws-policies.html
20 | numberOfEmployees:
21 | governanceOrg: https://www.opensourcematters.org/organisation/directors/policies.html
22 | governanceTech:
23 | projectsNotable:
24 | projectsList:
25 | projectsServices:
26 | eventurl: https://community.joomla.org/events.html
27 | nonprofitStatus: charitable
28 | taxID:
29 | taxIDLocal:
30 | budgetUsd:
31 | budgetYear:
32 | budgeturl: https://www.opensourcematters.org/organisation/finances.html
33 | budgetTransparent:
34 | funding:
35 | donateurl:
36 | sponsorurl: https://www.joomla.org/sponsor.html
37 | sponsorList: https://www.joomla.org/current-sponsors.html
38 | sponsorships:
39 | licenses: GPL-2.0-only
40 | claPolicy:
41 | securityurl: https://developer.joomla.org/security-centre.html
42 | ethicsPolicy:
43 | conducturl: https://www.joomla.org/about-joomla/the-project/code-of-conduct.html
44 | conductEvents:
45 | conductSource:
46 | - ubuntu
47 | conductLinked:
48 | diversityPolicy:
49 | diversityDescription:
50 | brandPrimary: Joomla!
51 | brandSecondary:
52 | brandReg: 'yes'
53 | brandPolicy: http://opensourcematters.org/legal/trademark/trademark-faq.html
54 | brandUse:
55 | brandComments:
56 | logo:
57 | logoReg:
58 | subOrganization:
59 | ---
60 |
61 | Open Source Matters exists to support the Joomla! project.
62 |
63 |
--------------------------------------------------------------------------------
/_foundations/openstreetmap.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: openstreetmap
3 | commonName: OpenStreetMap
4 | legalName: Openstreetmap Foundation
5 | description:
6 | contacturl: https://osmfoundation.org/wiki/Contact
7 | website: https://osmfoundation.org/
8 | foundingDate:
9 | addressCountry: UK
10 | addressRegion:
11 | newProjects:
12 | softwareType: map
13 | wikidataId: Q6542248
14 | boardSize:
15 | boardType:
16 | boardurl: http://www.osmfoundation.org/wiki/Officers_%26_Board
17 | teamurl:
18 | missionurl:
19 | bylawsurl:
20 | numberOfEmployees:
21 | governanceOrg:
22 | governanceTech:
23 | projectsNotable:
24 | projectsList:
25 | projectsServices:
26 | eventurl: http://stateofthemap.org/
27 | nonprofitStatus: LimitedByGuaranteeCharity
28 | taxID:
29 | taxIDLocal: '05912761'
30 | budgetUsd:
31 | budgetYear:
32 | budgeturl: https://osmfoundation.org/wiki/Finances
33 | budgetTransparent: https://find-and-update.company-information.service.gov.uk/company/05912761
34 | funding:
35 | donateurl:
36 | sponsorurl:
37 | sponsorList: https://osmfoundation.org/wiki/Join_as_a_corporate_member
38 | sponsorships:
39 | - openstreetmap
40 | licenses: ODbL-1.0
41 | claPolicy: https://osmfoundation.org/wiki/Licence/Contributor_Terms
42 | securityurl:
43 | ethicsPolicy: https://osmfoundation.org/wiki/Conflict_of_Interest_Policy
44 | conducturl: https://osmfoundation.org/wiki/OSMF_Communication_Guidelines
45 | conductEvents:
46 | conductSource:
47 | conductLinked:
48 | diversityPolicy: https://osmfoundation.org/wiki/Diversity_Statement
49 | diversityDescription:
50 | brandPrimary: OpenStreetMap
51 | brandSecondary:
52 | brandReg: yes
53 | brandPolicy: https://wiki.osmfoundation.org/wiki/Trademark_Policy
54 | brandUse:
55 | brandComments:
56 | logo: https://www.openstreetmap.org/assets/osm_logo-4afddaae0230a5a46687fdc751ed256dfdccde144118cb02a7d7960f207a4b92.svg
57 | logoReg: yes
58 | subOrganization:
59 | ---
60 |
--------------------------------------------------------------------------------
/_foundations/wordpress.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: wordpress
3 | commonName: WordPress
4 | legalName: WordPress Foundation
5 | description:
6 | contacturl:
7 | website: https://wordpress.org/
8 | foundingDate:
9 | addressCountry: US
10 | addressRegion:
11 | newProjects:
12 | softwareType: content
13 | wikidataId: Q56787199
14 | boardSize:
15 | boardType:
16 | boardurl:
17 | teamurl:
18 | missionurl:
19 | bylawsurl:
20 | numberOfEmployees:
21 | governanceOrg:
22 | governanceTech:
23 | projectsNotable:
24 | projectsList:
25 | projectsServices:
26 | eventurl:
27 | nonprofitStatus: Nonprofit501c3
28 | taxID: 20-5498932
29 | taxIDLocal:
30 | budgetUsd:
31 | budgetYear:
32 | budgeturl: https://wordpressfoundation.org/about/financials/
33 | budgetTransparent:
34 | funding:
35 | donateurl:
36 | sponsorurl: https://wordpressfoundation.org/donors/
37 | sponsorList:
38 | sponsorships:
39 | licenses: GPL-2.0-or-later
40 | claPolicy:
41 | securityurl:
42 | ethicsPolicy:
43 | conducturl: https://learn.wordpress.org/online-workshops/code-of-conduct/
44 | conductEvents: https://make.wordpress.org/community/handbook/wordcamp-organizer/planning-details/code-of-conduct/
45 | conductSource:
46 | - OSBridge
47 | conductLinked:
48 | diversityPolicy: https://make.wordpress.org/community/tag/diversity/
49 | diversityDescription: Blog postings
50 | brandPrimary: WordPress
51 | brandSecondary: WordCamp
52 | brandReg:
53 | brandPolicy: http://wordpressfoundation.org/trademark-policy/
54 | brandUse:
55 | brandComments: Must request permisison for use, that must "promote the spread and
56 | improvement of the WordPress software" and comply with GPL.
57 | logo:
58 | logoReg:
59 | subOrganization:
60 | ---
61 |
62 | The WordPress Foundation is a charitable organization founded by Matt Mullenweg to further the mission of the WordPress open source project: to democratize publishing through Open Source, GPL software.
63 |
--------------------------------------------------------------------------------
/_data/sponsorships/python.json:
--------------------------------------------------------------------------------
1 | {
2 | "first": [
3 | "nvidia",
4 | "google.com",
5 | "fastly",
6 | "meta",
7 | "bloomberg.com"
8 | ],
9 | "second": [
10 | "microsoft.com",
11 | "ansys.com"
12 | ],
13 | "third": [
14 | "cubist-systematic-strategies",
15 | "amazon.com",
16 | "americanexpress.com",
17 | "streamlit",
18 | "qube-research-technologies-limited",
19 | "redhat.com",
20 | "capitalone.com",
21 | "mongodb"
22 | ],
23 | "fourth": [
24 | "openedg.org",
25 | "jetbrains.com",
26 | "indeed.com"
27 | ],
28 | "fifth": [
29 | "western-governors-university",
30 | "oracle",
31 | "covalent",
32 | "sentry.io",
33 | "datastax",
34 | "pydantic.dev",
35 | "janestreet.com",
36 | "crunchydata.com",
37 | "algorand",
38 | "anaconda-inc"
39 | ],
40 | "sixth": [
41 | "endor-labs",
42 | "coiled",
43 | "nostarch.com",
44 | "datadog.com",
45 | "deepset.ai",
46 | "hudsonrivertrading.com",
47 | "temporal.io",
48 | "vonage",
49 | "sauce-labs",
50 | "cloudflare",
51 | "tecton",
52 | "elastic.co",
53 | "rezoomex.com",
54 | "edgedb",
55 | "posit-pbc",
56 | "anvil.works",
57 | "twilio",
58 | "swan-softweb-solutions",
59 | "activestate",
60 | "bright-data",
61 | "awesomic",
62 | "lerner.co.il"
63 | ],
64 | "seventh": [
65 | "zama",
66 | "twosigma.com",
67 | "astral.sh",
68 | "pythonic-exam.com",
69 | "buttondown",
70 | "sticker-robot",
71 | "asml",
72 | "flet",
73 | "commonwealth-bank-of-australia",
74 | "sixfeetup.com",
75 | "lambdatest-inc",
76 | "openteams",
77 | "quansight.com",
78 | "netflix.com"
79 | ],
80 | "eighth": [
81 | "beproud",
82 | "devitjobs.com",
83 | "dm-jobs.com"
84 | ],
85 | "parseDate": "20240926"
86 | }
--------------------------------------------------------------------------------
/_pages/projects-processingfoundation.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: Software Projects Hosted By The Processing Foundation
3 | excerpt: A list of projects supported by the Processing Foundation
4 | layout: default
5 | permalink: /projects-processingfoundation
6 | nav_exclude: true
7 | ---
8 |
9 | The Processing Foundation hosts a variety of major open source projects that serve as creative tools for artists, educators, and programmers alike. These projects encourage experimentation with code as a medium of expression and learning, and they aim to make coding accessible to people from diverse backgrounds and disciplines.
10 |
11 | Processing Foundation Subprojects
12 |
13 | - **Processing (Java)**
14 | https://processing.org/
15 | A flexible software sketchbook and a language for learning how to code within the context of visual arts. Processing is aimed at creating interactive visual applications with ease.
16 | - **p5.js**
17 | https://p5js.org/
18 | A JavaScript library inspired by Processing, which makes it easy to create graphics and interactive content for the web. p5.js is focused on making creative coding more accessible, especially for beginners.
19 | - **Processing for Android**
20 | https://android.processing.org
21 | A version of Processing designed for creating native Android applications, allowing developers to write code that runs on Android devices with the same ease as desktop sketches.
22 | - **Processing Python**
23 | https://py.processing.org
24 | A mode for Processing that allows users to write sketches using the Python programming language, providing an alternative syntax while retaining the core features of Processing.
25 | - **Processing for Pi**
26 | https://pi.processing.org
27 | A specialized version of Processing optimized for the Raspberry Pi, aimed at leveraging the unique capabilities of the popular single-board computer for creative projects.
28 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # FOSS Foundations Metadata Directory
2 |
3 | [](#contributors-)
4 |
5 |
6 | Welcome to our [directory of non-profit FOSS Foundations](https://fossfoundation.info) published at [https://fossfoundation.info](https://fossfoundation.info) This is meant to be a resource both for open source practitioners and academic researchers alike.
7 |
8 | - [Roadmap](https://fossfoundation.info/roadmap)
9 | - [Data Philosophy](https://fossfoundation.info/data)
10 | - [Code of Conduct](https://fossfoundation.info/CODE_OF_CONDUCT)
11 | - [Contributors](https://fossfoundation.info/colophon#contributors)
12 | - [We welcome your contributions](CONTRIBUTING.md)!
13 |
14 | ## Thank you to all our Contributors!
15 |
16 |
17 |
18 |
19 |
27 |
28 |
29 |
30 |
31 |
32 |
--------------------------------------------------------------------------------
/_data/sponsorships/owasp.json:
--------------------------------------------------------------------------------
1 | {
2 | "first": [
3 | "atlassian.com",
4 | "automattic.com",
5 | "bionic.ai",
6 | "bloomberg.com",
7 | "microfocus.com",
8 | "root.io",
9 | "salesforce.com",
10 | "tenable.com",
11 | "wallarm.com"
12 | ],
13 | "second": [
14 | "appdome.com",
15 | "arnica.io",
16 | "backslash.security",
17 | "blend-ed.com",
18 | "checkmarx.com",
19 | "guardsquare.com",
20 | "invicti.com",
21 | "promon.co",
22 | "sailpoint.com",
23 | "scitum.com.mx",
24 | "threatmodeler.com",
25 | "zinad.net",
26 | "zimperium.com"
27 | ],
28 | "third": [
29 | "aikido.dev",
30 | "apiiro.com",
31 | "approach-cyber.com",
32 | "armorcode.com",
33 | "blstsecurity.com",
34 | "checkpoint.com",
35 | "www.dependencytrack.com",
36 | "cybozu.co.jp",
37 | "cydrill.com",
38 | "deepfactor.io",
39 | "defectdojo.com",
40 | "digital.ai",
41 | "eshard.com",
42 | "equixly.com",
43 | "gitguardian.com",
44 | "guidepointsecurity.com",
45 | "securebrain.co.jp",
46 | "impart.security",
47 | "iriusrisk.com",
48 | "jit.io",
49 | "mend.io",
50 | "nedap.com",
51 | "nowsecure.com",
52 | "phoenix.security",
53 | "pynt.io",
54 | "global.rakuten.com",
55 | "raxis.com",
56 | "redhat.com",
57 | "riscosity.com",
58 | "scsk.jp",
59 | "specialistdata.com",
60 | "salt.security",
61 | "securityjourney.com",
62 | "specialistdata.com",
63 | "synopsys.com",
64 | "teamsecure.io",
65 | "threatspike.com",
66 | "traefik.io",
67 | "trendmicro.com",
68 | "ubsecure.jp",
69 | "united.com",
70 | "uobgroup.com",
71 | "veracode.com",
72 | "verimatrix.com",
73 | "xeol.io",
74 | "zengroup.co.in",
75 | "eshard.com",
76 | "mindsetters.com"
77 | ],
78 | "parseDate": "20240926"
79 | }
--------------------------------------------------------------------------------
/_foundations/commonhaus.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: commonhaus
3 | commonName: Commonhaus
4 | legalName: Commonhaus Foundation
5 | description: Building a forever home for open source projects.
6 | contacturl:
7 | website: https://www.commonhaus.org/
8 | foundingDate: 2023
9 | addressCountry: US
10 | addressRegion: FL
11 | newProjects: true
12 | softwareType: various
13 | wikidataId:
14 | boardSize: 3
15 | boardType: elected
16 | boardurl: https://www.commonhaus.org/about/#councilors
17 | teamurl:
18 | missionurl: https://www.commonhaus.org/about/
19 | bylawsurl: https://www.commonhaus.org/bylaws/
20 | numberOfEmployees:
21 | governanceOrg:
22 | governanceTech:
23 | projectsNotable:
24 | projectsList: https://www.commonhaus.org/#our-projects
25 | projectsServices: https://www.commonhaus.org/#what-sets-commonhaus-apart
26 | eventurl:
27 | nonprofitStatus: Nonprofit501c6
28 | taxID: 84-3279550
29 | taxIDLocal: N19000010293
30 | budgetUsd:
31 | budgetYear:
32 | budgeturl:
33 | budgetTransparent:
34 | funding:
35 | donateurl: https://github.com/sponsors/commonhaus
36 | sponsorurl:
37 | sponsorList:
38 | sponsorships:
39 | licenses: various
40 | claPolicy: https://www.commonhaus.org/policies/cla/
41 | securityurl:
42 | ethicsPolicy: https://www.commonhaus.org/policies/conflict-of-interest/
43 | conducturl: https://www.commonhaus.org/policies/code-of-conduct/
44 | conductEvents:
45 | conductSource: Contributor Covenant 1.4
46 | conductLinked: footer
47 | diversityPolicy:
48 | diversityDescription:
49 | brandPrimary: Commonhaus
50 | brandSecondary:
51 | brandReg:
52 | brandPolicy: https://www.commonhaus.org/policies/trademark-policy/
53 | brandUse: https://www.commonhaus.org/about/branding.html
54 | brandComments: https://www.commonhaus.org/trademarks/
55 | logo:
56 | logoReg:
57 | subOrganization:
58 | ---
59 |
60 | Commonhaus is a non-profit organization dedicated to the sustainability of open source libraries and frameworks.
61 |
--------------------------------------------------------------------------------
/_foundations/perl.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: perl
3 | commonName: Perl
4 | legalName: Yet Another Society, (DBA) The Perl And Raku Foundation
5 | description:
6 | contacturl:
7 | website: https://www.perlfoundation.org/
8 | foundingDate:
9 | addressCountry: US
10 | addressRegion: MI
11 | newProjects:
12 | softwareType: devtool
13 | wikidataId: Q941805
14 | boardSize: 5
15 | boardType:
16 | boardurl: https://www.perlfoundation.org/the-board.html
17 | teamurl:
18 | missionurl:
19 | bylawsurl: https://www.perlfoundation.org/bylaws.html
20 | numberOfEmployees:
21 | governanceOrg:
22 | governanceTech:
23 | projectsNotable:
24 | projectsList:
25 | projectsServices:
26 | eventurl:
27 | nonprofitStatus: Nonprofit501c3
28 | taxID: 38-3536536
29 | taxIDLocal:
30 | budgetUsd:
31 | budgetYear:
32 | budgeturl:
33 | budgetTransparent:
34 | funding:
35 | donateurl: https://www.perlfoundation.org/donate.html
36 | sponsorurl: https://www.perlfoundation.org/our-donors.html
37 | sponsorList: https://www.perlfoundation.org/how-do-sponsors-benefit.html
38 | sponsorships:
39 | licenses: Artistic-2.0
40 | claPolicy: https://www.perlfoundation.org/contributor-license-agreement.html
41 | securityurl:
42 | ethicsPolicy: https://www.perlfoundation.org/conflict-of-interest-policy.html
43 | conducturl: https://github.com/tpf/soc/blob/main/Standards_of_Conduct.md
44 | conductEvents: https://perlconference.us/tpc-2018-slc/standards-of-conduct/
45 | conductSource:
46 | - covenant
47 | conductLinked:
48 | diversityPolicy:
49 | diversityDescription:
50 | brandPrimary: Perl
51 | brandSecondary:
52 | brandReg: 'yes'
53 | brandPolicy: http://www.perlfoundation.org/perl_trademark
54 | brandUse:
55 | brandComments: About the Perl mark itself.
56 | logo:
57 | logoReg:
58 | subOrganization:
59 | ---
60 |
61 | The Perl & Raku Foundation is dedicated to the advancement of the Perl and Raku programming languages through open discussion, collaboration, design, and code.
62 |
--------------------------------------------------------------------------------
/_foundations/tdf.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: tdf
3 | commonName: The Document Foundation
4 | legalName: The Document Foundation
5 | description:
6 | contacturl:
7 | website: https://www.documentfoundation.org/
8 | foundingDate:
9 | addressCountry: DE
10 | addressRegion:
11 | newProjects:
12 | softwareType: content
13 | wikidataId: Q313103
14 | boardSize:
15 | boardType: elected
16 | boardurl: https://www.documentfoundation.org/board/
17 | teamurl:
18 | missionurl:
19 | bylawsurl: https://www.documentfoundation.org/statutes.pdf
20 | numberOfEmployees:
21 | governanceOrg:
22 | governanceTech:
23 | projectsNotable: LibreOffice
24 | projectsList:
25 | projectsServices:
26 | eventurl: https://www.libreoffice.org/events/
27 | nonprofitStatus: charitable
28 | taxID:
29 | taxIDLocal:
30 | budgetUsd: 1.5M
31 | budgetYear: '2021'
32 | budgeturl: https://www.documentfoundation.org/financials-and-reports/
33 | budgetTransparent:
34 | funding: donations
35 | donateurl: https://www.libreoffice.org/donate/
36 | sponsorurl:
37 | sponsorList:
38 | sponsorships:
39 | licenses: MPL-2.0
40 | claPolicy:
41 | securityurl: https://www.libreoffice.org/about-us/security/
42 | ethicsPolicy:
43 | conducturl: https://www.documentfoundation.org/foundation/code-of-conduct/
44 | conductEvents:
45 | conductSource:
46 | - covenant
47 | - geekfeminism
48 | - ada
49 | - Audrey Eschright of Safety First PDX
50 | conductLinked: menu
51 | diversityPolicy:
52 | diversityDescription:
53 | brandPrimary: LibreOffice
54 | brandSecondary:
55 | brandReg: 'yes'
56 | brandPolicy: https://wiki.documentfoundation.org/TDF/Policies/Trademark_Policy
57 | brandUse:
58 | brandComments: About LibreOffice, includes services policy, prohibits use in domain
59 | names.
60 | logo:
61 | logoReg:
62 | subOrganization:
63 | ---
64 |
65 | The Document Foundation is an independent self-governing meritocratic entity, created by a large group of Free Software advocates, in the form of a charitable Foundation under German law.
66 |
--------------------------------------------------------------------------------
/_foundations/opencompute.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: opencompute
3 | commonName: Open Compute
4 | legalName: Open Compute Project Foundation
5 | description: Open Compute Project
6 | contacturl: https://www.opencompute.org/contact
7 | website: https://opencompute.org
8 | foundingDate:
9 | addressCountry: US
10 | addressRegion: TX
11 | newProjects:
12 | softwareType:
13 | wikidataId: Q7095984
14 | boardSize: '6'
15 | boardType:
16 | boardurl: https://www.opencompute.org/about/board
17 | teamurl: https://www.opencompute.org/about/foundation-staff
18 | missionurl: https://www.opencompute.org/about
19 | bylawsurl: https://www.opencompute.org/documents/bylaws
20 | numberOfEmployees:
21 | governanceOrg:
22 | governanceTech:
23 | projectsNotable:
24 | projectsList: https://www.opencompute.org/projects
25 | projectsServices:
26 | eventurl: https://www.opencompute.org/events/upcoming-events
27 | nonprofitStatus: Nonprofit501c6
28 | taxID: 45-3630872
29 | taxIDLocal:
30 | budgetUsd:
31 | budgetYear:
32 | budgeturl:
33 | budgetTransparent:
34 | funding:
35 | donateurl: https://www.opencompute.org/contributions/welcome
36 | sponsorurl: https://www.opencompute.org/documents/amended-tiered-membership-policy
37 | sponsorList: https://www.opencompute.org/membership/membership-directory
38 | sponsorships:
39 | licenses:
40 | claPolicy:
41 | securityurl:
42 | ethicsPolicy:
43 | conducturl: https://www.opencompute.org/documents/ocp-operating-structure-and-policies-as-of-mar-2025
44 | conductEvents:
45 | conductSource:
46 | - covenant
47 | conductLinked:
48 | diversityPolicy: https://www.opencompute.org/documents/ocp-terminology-guidelines-for-inclusion-and-openness
49 | diversityDescription:
50 | brandPrimary:
51 | brandSecondary:
52 | brandReg:
53 | brandPolicy: https://www.opencompute.org/documents/ocp-trademark-usage-guidelines
54 | brandUse:
55 | brandComments:
56 | logo:
57 | logoReg:
58 | subOrganization:
59 | policyurl: https://www.opencompute.org/about/ocp-policies
60 | ---
61 |
62 |
--------------------------------------------------------------------------------
/_foundations/bytecode.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: bytecode
3 | commonName: Bytecode Alliance
4 | legalName: Bytecode Alliance Foundation
5 | description: We develop runtime environments and language toolchains where security,
6 | efficiency, and modularity can all coexist across a wide range of devices and architectures
7 | contacturl:
8 | website: https://bytecodealliance.org/
9 | foundingDate:
10 | addressCountry: US
11 | addressRegion: DE
12 | newProjects:
13 | softwareType: bytecodes
14 | wikidataId: Q75097496
15 | boardSize: '9'
16 | boardType: elected by member class
17 | boardurl: https://bytecodealliance.org/about#board-gallery
18 | teamurl:
19 | missionurl: https://bytecodealliance.org/about#values
20 | bylawsurl: https://bytecodealliance.org/assets/bylaws.pdf
21 | numberOfEmployees:
22 | governanceOrg:
23 | governanceTech: https://github.com/bytecodealliance/governance/blob/main/TSC/charter.md
24 | projectsNotable:
25 | projectsList: https://bytecodealliance.org/projects
26 | projectsServices:
27 | eventurl:
28 | nonprofitStatus: Nonprofit501c6
29 | taxID: 86-3131901
30 | taxIDLocal:
31 | budgetUsd:
32 | budgetYear:
33 | budgeturl:
34 | budgetTransparent:
35 | funding:
36 | donateurl:
37 | sponsorurl: https://bytecodealliance.org/join
38 | sponsorList:
39 | sponsorships:
40 | licenses: Apache-2.0, LLVM-exception
41 | claPolicy:
42 | securityurl: https://bytecodealliance.org/security
43 | ethicsPolicy:
44 | conducturl: https://github.com/bytecodealliance/governance/blob/main/CODE_OF_CONDUCT.md
45 | conductEvents:
46 | conductProjects:
47 | - https://github.com/bytecodealliance/wasmtime/blob/main/CODE_OF_CONDUCT.md
48 | conductSource:
49 | - covenant
50 | conductLinked:
51 | conductReport: email; single; coc@
52 | diversityPolicy:
53 | diversityDescription:
54 | brandPrimary:
55 | brandSecondary:
56 | brandReg:
57 | brandPolicy: https://bytecodealliance.org/assets/ip-policy.pdf
58 | brandUse:
59 | brandComments:
60 | logo:
61 | logoReg:
62 | subOrganization:
63 | ---
64 |
65 |
--------------------------------------------------------------------------------
/_foundations/gnome.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: gnome
3 | commonName: GNOME
4 | legalName: GNOME Foundation
5 | description:
6 | contacturl: https://foundation.gnome.org/contact
7 | website: https://www.gnome.org/
8 | foundingDate:
9 | addressCountry: US
10 | addressRegion:
11 | newProjects:
12 | softwareType: distro
13 | wikidataId: Q1056660
14 | boardSize: '9'
15 | boardType: elected
16 | boardurl: https://handbook.gnome.org/foundation/board-of-directors.html
17 | teamurl: https://foundation.gnome.org/team
18 | missionurl:
19 | bylawsurl: https://gitlab.gnome.org/Infrastructure/foundation-web/raw/master/foundation.gnome.org/about/bylaws.rst
20 | numberOfEmployees:
21 | governanceOrg:
22 | governanceTech:
23 | projectsNotable:
24 | projectsList:
25 | projectsServices:
26 | eventurl: https://events.gnome.org/
27 | nonprofitStatus: Nonprofit501c3
28 | taxID: 04-3572618
29 | taxIDLocal:
30 | budgetUsd: 675K
31 | budgetYear: '2023'
32 | budgeturl: https://foundation.gnome.org/reports
33 | budgetTransparent: 'yes'
34 | funding:
35 | donateurl: https://donate.gnome.org/
36 | sponsorurl:
37 | sponsorList:
38 | sponsorships:
39 | - gnome
40 | licenses: GPL-2.0-only
41 | claPolicy:
42 | securityurl:
43 | ethicsPolicy: https://gitlab.gnome.org/Teams/Board/-/blob/main/policy-documents/GNOME-Foundation-Ethical-Conduct-Policy-Directors.pdf?ref_type=heads
44 | conducturl: https://conduct.gnome.org/
45 | conductEvents:
46 | conductSource:
47 | - geekfeminism
48 | conductLinked: footer
49 | conductReport: form or email; committee; code-of-conduct@
50 | diversityPolicy:
51 | diversityDescription:
52 | brandPrimary: GNOME
53 | brandSecondary: GTX; Flatpak; Flathub
54 | brandReg: 'yes'
55 | brandPolicy: https://foundation.gnome.org/licensing-guidelines
56 | brandUse: https://brand.gnome.org/
57 | brandComments:
58 | logo:
59 | logoReg:
60 | subOrganization:
61 | ---
62 |
63 | The GNOME Foundation is a non-profit organization that believes in a world where everyone is empowered by technology they can trust.
64 |
--------------------------------------------------------------------------------
/_foundations/ffpc.md:
--------------------------------------------------------------------------------
1 | ---
2 | identifier: ffpc
3 | commonName: Foundation for Public Code
4 | legalName: Foundation for Public Code vereniging
5 | description:
6 | contacturl:
7 | website: https://publiccode.net/
8 | foundingDate: '2019'
9 | addressCountry: NL
10 | addressRegion:
11 | newProjects: 'yes'
12 | softwareType: various
13 | wikidataId: Q108304854
14 | boardSize: '3'
15 | boardType: appointed
16 | boardurl: https://about.publiccode.net/organization/governance-model.html#board-of-directors
17 | teamurl:
18 | missionurl:
19 | bylawsurl: https://about.publiccode.net/organization/articles-of-association.html
20 | numberOfEmployees: '5'
21 | governanceOrg:
22 | governanceTech:
23 | projectsNotable: Signalen, OpenZaak, Omgevingsbeleid, Standard for Public Code, Governance
24 | game
25 | projectsList: https://publiccode.net/codebases/
26 | projectsServices: Codebase stewardship
27 | eventurl:
28 | nonprofitStatus: algemeen nut beogende instelling
29 | taxID: 860102294
30 | taxIDLocal:
31 | budgetUsd:
32 | budgetYear:
33 | budgeturl:
34 | budgetTransparent:
35 | funding: donations, memberships
36 | donateurl:
37 | sponsorurl:
38 | sponsorList:
39 | sponsorships:
40 | licenses:
41 | claPolicy:
42 | securityurl:
43 | ethicsPolicy: https://about.publiccode.net/organization/staff-code-of-conduct.html
44 | conducturl: https://github.com/publiccodenet/about/blob/develop/CODE_OF_CONDUCT.md
45 | conductEvents:
46 | conductSource:
47 | - covenant
48 | conductLinked:
49 | conductReport: email; committee; directors@
50 | diversityPolicy:
51 | diversityDescription:
52 | brandPrimary:
53 | brandSecondary:
54 | brandReg:
55 | brandPolicy: https://brand.publiccode.net/
56 | brandUse: https://brand.publiccode.net/
57 | brandComments:
58 | logo: https://brand.publiccode.net/logo/mark-and-name-over-one-line.svg
59 | logoReg:
60 | subOrganization:
61 | ---
62 |
63 | The Foundation for Public Codeis is a nonprofit with a mission to enable public-purpose software and policy that is open and collaborative.
64 |
--------------------------------------------------------------------------------