Download Full Dataset
Use these persistent URLs for automated access to always get the latest version of the dataset.
Live Data Access
Use these persistent URLs for automated access to always get the latest version of the dataset.
CSV ENDPOINT
https://yourselftoscience.org/resources.csv
JSON ENDPOINT
https://yourselftoscience.org/resources.json
RDF/TTL ENDPOINT
https://yourselftoscience.org/resources.ttl
Licensing
Our dataset is dedicated to the public domain under the Creative Commons CC0 1.0 Universal Public Domain Dedication. You can copy, modify, and distribute the work, even for commercial purposes, without asking permission.
While not required, we appreciate credit to Yourself To Science when using our data.
Dataset Schema
The dataset contains the following fields for each resource:
- id: A persistent, unique identifier (UUID) for the resource.
- slug: A user-friendly identifier used in the URL.
- title: The name of the resource or study.
- organization: The organization conducting the research.
- link: A URL to the resource's website.
- dataTypes: An array of strings describing the types of data collected (e.g., "Genome", "Health data").
- compensationType: The type of compensation offered ("donation", "payment", or "mixed").
- countries: An array of countries where the resource is available.
- description: A brief description of the resource.
- citations: An array of academic citations related to the resource.
- entityCategory: The general type of the organization (e.g., "Non-Profit", "Government").
- entitySubType: A more specific classification of the organization (e.g., "Research Foundation", "Regulatory Agency").
SPARQL Query Examples
You can query our data directly within Wikidata's ecosystem using the Wikidata Query Service. Here are some examples to get you started.
Find all resources in our dataset that are also in Wikidata
#Find all items in our dataset that are also in Wikidata
SELECT ?item ?itemLabel WHERE {
VALUES ?ytsId {
"1e7d825c-6b1e-4368-936c-2a4ad415b828"
"9a1f26a8-2b81-4b1e-9b5a-1c6d7e8f9a0b"
"c7a8b9d0-1e2f-3a4b-5c6d-7e8f9a0b1c2d"
"f47ac10b-58cc-4372-a567-0e02b2c3d479"
"b3c4d5e6-f7g8-9h0i-j1k2-l3m4n5o6p7q8"
"d4e5f6a7-b8c9-0d1e-2f3a-4b5c6d7e8f9g"
"a1b2c3d4-e5f6-7a8b-9c0d-1e2f3a4b5c6d"
"e5f6a7b8-c9d0-1e2f-3a4b-5c6d7e8f9g0h"
"f6a7b8c9-d0e1-f2a3-b4c5-d6e7f8g9h0i1"
"a7b8c9d0-e1f2-a3b4-c5d6-e7f8g9h0i1j2"
"b8c9d0e1-f2a3-b4c5-d6e7-f8g9h0i1j2k3"
"c9d0e1f2-a3b4-c5d6-e7f8-g9h0i1j2k3l4"
"d0e1f2a3-b4c5-d6e7-f8g9-h0i1j2k3l4m5"
"e1f2a3b4-c5d6-e7f8-g9h0-i1j2k3l4m5n6"
"f2a3b4c5-d6e7-f8g9-h0i1-j2k3l4m5n6o7"
"a3b4c5d6-e7f8-g9h0-i1j2-k3l4m5n6o7p8"
"b4c5d6e7-f8g9-h0i1-j2k3-l4m5n6o7p8q9"
"c5d6e7f8-g9h0-i1j2-k3l4-m5n6o7p8q9r0"
"d6e7f8g9-h0i1-j2k3-l4m5-n6o7p8q9r0s1"
"e7f8g9h0-i1j2-k3l4-m5n6-o7p8q9r0s1t2"
"f8g9h0i1-j2k3-l4m5-n6o7-p8q9r0s1t2u3"
"a9h0i1j2-k3l4-m5n6-o7p8-q9r0s1t2u3v4"
"b0i1j2k3-l4m5-n6o7-p8q9-r0s1t2u3v4w5"
"c1j2k3l4-m5n6-o7p8-q9r0-s1t2u3v4w5x6"
"d2k3l4m5-n6o7-p8q9-r0s1-t2u3v4w5x6y7"
"e3l4m5n6-o7p8-q9r0-s1t2-u3v4w5x6y7z8"
"f4m5n6o7-p8q9-r0s1-t2u3-v4w5x6y7z8a9"
"a5n6o7p8-q9r0-s1t2-u3v4-w5x6y7z8a9b0"
"b6o7p8q9-r0s1-t2u3-v4w5-x6y7z8a9b0c1"
"c7p8q9r0-s1t2-u3v4-w5x6-y7z8a9b0c1d2"
"d8q9r0s1-t2u3-v4w5-x6y7-z8a9b0c1d2e3"
"e9r0s1t2-u3v4-w5x6-y7z8-a9b0c1d2e3f4"
"f0s1t2u3-v4w5-x6y7-z8a9-b0c1d2e3f4g5"
"a1t2u3v4-w5x6-y7z8-a9b0-c1d2e3f4g5h6"
"b2u3v4w5-x6y7-z8a9-b0c1-d2e3f4g5h6i7"
"c3v4w5x6-y7z8-a9b0-c1d2-e3f4g5h6i7j8"
}
BIND(IRI(CONCAT("https://yourselftoscience.org/resource/", ?ytsId)) AS ?ytsURI)
?ytsURI schema:sameAs ?item .
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Count resources by country (Federated Query Example)
#This query cannot be run directly on the public Wikidata endpoint.
#It is an example of a federated query that would work if the endpoint allowed it.
#Count how many of our resources are available in each country
SELECT ?countryLabel (COUNT(?ytsURI) AS ?count) WHERE {
?ytsURI schema:spatialCoverage ?country .
SERVICE <https://yourselftoscience.org/resources.ttl> {
?ytsURI a schema:Dataset .
}
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
GROUP BY ?countryLabel
ORDER BY DESC(?count)