Skip to content

Instantly share code, notes, and snippets.

@peterneish
Last active January 1, 2020 08:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save peterneish/f6dad14e46327011f0ccf15d49dd27fb to your computer and use it in GitHub Desktop.
Save peterneish/f6dad14e46327011f0ccf15d49dd27fb to your computer and use it in GitHub Desktop.
Visualise issues for DMP User Stories
licence: gpl-3.0
height: 800
scrolling: yes
border: yes
<!DOCTYPE html>
<meta charset="utf-8">
<style>
body {
font: 10px sans-serif;
}
.group-tick line {
stroke: #000;
}
.ribbons {
fill-opacity: 0.67;
}
</style>
<svg width="1000" height="750"></svg>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script>
var json_file = "https://api.github.com/search/issues?q=repo:RDA-DMP-Common/user-stories+-label:meta_problem+-label:question";
//var json_file = "issues.json"; // for local dev
var svg = d3.select("svg"),
width = +svg.attr("width"),
height = +svg.attr("height"),
outerRadius = Math.min(width, height) * 0.5 - 40,
innerRadius = outerRadius - 30;
var formatValue = d3.formatPrefix(",.0", 1e3);
var chord = d3.chord()
.padAngle(0.05)
.sortSubgroups(d3.descending);
var arc = d3.arc()
.innerRadius(innerRadius)
.outerRadius(outerRadius);
var ribbon = d3.ribbon()
.radius(innerRadius);
var ribbons;
var labels;
var color = d3.scaleOrdinal()
.domain(d3.range(4))
.range(["#000000", "#FFDD89", "#957244", "#F26223"]);
d3.json(json_file, function(data){
var transformed = transformData(data);
var matrix = transformed.matrix;
labels = transformed.labels;
var g = svg.append("g")
.attr("transform", "translate(" + width / 2 + "," + height / 2 + ")")
.datum(chord(matrix));
var group = g.append("g")
.attr("class", "groups")
.selectAll("g")
.data(function(chords) { return chords.groups; })
.enter().append("g")
.append("a").attr("href", function(d) {
return 'https://github.com/RDA-DMP-Common/user-stories/issues?q=label%3A"' + labels[d.index].name + '"' ;
})
.attr("target", "_blank")
.on("mouseover", handleMouseOver())
.on("mouseout", handleMouseOut());
group.append("path")
.style("fill", function(d) { return labels[d.index].color; })
.style("stroke", function(d) { return d3.rgb(labels[d.index].color).darker(); })
.attr("d", arc);
ribbons = g.append("g")
.attr("class", "ribbons")
.selectAll("path")
.data(function(chords) { return chords; })
.enter().append("path")
.attr("d", ribbon)
.style("fill", function(d) { return labels[d.source.index].color; })
.style("stroke", function(d) { return d3.rgb(labels[d.source.index].color).darker(); });
var groupText = group.append("text")
.each(function(d) { d.angle = (d.startAngle + d.endAngle) / 2; })
.attr("x", 6)
.attr("dy", ".35em")
.attr("transform", function(d) {
return "rotate(" + (d.angle * 180 / Math.PI - 90) + ")"
+ "translate(" + (innerRadius + 26) + ")"
+ (d.angle > Math.PI ? " " : "");
})
.text(function(d,i) { return labels[i].name;});
}); // end d3.json
// creates matrix from the json data
function transformData(data){
var matrix = [];
var labels = [];
// extract labels and create the matrix and the list of values
data.items.forEach(function(item){
item.labels.forEach(function(label){
labels[label.name] = {'name': label.name, 'color': label.color, 'url': label.url};
item.labels.forEach(function(related){
if(!matrix[label.name]){
matrix[label.name] = [];
}
if(!matrix[label.name][related.name]){
matrix[label.name][related.name] = 0;
}
if(label.id != related.id){
matrix[label.name][related.name]++;
}
});
});
});
// now put the labels into an array for easier handling
var sorted_labels = [];
Object.keys(labels).sort().forEach(function(lcol){
sorted_labels.push(labels[lcol]);
});
labels = sorted_labels.sort(getSortMethod('+color','+name'));
var ret = [];
var ret_labels = [];
//Object.keys(labels).sort().forEach(function(lcol){
labels.forEach(function(lcol){
var r = [];
labels.forEach(function(lrow){
if(matrix[lcol.name][lrow.name]){
r.push(matrix[lcol.name][lrow.name]);
}
else{
r.push(0);
}
});
ret.push(r);
});
return {'matrix': ret, 'labels': labels};
}
function getSortMethod(){
var _args = Array.prototype.slice.call(arguments);
return function(a, b){
for(var x in _args){
var ax = a[_args[x].substring(1)];
var bx = b[_args[x].substring(1)];
var cx;
ax = typeof ax == "string" ? ax.toLowerCase() : ax / 1;
bx = typeof bx == "string" ? bx.toLowerCase() : bx / 1;
if(_args[x].substring(0,1) == "-"){cx = ax; ax = bx; bx = cx;}
if(ax != bx){return ax < bx ? -1 : 1;}
}
}
}
function fade(opacity) {
return function(d, i) {
ribbons
.filter(function(d) {
return d.source.index != i && d.target.index != i;
})
.style("opacity", opacity);
ribbons
.filter(function(d) {
return d.source.index == i || d.target.index == i;
})
.style("fill", function(d) { console.log(labels[i].color); return "#" + labels[i].color;});
};
}
function handleMouseOver(){
return function(d,i){
ribbons.filter(function(d) { return d.source.index != i && d.target.index != i; })
.style("opacity", 0.05);
ribbons.filter(function(d) { return d.source.index == i || d.target.index == i; })
.style("fill", function(d) { return "#" + labels[i].color;})
.style("opacity",1);
};
}
function handleMouseOut(){
return function(d,i){
// ribbons.filter(function(d) { return d.source.index != i && d.target.index != i; })
// .style("opacity", 1);
};
}
</script>
{
"total_count": 84,
"incomplete_results": false,
"items": [
{
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/109",
"repository_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories",
"labels_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/109/labels{/name}",
"comments_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/109/comments",
"events_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/109/events",
"html_url": "https://github.com/RDA-DMP-Common/user-stories/issues/109",
"id": 277893340,
"number": 109,
"title": "As an IT manager, I want to know about IT resource requirements early in the project lifecycle to enable resource acquisition planning.",
"user": {
"login": "dwalt",
"id": 6201647,
"avatar_url": "https://avatars3.githubusercontent.com/u/6201647?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/dwalt",
"html_url": "https://github.com/dwalt",
"followers_url": "https://api.github.com/users/dwalt/followers",
"following_url": "https://api.github.com/users/dwalt/following{/other_user}",
"gists_url": "https://api.github.com/users/dwalt/gists{/gist_id}",
"starred_url": "https://api.github.com/users/dwalt/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/dwalt/subscriptions",
"organizations_url": "https://api.github.com/users/dwalt/orgs",
"repos_url": "https://api.github.com/users/dwalt/repos",
"events_url": "https://api.github.com/users/dwalt/events{/privacy}",
"received_events_url": "https://api.github.com/users/dwalt/received_events",
"type": "User",
"site_admin": false
},
"labels": [
],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 0,
"created_at": "2017-11-29T20:20:59Z",
"updated_at": "2017-11-29T20:20:59Z",
"closed_at": null,
"author_association": "NONE",
"body": "",
"score": 1.0
},
{
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/108",
"repository_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories",
"labels_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/108/labels{/name}",
"comments_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/108/comments",
"events_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/108/events",
"html_url": "https://github.com/RDA-DMP-Common/user-stories/issues/108",
"id": 277892396,
"number": 108,
"title": "As a data manager, I want to ensure roles and responsibilities are well defined.",
"user": {
"login": "dwalt",
"id": 6201647,
"avatar_url": "https://avatars3.githubusercontent.com/u/6201647?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/dwalt",
"html_url": "https://github.com/dwalt",
"followers_url": "https://api.github.com/users/dwalt/followers",
"following_url": "https://api.github.com/users/dwalt/following{/other_user}",
"gists_url": "https://api.github.com/users/dwalt/gists{/gist_id}",
"starred_url": "https://api.github.com/users/dwalt/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/dwalt/subscriptions",
"organizations_url": "https://api.github.com/users/dwalt/orgs",
"repos_url": "https://api.github.com/users/dwalt/repos",
"events_url": "https://api.github.com/users/dwalt/events{/privacy}",
"received_events_url": "https://api.github.com/users/dwalt/received_events",
"type": "User",
"site_admin": false
},
"labels": [
],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 0,
"created_at": "2017-11-29T20:17:42Z",
"updated_at": "2017-11-29T20:17:42Z",
"closed_at": null,
"author_association": "NONE",
"body": "",
"score": 1.0
},
{
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/107",
"repository_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories",
"labels_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/107/labels{/name}",
"comments_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/107/comments",
"events_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/107/events",
"html_url": "https://github.com/RDA-DMP-Common/user-stories/issues/107",
"id": 277891514,
"number": 107,
"title": "As a data manager, I want to ensure the researcher has thought through their data requirements during the planning phase.",
"user": {
"login": "dwalt",
"id": 6201647,
"avatar_url": "https://avatars3.githubusercontent.com/u/6201647?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/dwalt",
"html_url": "https://github.com/dwalt",
"followers_url": "https://api.github.com/users/dwalt/followers",
"following_url": "https://api.github.com/users/dwalt/following{/other_user}",
"gists_url": "https://api.github.com/users/dwalt/gists{/gist_id}",
"starred_url": "https://api.github.com/users/dwalt/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/dwalt/subscriptions",
"organizations_url": "https://api.github.com/users/dwalt/orgs",
"repos_url": "https://api.github.com/users/dwalt/repos",
"events_url": "https://api.github.com/users/dwalt/events{/privacy}",
"received_events_url": "https://api.github.com/users/dwalt/received_events",
"type": "User",
"site_admin": false
},
"labels": [
],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 0,
"created_at": "2017-11-29T20:14:36Z",
"updated_at": "2017-11-29T20:14:36Z",
"closed_at": null,
"author_association": "NONE",
"body": "",
"score": 1.0
},
{
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/106",
"repository_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories",
"labels_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/106/labels{/name}",
"comments_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/106/comments",
"events_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/106/events",
"html_url": "https://github.com/RDA-DMP-Common/user-stories/issues/106",
"id": 277887693,
"number": 106,
"title": "As a data manager, I want the description of data sets collected or used, updated throughout the project lifecycle, to ensure the descriptions are current and add detail as the study proceeds.",
"user": {
"login": "dwalt",
"id": 6201647,
"avatar_url": "https://avatars3.githubusercontent.com/u/6201647?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/dwalt",
"html_url": "https://github.com/dwalt",
"followers_url": "https://api.github.com/users/dwalt/followers",
"following_url": "https://api.github.com/users/dwalt/following{/other_user}",
"gists_url": "https://api.github.com/users/dwalt/gists{/gist_id}",
"starred_url": "https://api.github.com/users/dwalt/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/dwalt/subscriptions",
"organizations_url": "https://api.github.com/users/dwalt/orgs",
"repos_url": "https://api.github.com/users/dwalt/repos",
"events_url": "https://api.github.com/users/dwalt/events{/privacy}",
"received_events_url": "https://api.github.com/users/dwalt/received_events",
"type": "User",
"site_admin": false
},
"labels": [
],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 0,
"created_at": "2017-11-29T20:01:35Z",
"updated_at": "2017-11-29T20:01:35Z",
"closed_at": null,
"author_association": "NONE",
"body": "",
"score": 1.0
},
{
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/105",
"repository_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories",
"labels_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/105/labels{/name}",
"comments_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/105/comments",
"events_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/105/events",
"html_url": "https://github.com/RDA-DMP-Common/user-stories/issues/105",
"id": 277884460,
"number": 105,
"title": "As an IT developer, I want to leverage content from a DMP for use in other systems, such as project management",
"user": {
"login": "dwalt",
"id": 6201647,
"avatar_url": "https://avatars3.githubusercontent.com/u/6201647?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/dwalt",
"html_url": "https://github.com/dwalt",
"followers_url": "https://api.github.com/users/dwalt/followers",
"following_url": "https://api.github.com/users/dwalt/following{/other_user}",
"gists_url": "https://api.github.com/users/dwalt/gists{/gist_id}",
"starred_url": "https://api.github.com/users/dwalt/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/dwalt/subscriptions",
"organizations_url": "https://api.github.com/users/dwalt/orgs",
"repos_url": "https://api.github.com/users/dwalt/repos",
"events_url": "https://api.github.com/users/dwalt/events{/privacy}",
"received_events_url": "https://api.github.com/users/dwalt/received_events",
"type": "User",
"site_admin": false
},
"labels": [
],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 0,
"created_at": "2017-11-29T19:51:05Z",
"updated_at": "2017-11-29T19:51:05Z",
"closed_at": null,
"author_association": "NONE",
"body": "",
"score": 1.0
},
{
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/104",
"repository_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories",
"labels_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/104/labels{/name}",
"comments_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/104/comments",
"events_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/104/events",
"html_url": "https://github.com/RDA-DMP-Common/user-stories/issues/104",
"id": 277883872,
"number": 104,
"title": "As an IT developer, I want to help researchers leverage content from the DMP for use in authoring project and data metadata",
"user": {
"login": "dwalt",
"id": 6201647,
"avatar_url": "https://avatars3.githubusercontent.com/u/6201647?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/dwalt",
"html_url": "https://github.com/dwalt",
"followers_url": "https://api.github.com/users/dwalt/followers",
"following_url": "https://api.github.com/users/dwalt/following{/other_user}",
"gists_url": "https://api.github.com/users/dwalt/gists{/gist_id}",
"starred_url": "https://api.github.com/users/dwalt/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/dwalt/subscriptions",
"organizations_url": "https://api.github.com/users/dwalt/orgs",
"repos_url": "https://api.github.com/users/dwalt/repos",
"events_url": "https://api.github.com/users/dwalt/events{/privacy}",
"received_events_url": "https://api.github.com/users/dwalt/received_events",
"type": "User",
"site_admin": false
},
"labels": [
],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 0,
"created_at": "2017-11-29T19:49:04Z",
"updated_at": "2017-11-29T19:49:04Z",
"closed_at": null,
"author_association": "NONE",
"body": "",
"score": 1.0
},
{
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/103",
"repository_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories",
"labels_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/103/labels{/name}",
"comments_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/103/comments",
"events_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/103/events",
"html_url": "https://github.com/RDA-DMP-Common/user-stories/issues/103",
"id": 277680176,
"number": 103,
"title": "As an archive manager, I want to make sure that detailed metadata are associated to data so that it will be understandable by future users.",
"user": {
"login": "JacquemotMC",
"id": 34088372,
"avatar_url": "https://avatars2.githubusercontent.com/u/34088372?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/JacquemotMC",
"html_url": "https://github.com/JacquemotMC",
"followers_url": "https://api.github.com/users/JacquemotMC/followers",
"following_url": "https://api.github.com/users/JacquemotMC/following{/other_user}",
"gists_url": "https://api.github.com/users/JacquemotMC/gists{/gist_id}",
"starred_url": "https://api.github.com/users/JacquemotMC/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/JacquemotMC/subscriptions",
"organizations_url": "https://api.github.com/users/JacquemotMC/orgs",
"repos_url": "https://api.github.com/users/JacquemotMC/repos",
"events_url": "https://api.github.com/users/JacquemotMC/events{/privacy}",
"received_events_url": "https://api.github.com/users/JacquemotMC/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 708449685,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/planning%20phase",
"name": "planning phase",
"color": "0e8a16",
"default": false
},
{
"id": 708449871,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/post-project%20phase",
"name": "post-project phase",
"color": "0e8a16",
"default": false
},
{
"id": 708449758,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/project%20phase",
"name": "project phase",
"color": "0e8a16",
"default": false
},
{
"id": 708453722,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/repository%20operator",
"name": "repository operator",
"color": "0052cc",
"default": false
}
],
"state": "closed",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 0,
"created_at": "2017-11-29T09:17:49Z",
"updated_at": "2018-01-31T11:40:16Z",
"closed_at": "2018-01-31T11:40:16Z",
"author_association": "NONE",
"body": "",
"score": 1.0
},
{
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/102",
"repository_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories",
"labels_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/102/labels{/name}",
"comments_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/102/comments",
"events_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/102/events",
"html_url": "https://github.com/RDA-DMP-Common/user-stories/issues/102",
"id": 277680121,
"number": 102,
"title": "As an archive manager, I want to know the legal status of data so that I can apply the legal requirements accordingly.",
"user": {
"login": "JacquemotMC",
"id": 34088372,
"avatar_url": "https://avatars2.githubusercontent.com/u/34088372?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/JacquemotMC",
"html_url": "https://github.com/JacquemotMC",
"followers_url": "https://api.github.com/users/JacquemotMC/followers",
"following_url": "https://api.github.com/users/JacquemotMC/following{/other_user}",
"gists_url": "https://api.github.com/users/JacquemotMC/gists{/gist_id}",
"starred_url": "https://api.github.com/users/JacquemotMC/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/JacquemotMC/subscriptions",
"organizations_url": "https://api.github.com/users/JacquemotMC/orgs",
"repos_url": "https://api.github.com/users/JacquemotMC/repos",
"events_url": "https://api.github.com/users/JacquemotMC/events{/privacy}",
"received_events_url": "https://api.github.com/users/JacquemotMC/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 801689840,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/licensing",
"name": "licensing",
"color": "fbca04",
"default": false
},
{
"id": 801690242,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/other%20policies",
"name": "other policies",
"color": "fbca04",
"default": false
},
{
"id": 708449871,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/post-project%20phase",
"name": "post-project phase",
"color": "0e8a16",
"default": false
},
{
"id": 708453722,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/repository%20operator",
"name": "repository operator",
"color": "0052cc",
"default": false
}
],
"state": "closed",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 0,
"created_at": "2017-11-29T09:17:39Z",
"updated_at": "2018-01-31T12:02:07Z",
"closed_at": "2018-01-31T12:02:07Z",
"author_association": "NONE",
"body": "",
"score": 1.0
},
{
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/101",
"repository_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories",
"labels_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/101/labels{/name}",
"comments_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/101/comments",
"events_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/101/events",
"html_url": "https://github.com/RDA-DMP-Common/user-stories/issues/101",
"id": 277680079,
"number": 101,
"title": "As an archive manager, I want to know in advance the conservation period of data so that I can better organize the service and adapt the preservation actions.",
"user": {
"login": "JacquemotMC",
"id": 34088372,
"avatar_url": "https://avatars2.githubusercontent.com/u/34088372?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/JacquemotMC",
"html_url": "https://github.com/JacquemotMC",
"followers_url": "https://api.github.com/users/JacquemotMC/followers",
"following_url": "https://api.github.com/users/JacquemotMC/following{/other_user}",
"gists_url": "https://api.github.com/users/JacquemotMC/gists{/gist_id}",
"starred_url": "https://api.github.com/users/JacquemotMC/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/JacquemotMC/subscriptions",
"organizations_url": "https://api.github.com/users/JacquemotMC/orgs",
"repos_url": "https://api.github.com/users/JacquemotMC/repos",
"events_url": "https://api.github.com/users/JacquemotMC/events{/privacy}",
"received_events_url": "https://api.github.com/users/JacquemotMC/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 708449685,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/planning%20phase",
"name": "planning phase",
"color": "0e8a16",
"default": false
},
{
"id": 801690381,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/preservation%20policy",
"name": "preservation policy",
"color": "fbca04",
"default": false
},
{
"id": 708449758,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/project%20phase",
"name": "project phase",
"color": "0e8a16",
"default": false
},
{
"id": 708453722,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/repository%20operator",
"name": "repository operator",
"color": "0052cc",
"default": false
}
],
"state": "closed",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 0,
"created_at": "2017-11-29T09:17:27Z",
"updated_at": "2018-01-31T12:01:02Z",
"closed_at": "2018-01-31T12:01:02Z",
"author_association": "NONE",
"body": "",
"score": 1.0
},
{
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/100",
"repository_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories",
"labels_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/100/labels{/name}",
"comments_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/100/comments",
"events_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/100/events",
"html_url": "https://github.com/RDA-DMP-Common/user-stories/issues/100",
"id": 277679999,
"number": 100,
"title": "As an archive, I want to get information about the volume of data to preserve at early stage so that I can provide the adequate storage infrastructure.",
"user": {
"login": "JacquemotMC",
"id": 34088372,
"avatar_url": "https://avatars2.githubusercontent.com/u/34088372?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/JacquemotMC",
"html_url": "https://github.com/JacquemotMC",
"followers_url": "https://api.github.com/users/JacquemotMC/followers",
"following_url": "https://api.github.com/users/JacquemotMC/following{/other_user}",
"gists_url": "https://api.github.com/users/JacquemotMC/gists{/gist_id}",
"starred_url": "https://api.github.com/users/JacquemotMC/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/JacquemotMC/subscriptions",
"organizations_url": "https://api.github.com/users/JacquemotMC/orgs",
"repos_url": "https://api.github.com/users/JacquemotMC/repos",
"events_url": "https://api.github.com/users/JacquemotMC/events{/privacy}",
"received_events_url": "https://api.github.com/users/JacquemotMC/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 708449685,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/planning%20phase",
"name": "planning phase",
"color": "0e8a16",
"default": false
},
{
"id": 708453722,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/repository%20operator",
"name": "repository operator",
"color": "0052cc",
"default": false
},
{
"id": 801688910,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/volume",
"name": "volume",
"color": "fbca04",
"default": false
}
],
"state": "closed",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 0,
"created_at": "2017-11-29T09:17:10Z",
"updated_at": "2018-01-31T11:42:16Z",
"closed_at": "2018-01-31T11:42:16Z",
"author_association": "NONE",
"body": "",
"score": 1.0
},
{
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/99",
"repository_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories",
"labels_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/99/labels{/name}",
"comments_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/99/comments",
"events_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/99/events",
"html_url": "https://github.com/RDA-DMP-Common/user-stories/issues/99",
"id": 277679930,
"number": 99,
"title": "As an archive I want to reuse the information regarding file format so that I can apply automated check for the file validation.",
"user": {
"login": "JacquemotMC",
"id": 34088372,
"avatar_url": "https://avatars2.githubusercontent.com/u/34088372?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/JacquemotMC",
"html_url": "https://github.com/JacquemotMC",
"followers_url": "https://api.github.com/users/JacquemotMC/followers",
"following_url": "https://api.github.com/users/JacquemotMC/following{/other_user}",
"gists_url": "https://api.github.com/users/JacquemotMC/gists{/gist_id}",
"starred_url": "https://api.github.com/users/JacquemotMC/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/JacquemotMC/subscriptions",
"organizations_url": "https://api.github.com/users/JacquemotMC/orgs",
"repos_url": "https://api.github.com/users/JacquemotMC/repos",
"events_url": "https://api.github.com/users/JacquemotMC/events{/privacy}",
"received_events_url": "https://api.github.com/users/JacquemotMC/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 801688220,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/format",
"name": "format",
"color": "fbca04",
"default": false
},
{
"id": 822419113,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/integration/automation",
"name": "integration/automation",
"color": "fbca04",
"default": false
},
{
"id": 708449871,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/post-project%20phase",
"name": "post-project phase",
"color": "0e8a16",
"default": false
},
{
"id": 708453722,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/repository%20operator",
"name": "repository operator",
"color": "0052cc",
"default": false
}
],
"state": "closed",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 1,
"created_at": "2017-11-29T09:16:57Z",
"updated_at": "2018-01-31T11:17:35Z",
"closed_at": "2018-01-30T08:55:13Z",
"author_association": "NONE",
"body": "",
"score": 1.0
},
{
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/94",
"repository_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories",
"labels_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/94/labels{/name}",
"comments_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/94/comments",
"events_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/94/events",
"html_url": "https://github.com/RDA-DMP-Common/user-stories/issues/94",
"id": 277679177,
"number": 94,
"title": "As a data librarian, I want to import administrative information regarding a project into DMP so as to prepopulate it.",
"user": {
"login": "JacquemotMC",
"id": 34088372,
"avatar_url": "https://avatars2.githubusercontent.com/u/34088372?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/JacquemotMC",
"html_url": "https://github.com/JacquemotMC",
"followers_url": "https://api.github.com/users/JacquemotMC/followers",
"following_url": "https://api.github.com/users/JacquemotMC/following{/other_user}",
"gists_url": "https://api.github.com/users/JacquemotMC/gists{/gist_id}",
"starred_url": "https://api.github.com/users/JacquemotMC/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/JacquemotMC/subscriptions",
"organizations_url": "https://api.github.com/users/JacquemotMC/orgs",
"repos_url": "https://api.github.com/users/JacquemotMC/repos",
"events_url": "https://api.github.com/users/JacquemotMC/events{/privacy}",
"received_events_url": "https://api.github.com/users/JacquemotMC/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 816426975,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/institution",
"name": "institution",
"color": "0052cc",
"default": false
},
{
"id": 822419113,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/integration/automation",
"name": "integration/automation",
"color": "fbca04",
"default": false
},
{
"id": 801689914,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/metadata",
"name": "metadata",
"color": "fbca04",
"default": false
},
{
"id": 708449685,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/planning%20phase",
"name": "planning phase",
"color": "0e8a16",
"default": false
},
{
"id": 764431339,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/service%20provider",
"name": "service provider",
"color": "0052cc",
"default": false
}
],
"state": "closed",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 1,
"created_at": "2017-11-29T09:14:16Z",
"updated_at": "2018-01-31T11:17:06Z",
"closed_at": "2018-01-30T08:54:11Z",
"author_association": "NONE",
"body": "",
"score": 1.0
},
{
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/92",
"repository_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories",
"labels_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/92/labels{/name}",
"comments_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/92/comments",
"events_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/92/events",
"html_url": "https://github.com/RDA-DMP-Common/user-stories/issues/92",
"id": 277679060,
"number": 92,
"title": "As head of a research organism, I want to access to the persistent identifiers of datasets provided in the DMP so that I can check that the DMP has been implemented.",
"user": {
"login": "JacquemotMC",
"id": 34088372,
"avatar_url": "https://avatars2.githubusercontent.com/u/34088372?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/JacquemotMC",
"html_url": "https://github.com/JacquemotMC",
"followers_url": "https://api.github.com/users/JacquemotMC/followers",
"following_url": "https://api.github.com/users/JacquemotMC/following{/other_user}",
"gists_url": "https://api.github.com/users/JacquemotMC/gists{/gist_id}",
"starred_url": "https://api.github.com/users/JacquemotMC/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/JacquemotMC/subscriptions",
"organizations_url": "https://api.github.com/users/JacquemotMC/orgs",
"repos_url": "https://api.github.com/users/JacquemotMC/repos",
"events_url": "https://api.github.com/users/JacquemotMC/events{/privacy}",
"received_events_url": "https://api.github.com/users/JacquemotMC/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 708453834,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/funder",
"name": "funder",
"color": "0052cc",
"default": false
},
{
"id": 708449871,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/post-project%20phase",
"name": "post-project phase",
"color": "0e8a16",
"default": false
},
{
"id": 708449758,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/project%20phase",
"name": "project phase",
"color": "0e8a16",
"default": false
},
{
"id": 801690510,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/repository",
"name": "repository",
"color": "fbca04",
"default": false
},
{
"id": 814064706,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/research%20support",
"name": "research support",
"color": "0052cc",
"default": false
}
],
"state": "closed",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 0,
"created_at": "2017-11-29T09:13:54Z",
"updated_at": "2018-01-31T11:53:36Z",
"closed_at": "2018-01-31T11:53:36Z",
"author_association": "NONE",
"body": "",
"score": 1.0
},
{
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/91",
"repository_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories",
"labels_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/91/labels{/name}",
"comments_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/91/comments",
"events_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/91/events",
"html_url": "https://github.com/RDA-DMP-Common/user-stories/issues/91",
"id": 277679004,
"number": 91,
"title": "As a researcher, I want to import metadata that I captured with a metadata tool so that I do not have to capture it again in a DMP.",
"user": {
"login": "JacquemotMC",
"id": 34088372,
"avatar_url": "https://avatars2.githubusercontent.com/u/34088372?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/JacquemotMC",
"html_url": "https://github.com/JacquemotMC",
"followers_url": "https://api.github.com/users/JacquemotMC/followers",
"following_url": "https://api.github.com/users/JacquemotMC/following{/other_user}",
"gists_url": "https://api.github.com/users/JacquemotMC/gists{/gist_id}",
"starred_url": "https://api.github.com/users/JacquemotMC/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/JacquemotMC/subscriptions",
"organizations_url": "https://api.github.com/users/JacquemotMC/orgs",
"repos_url": "https://api.github.com/users/JacquemotMC/repos",
"events_url": "https://api.github.com/users/JacquemotMC/events{/privacy}",
"received_events_url": "https://api.github.com/users/JacquemotMC/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 822419113,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/integration/automation",
"name": "integration/automation",
"color": "fbca04",
"default": false
},
{
"id": 801689914,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/metadata",
"name": "metadata",
"color": "fbca04",
"default": false
},
{
"id": 708449758,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/project%20phase",
"name": "project phase",
"color": "0e8a16",
"default": false
},
{
"id": 708453576,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/researcher",
"name": "researcher",
"color": "0052cc",
"default": false
}
],
"state": "closed",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 1,
"created_at": "2017-11-29T09:13:42Z",
"updated_at": "2018-01-31T11:58:11Z",
"closed_at": "2018-01-31T11:58:11Z",
"author_association": "NONE",
"body": "",
"score": 1.0
},
{
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/90",
"repository_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories",
"labels_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/90/labels{/name}",
"comments_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/90/comments",
"events_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/90/events",
"html_url": "https://github.com/RDA-DMP-Common/user-stories/issues/90",
"id": 277678951,
"number": 90,
"title": "As a researcher, I want to extract of the description of the data collected so that I can reuse it for the writing of a data paper.",
"user": {
"login": "JacquemotMC",
"id": 34088372,
"avatar_url": "https://avatars2.githubusercontent.com/u/34088372?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/JacquemotMC",
"html_url": "https://github.com/JacquemotMC",
"followers_url": "https://api.github.com/users/JacquemotMC/followers",
"following_url": "https://api.github.com/users/JacquemotMC/following{/other_user}",
"gists_url": "https://api.github.com/users/JacquemotMC/gists{/gist_id}",
"starred_url": "https://api.github.com/users/JacquemotMC/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/JacquemotMC/subscriptions",
"organizations_url": "https://api.github.com/users/JacquemotMC/orgs",
"repos_url": "https://api.github.com/users/JacquemotMC/repos",
"events_url": "https://api.github.com/users/JacquemotMC/events{/privacy}",
"received_events_url": "https://api.github.com/users/JacquemotMC/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 822419113,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/integration/automation",
"name": "integration/automation",
"color": "fbca04",
"default": false
},
{
"id": 801689914,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/metadata",
"name": "metadata",
"color": "fbca04",
"default": false
},
{
"id": 708449871,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/post-project%20phase",
"name": "post-project phase",
"color": "0e8a16",
"default": false
},
{
"id": 708453576,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/researcher",
"name": "researcher",
"color": "0052cc",
"default": false
},
{
"id": 801690632,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/reuse",
"name": "reuse",
"color": "fbca04",
"default": false
}
],
"state": "closed",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 2,
"created_at": "2017-11-29T09:13:30Z",
"updated_at": "2018-01-31T11:17:56Z",
"closed_at": "2018-01-30T09:28:01Z",
"author_association": "NONE",
"body": "",
"score": 1.0
},
{
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/89",
"repository_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories",
"labels_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/89/labels{/name}",
"comments_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/89/comments",
"events_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/89/events",
"html_url": "https://github.com/RDA-DMP-Common/user-stories/issues/89",
"id": 277678829,
"number": 89,
"title": "As a data librarian, I want to extract pointers (from the DMP) to metadata held in other systems, so that I can import this metadata into a data catalog.",
"user": {
"login": "JacquemotMC",
"id": 34088372,
"avatar_url": "https://avatars2.githubusercontent.com/u/34088372?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/JacquemotMC",
"html_url": "https://github.com/JacquemotMC",
"followers_url": "https://api.github.com/users/JacquemotMC/followers",
"following_url": "https://api.github.com/users/JacquemotMC/following{/other_user}",
"gists_url": "https://api.github.com/users/JacquemotMC/gists{/gist_id}",
"starred_url": "https://api.github.com/users/JacquemotMC/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/JacquemotMC/subscriptions",
"organizations_url": "https://api.github.com/users/JacquemotMC/orgs",
"repos_url": "https://api.github.com/users/JacquemotMC/repos",
"events_url": "https://api.github.com/users/JacquemotMC/events{/privacy}",
"received_events_url": "https://api.github.com/users/JacquemotMC/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 822419113,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/integration/automation",
"name": "integration/automation",
"color": "fbca04",
"default": false
},
{
"id": 801689914,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/metadata",
"name": "metadata",
"color": "fbca04",
"default": false
},
{
"id": 708449871,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/post-project%20phase",
"name": "post-project phase",
"color": "0e8a16",
"default": false
},
{
"id": 708453722,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/repository%20operator",
"name": "repository operator",
"color": "0052cc",
"default": false
},
{
"id": 801690632,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/reuse",
"name": "reuse",
"color": "fbca04",
"default": false
}
],
"state": "closed",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 0,
"created_at": "2017-11-29T09:13:06Z",
"updated_at": "2018-01-31T11:15:59Z",
"closed_at": "2018-01-30T09:54:52Z",
"author_association": "NONE",
"body": "",
"score": 1.0
},
{
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/88",
"repository_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories",
"labels_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/88/labels{/name}",
"comments_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/88/comments",
"events_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/88/events",
"html_url": "https://github.com/RDA-DMP-Common/user-stories/issues/88",
"id": 277447451,
"number": 88,
"title": "As research evaluation manager I want to ensure all data are quoted correctly with our affiliation so they are counted towards our citation counts.",
"user": {
"login": "TomMiksa",
"id": 16255007,
"avatar_url": "https://avatars2.githubusercontent.com/u/16255007?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/TomMiksa",
"html_url": "https://github.com/TomMiksa",
"followers_url": "https://api.github.com/users/TomMiksa/followers",
"following_url": "https://api.github.com/users/TomMiksa/following{/other_user}",
"gists_url": "https://api.github.com/users/TomMiksa/gists{/gist_id}",
"starred_url": "https://api.github.com/users/TomMiksa/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/TomMiksa/subscriptions",
"organizations_url": "https://api.github.com/users/TomMiksa/orgs",
"repos_url": "https://api.github.com/users/TomMiksa/repos",
"events_url": "https://api.github.com/users/TomMiksa/events{/privacy}",
"received_events_url": "https://api.github.com/users/TomMiksa/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 708453834,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/funder",
"name": "funder",
"color": "0052cc",
"default": false
},
{
"id": 801689914,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/metadata",
"name": "metadata",
"color": "fbca04",
"default": false
},
{
"id": 708449871,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/post-project%20phase",
"name": "post-project phase",
"color": "0e8a16",
"default": false
},
{
"id": 801690510,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/repository",
"name": "repository",
"color": "fbca04",
"default": false
},
{
"id": 801690632,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/reuse",
"name": "reuse",
"color": "fbca04",
"default": false
}
],
"state": "closed",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 1,
"created_at": "2017-11-28T16:23:47Z",
"updated_at": "2018-01-31T11:30:45Z",
"closed_at": "2018-01-31T11:30:45Z",
"author_association": "COLLABORATOR",
"body": "Based on the workshop outputs: https://doi.org/10.5281/zenodo.1067753",
"score": 1.0
},
{
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/87",
"repository_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories",
"labels_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/87/labels{/name}",
"comments_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/87/comments",
"events_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/87/events",
"html_url": "https://github.com/RDA-DMP-Common/user-stories/issues/87",
"id": 277447344,
"number": 87,
"title": "As a PI, I want to know what kind of metadata I need so I can record this in time.",
"user": {
"login": "TomMiksa",
"id": 16255007,
"avatar_url": "https://avatars2.githubusercontent.com/u/16255007?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/TomMiksa",
"html_url": "https://github.com/TomMiksa",
"followers_url": "https://api.github.com/users/TomMiksa/followers",
"following_url": "https://api.github.com/users/TomMiksa/following{/other_user}",
"gists_url": "https://api.github.com/users/TomMiksa/gists{/gist_id}",
"starred_url": "https://api.github.com/users/TomMiksa/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/TomMiksa/subscriptions",
"organizations_url": "https://api.github.com/users/TomMiksa/orgs",
"repos_url": "https://api.github.com/users/TomMiksa/repos",
"events_url": "https://api.github.com/users/TomMiksa/events{/privacy}",
"received_events_url": "https://api.github.com/users/TomMiksa/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 801689914,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/metadata",
"name": "metadata",
"color": "fbca04",
"default": false
},
{
"id": 708449685,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/planning%20phase",
"name": "planning phase",
"color": "0e8a16",
"default": false
},
{
"id": 708449758,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/project%20phase",
"name": "project phase",
"color": "0e8a16",
"default": false
},
{
"id": 708453576,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/researcher",
"name": "researcher",
"color": "0052cc",
"default": false
}
],
"state": "closed",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 1,
"created_at": "2017-11-28T16:23:31Z",
"updated_at": "2018-01-30T08:32:56Z",
"closed_at": "2018-01-30T08:32:56Z",
"author_association": "COLLABORATOR",
"body": "Based on the workshop outputs: https://doi.org/10.5281/zenodo.1067753",
"score": 1.0
},
{
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/86",
"repository_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories",
"labels_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/86/labels{/name}",
"comments_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/86/comments",
"events_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/86/events",
"html_url": "https://github.com/RDA-DMP-Common/user-stories/issues/86",
"id": 277447295,
"number": 86,
"title": "As a PI, I want to record information about my DMP such that an Ethics Committee can review this for compliance with ethical standards.",
"user": {
"login": "TomMiksa",
"id": 16255007,
"avatar_url": "https://avatars2.githubusercontent.com/u/16255007?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/TomMiksa",
"html_url": "https://github.com/TomMiksa",
"followers_url": "https://api.github.com/users/TomMiksa/followers",
"following_url": "https://api.github.com/users/TomMiksa/following{/other_user}",
"gists_url": "https://api.github.com/users/TomMiksa/gists{/gist_id}",
"starred_url": "https://api.github.com/users/TomMiksa/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/TomMiksa/subscriptions",
"organizations_url": "https://api.github.com/users/TomMiksa/orgs",
"repos_url": "https://api.github.com/users/TomMiksa/repos",
"events_url": "https://api.github.com/users/TomMiksa/events{/privacy}",
"received_events_url": "https://api.github.com/users/TomMiksa/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 801690242,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/other%20policies",
"name": "other policies",
"color": "fbca04",
"default": false
},
{
"id": 708449685,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/planning%20phase",
"name": "planning phase",
"color": "0e8a16",
"default": false
},
{
"id": 708453576,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/researcher",
"name": "researcher",
"color": "0052cc",
"default": false
}
],
"state": "closed",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 2,
"created_at": "2017-11-28T16:23:22Z",
"updated_at": "2018-02-01T10:23:31Z",
"closed_at": "2018-02-01T10:23:31Z",
"author_association": "COLLABORATOR",
"body": "Based on the workshop outputs: https://doi.org/10.5281/zenodo.1067753",
"score": 1.0
},
{
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/85",
"repository_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories",
"labels_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/85/labels{/name}",
"comments_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/85/comments",
"events_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/85/events",
"html_url": "https://github.com/RDA-DMP-Common/user-stories/issues/85",
"id": 277447243,
"number": 85,
"title": "As a PI, I want to properly record all metadata so I can ensure proper running of the project in case of staff changes.",
"user": {
"login": "TomMiksa",
"id": 16255007,
"avatar_url": "https://avatars2.githubusercontent.com/u/16255007?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/TomMiksa",
"html_url": "https://github.com/TomMiksa",
"followers_url": "https://api.github.com/users/TomMiksa/followers",
"following_url": "https://api.github.com/users/TomMiksa/following{/other_user}",
"gists_url": "https://api.github.com/users/TomMiksa/gists{/gist_id}",
"starred_url": "https://api.github.com/users/TomMiksa/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/TomMiksa/subscriptions",
"organizations_url": "https://api.github.com/users/TomMiksa/orgs",
"repos_url": "https://api.github.com/users/TomMiksa/repos",
"events_url": "https://api.github.com/users/TomMiksa/events{/privacy}",
"received_events_url": "https://api.github.com/users/TomMiksa/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 801689914,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/metadata",
"name": "metadata",
"color": "fbca04",
"default": false
},
{
"id": 708449758,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/project%20phase",
"name": "project phase",
"color": "0e8a16",
"default": false
},
{
"id": 708453576,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/researcher",
"name": "researcher",
"color": "0052cc",
"default": false
}
],
"state": "closed",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 0,
"created_at": "2017-11-28T16:23:13Z",
"updated_at": "2018-01-31T11:46:31Z",
"closed_at": "2018-01-31T11:46:31Z",
"author_association": "COLLABORATOR",
"body": "Based on the workshop outputs: https://doi.org/10.5281/zenodo.1067753",
"score": 1.0
},
{
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/84",
"repository_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories",
"labels_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/84/labels{/name}",
"comments_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/84/comments",
"events_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/84/events",
"html_url": "https://github.com/RDA-DMP-Common/user-stories/issues/84",
"id": 277447187,
"number": 84,
"title": "As a research support officer, I want to ensure compliance to the funders’ rules to ensure all costs will be accepted. ",
"user": {
"login": "TomMiksa",
"id": 16255007,
"avatar_url": "https://avatars2.githubusercontent.com/u/16255007?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/TomMiksa",
"html_url": "https://github.com/TomMiksa",
"followers_url": "https://api.github.com/users/TomMiksa/followers",
"following_url": "https://api.github.com/users/TomMiksa/following{/other_user}",
"gists_url": "https://api.github.com/users/TomMiksa/gists{/gist_id}",
"starred_url": "https://api.github.com/users/TomMiksa/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/TomMiksa/subscriptions",
"organizations_url": "https://api.github.com/users/TomMiksa/orgs",
"repos_url": "https://api.github.com/users/TomMiksa/repos",
"events_url": "https://api.github.com/users/TomMiksa/events{/privacy}",
"received_events_url": "https://api.github.com/users/TomMiksa/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 801689719,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/financial",
"name": "financial",
"color": "fbca04",
"default": false
},
{
"id": 801690242,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/other%20policies",
"name": "other policies",
"color": "fbca04",
"default": false
},
{
"id": 708449685,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/planning%20phase",
"name": "planning phase",
"color": "0e8a16",
"default": false
},
{
"id": 708449758,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/project%20phase",
"name": "project phase",
"color": "0e8a16",
"default": false
},
{
"id": 814064706,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/research%20support",
"name": "research support",
"color": "0052cc",
"default": false
}
],
"state": "closed",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 0,
"created_at": "2017-11-28T16:23:05Z",
"updated_at": "2018-01-31T11:47:05Z",
"closed_at": "2018-01-31T11:47:05Z",
"author_association": "COLLABORATOR",
"body": "Based on the workshop outputs: https://doi.org/10.5281/zenodo.1067753",
"score": 1.0
},
{
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/83",
"repository_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories",
"labels_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/83/labels{/name}",
"comments_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/83/comments",
"events_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/83/events",
"html_url": "https://github.com/RDA-DMP-Common/user-stories/issues/83",
"id": 277447123,
"number": 83,
"title": "As a funder, I want to know how secure data is to ensure legal compliance.",
"user": {
"login": "TomMiksa",
"id": 16255007,
"avatar_url": "https://avatars2.githubusercontent.com/u/16255007?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/TomMiksa",
"html_url": "https://github.com/TomMiksa",
"followers_url": "https://api.github.com/users/TomMiksa/followers",
"following_url": "https://api.github.com/users/TomMiksa/following{/other_user}",
"gists_url": "https://api.github.com/users/TomMiksa/gists{/gist_id}",
"starred_url": "https://api.github.com/users/TomMiksa/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/TomMiksa/subscriptions",
"organizations_url": "https://api.github.com/users/TomMiksa/orgs",
"repos_url": "https://api.github.com/users/TomMiksa/repos",
"events_url": "https://api.github.com/users/TomMiksa/events{/privacy}",
"received_events_url": "https://api.github.com/users/TomMiksa/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 801659512,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/access%20control",
"name": "access control",
"color": "fbca04",
"default": false
},
{
"id": 708453834,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/funder",
"name": "funder",
"color": "0052cc",
"default": false
},
{
"id": 801690242,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/other%20policies",
"name": "other policies",
"color": "fbca04",
"default": false
},
{
"id": 708449758,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/project%20phase",
"name": "project phase",
"color": "0e8a16",
"default": false
},
{
"id": 801690698,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/security",
"name": "security",
"color": "fbca04",
"default": false
}
],
"state": "closed",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 0,
"created_at": "2017-11-28T16:22:54Z",
"updated_at": "2018-01-31T11:47:17Z",
"closed_at": "2018-01-31T11:47:17Z",
"author_association": "COLLABORATOR",
"body": "Based on the workshop outputs: https://doi.org/10.5281/zenodo.1067753",
"score": 1.0
},
{
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/82",
"repository_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories",
"labels_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/82/labels{/name}",
"comments_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/82/comments",
"events_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/82/events",
"html_url": "https://github.com/RDA-DMP-Common/user-stories/issues/82",
"id": 277447063,
"number": 82,
"title": "As an IT officer, I want to know how secure data is to ensure legal compliance.",
"user": {
"login": "TomMiksa",
"id": 16255007,
"avatar_url": "https://avatars2.githubusercontent.com/u/16255007?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/TomMiksa",
"html_url": "https://github.com/TomMiksa",
"followers_url": "https://api.github.com/users/TomMiksa/followers",
"following_url": "https://api.github.com/users/TomMiksa/following{/other_user}",
"gists_url": "https://api.github.com/users/TomMiksa/gists{/gist_id}",
"starred_url": "https://api.github.com/users/TomMiksa/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/TomMiksa/subscriptions",
"organizations_url": "https://api.github.com/users/TomMiksa/orgs",
"repos_url": "https://api.github.com/users/TomMiksa/repos",
"events_url": "https://api.github.com/users/TomMiksa/events{/privacy}",
"received_events_url": "https://api.github.com/users/TomMiksa/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 801659512,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/access%20control",
"name": "access control",
"color": "fbca04",
"default": false
},
{
"id": 708449758,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/project%20phase",
"name": "project phase",
"color": "0e8a16",
"default": false
},
{
"id": 801690698,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/security",
"name": "security",
"color": "fbca04",
"default": false
},
{
"id": 764431339,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/service%20provider",
"name": "service provider",
"color": "0052cc",
"default": false
}
],
"state": "closed",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 0,
"created_at": "2017-11-28T16:22:44Z",
"updated_at": "2018-01-31T11:49:46Z",
"closed_at": "2018-01-31T11:49:46Z",
"author_association": "COLLABORATOR",
"body": "Based on the workshop outputs: https://doi.org/10.5281/zenodo.1067753",
"score": 1.0
},
{
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/81",
"repository_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories",
"labels_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/81/labels{/name}",
"comments_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/81/comments",
"events_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/81/events",
"html_url": "https://github.com/RDA-DMP-Common/user-stories/issues/81",
"id": 277447003,
"number": 81,
"title": "As a PI, I want to know how secure data is to ensure legal compliance.",
"user": {
"login": "TomMiksa",
"id": 16255007,
"avatar_url": "https://avatars2.githubusercontent.com/u/16255007?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/TomMiksa",
"html_url": "https://github.com/TomMiksa",
"followers_url": "https://api.github.com/users/TomMiksa/followers",
"following_url": "https://api.github.com/users/TomMiksa/following{/other_user}",
"gists_url": "https://api.github.com/users/TomMiksa/gists{/gist_id}",
"starred_url": "https://api.github.com/users/TomMiksa/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/TomMiksa/subscriptions",
"organizations_url": "https://api.github.com/users/TomMiksa/orgs",
"repos_url": "https://api.github.com/users/TomMiksa/repos",
"events_url": "https://api.github.com/users/TomMiksa/events{/privacy}",
"received_events_url": "https://api.github.com/users/TomMiksa/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 801659512,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/access%20control",
"name": "access control",
"color": "fbca04",
"default": false
},
{
"id": 708449758,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/project%20phase",
"name": "project phase",
"color": "0e8a16",
"default": false
},
{
"id": 708453576,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/researcher",
"name": "researcher",
"color": "0052cc",
"default": false
},
{
"id": 801690698,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/security",
"name": "security",
"color": "fbca04",
"default": false
}
],
"state": "closed",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 0,
"created_at": "2017-11-28T16:22:33Z",
"updated_at": "2018-01-31T11:44:47Z",
"closed_at": "2018-01-31T11:44:47Z",
"author_association": "COLLABORATOR",
"body": "Based on the workshop outputs: https://doi.org/10.5281/zenodo.1067753",
"score": 1.0
},
{
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/80",
"repository_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories",
"labels_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/80/labels{/name}",
"comments_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/80/comments",
"events_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/80/events",
"html_url": "https://github.com/RDA-DMP-Common/user-stories/issues/80",
"id": 277446950,
"number": 80,
"title": "As a PI, I want to plan what kind of data I want to record/store to ensure it will possible to store it.",
"user": {
"login": "TomMiksa",
"id": 16255007,
"avatar_url": "https://avatars2.githubusercontent.com/u/16255007?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/TomMiksa",
"html_url": "https://github.com/TomMiksa",
"followers_url": "https://api.github.com/users/TomMiksa/followers",
"following_url": "https://api.github.com/users/TomMiksa/following{/other_user}",
"gists_url": "https://api.github.com/users/TomMiksa/gists{/gist_id}",
"starred_url": "https://api.github.com/users/TomMiksa/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/TomMiksa/subscriptions",
"organizations_url": "https://api.github.com/users/TomMiksa/orgs",
"repos_url": "https://api.github.com/users/TomMiksa/repos",
"events_url": "https://api.github.com/users/TomMiksa/events{/privacy}",
"received_events_url": "https://api.github.com/users/TomMiksa/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 801688220,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/format",
"name": "format",
"color": "fbca04",
"default": false
},
{
"id": 708449685,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/planning%20phase",
"name": "planning phase",
"color": "0e8a16",
"default": false
},
{
"id": 801690510,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/repository",
"name": "repository",
"color": "fbca04",
"default": false
},
{
"id": 708453576,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/researcher",
"name": "researcher",
"color": "0052cc",
"default": false
},
{
"id": 801690849,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/storage",
"name": "storage",
"color": "fbca04",
"default": false
},
{
"id": 801688910,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/volume",
"name": "volume",
"color": "fbca04",
"default": false
}
],
"state": "closed",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 0,
"created_at": "2017-11-28T16:22:26Z",
"updated_at": "2018-01-31T11:45:00Z",
"closed_at": "2018-01-31T11:45:00Z",
"author_association": "COLLABORATOR",
"body": "Based on the workshop outputs: https://doi.org/10.5281/zenodo.1067753",
"score": 1.0
},
{
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/79",
"repository_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories",
"labels_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/79/labels{/name}",
"comments_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/79/comments",
"events_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/79/events",
"html_url": "https://github.com/RDA-DMP-Common/user-stories/issues/79",
"id": 277446897,
"number": 79,
"title": "As a PI, I want to know who owns the data to know what I am allowed to do with it.",
"user": {
"login": "TomMiksa",
"id": 16255007,
"avatar_url": "https://avatars2.githubusercontent.com/u/16255007?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/TomMiksa",
"html_url": "https://github.com/TomMiksa",
"followers_url": "https://api.github.com/users/TomMiksa/followers",
"following_url": "https://api.github.com/users/TomMiksa/following{/other_user}",
"gists_url": "https://api.github.com/users/TomMiksa/gists{/gist_id}",
"starred_url": "https://api.github.com/users/TomMiksa/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/TomMiksa/subscriptions",
"organizations_url": "https://api.github.com/users/TomMiksa/orgs",
"repos_url": "https://api.github.com/users/TomMiksa/repos",
"events_url": "https://api.github.com/users/TomMiksa/events{/privacy}",
"received_events_url": "https://api.github.com/users/TomMiksa/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 801689840,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/licensing",
"name": "licensing",
"color": "fbca04",
"default": false
},
{
"id": 708449685,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/planning%20phase",
"name": "planning phase",
"color": "0e8a16",
"default": false
},
{
"id": 708449758,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/project%20phase",
"name": "project phase",
"color": "0e8a16",
"default": false
},
{
"id": 708453576,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/researcher",
"name": "researcher",
"color": "0052cc",
"default": false
}
],
"state": "closed",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 0,
"created_at": "2017-11-28T16:22:17Z",
"updated_at": "2018-01-31T11:41:19Z",
"closed_at": "2018-01-31T11:41:19Z",
"author_association": "COLLABORATOR",
"body": "Based on the workshop outputs: https://doi.org/10.5281/zenodo.1067753",
"score": 1.0
},
{
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/77",
"repository_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories",
"labels_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/77/labels{/name}",
"comments_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/77/comments",
"events_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/77/events",
"html_url": "https://github.com/RDA-DMP-Common/user-stories/issues/77",
"id": 277446608,
"number": 77,
"title": "As a rector, I need to know how many data will be stored to plan long term resources.",
"user": {
"login": "TomMiksa",
"id": 16255007,
"avatar_url": "https://avatars2.githubusercontent.com/u/16255007?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/TomMiksa",
"html_url": "https://github.com/TomMiksa",
"followers_url": "https://api.github.com/users/TomMiksa/followers",
"following_url": "https://api.github.com/users/TomMiksa/following{/other_user}",
"gists_url": "https://api.github.com/users/TomMiksa/gists{/gist_id}",
"starred_url": "https://api.github.com/users/TomMiksa/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/TomMiksa/subscriptions",
"organizations_url": "https://api.github.com/users/TomMiksa/orgs",
"repos_url": "https://api.github.com/users/TomMiksa/repos",
"events_url": "https://api.github.com/users/TomMiksa/events{/privacy}",
"received_events_url": "https://api.github.com/users/TomMiksa/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 816426975,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/institution",
"name": "institution",
"color": "0052cc",
"default": false
},
{
"id": 708449685,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/planning%20phase",
"name": "planning phase",
"color": "0e8a16",
"default": false
},
{
"id": 708449871,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/post-project%20phase",
"name": "post-project phase",
"color": "0e8a16",
"default": false
},
{
"id": 801690381,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/preservation%20policy",
"name": "preservation policy",
"color": "fbca04",
"default": false
},
{
"id": 801690849,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/storage",
"name": "storage",
"color": "fbca04",
"default": false
},
{
"id": 801688910,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/volume",
"name": "volume",
"color": "fbca04",
"default": false
}
],
"state": "closed",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 1,
"created_at": "2017-11-28T16:21:32Z",
"updated_at": "2018-01-30T08:33:26Z",
"closed_at": "2018-01-30T08:33:26Z",
"author_association": "COLLABORATOR",
"body": "Based on the workshop outputs: https://doi.org/10.5281/zenodo.1067753",
"score": 1.0
},
{
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/76",
"repository_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories",
"labels_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/76/labels{/name}",
"comments_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/76/comments",
"events_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/76/events",
"html_url": "https://github.com/RDA-DMP-Common/user-stories/issues/76",
"id": 277446563,
"number": 76,
"title": "As an institute, I want to know how many people will be employed to set up their workspaces in time.",
"user": {
"login": "TomMiksa",
"id": 16255007,
"avatar_url": "https://avatars2.githubusercontent.com/u/16255007?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/TomMiksa",
"html_url": "https://github.com/TomMiksa",
"followers_url": "https://api.github.com/users/TomMiksa/followers",
"following_url": "https://api.github.com/users/TomMiksa/following{/other_user}",
"gists_url": "https://api.github.com/users/TomMiksa/gists{/gist_id}",
"starred_url": "https://api.github.com/users/TomMiksa/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/TomMiksa/subscriptions",
"organizations_url": "https://api.github.com/users/TomMiksa/orgs",
"repos_url": "https://api.github.com/users/TomMiksa/repos",
"events_url": "https://api.github.com/users/TomMiksa/events{/privacy}",
"received_events_url": "https://api.github.com/users/TomMiksa/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 816426975,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/institution",
"name": "institution",
"color": "0052cc",
"default": false
},
{
"id": 708449685,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/planning%20phase",
"name": "planning phase",
"color": "0e8a16",
"default": false
}
],
"state": "closed",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 0,
"created_at": "2017-11-28T16:21:24Z",
"updated_at": "2018-01-30T14:49:46Z",
"closed_at": "2018-01-30T14:49:46Z",
"author_association": "COLLABORATOR",
"body": "Based on the workshop outputs: https://doi.org/10.5281/zenodo.1067753",
"score": 1.0
},
{
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/71",
"repository_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories",
"labels_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/71/labels{/name}",
"comments_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/71/comments",
"events_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/71/events",
"html_url": "https://github.com/RDA-DMP-Common/user-stories/issues/71",
"id": 277446258,
"number": 71,
"title": "As a researcher, I need to know how many resources are need during the project to calculate costs.",
"user": {
"login": "TomMiksa",
"id": 16255007,
"avatar_url": "https://avatars2.githubusercontent.com/u/16255007?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/TomMiksa",
"html_url": "https://github.com/TomMiksa",
"followers_url": "https://api.github.com/users/TomMiksa/followers",
"following_url": "https://api.github.com/users/TomMiksa/following{/other_user}",
"gists_url": "https://api.github.com/users/TomMiksa/gists{/gist_id}",
"starred_url": "https://api.github.com/users/TomMiksa/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/TomMiksa/subscriptions",
"organizations_url": "https://api.github.com/users/TomMiksa/orgs",
"repos_url": "https://api.github.com/users/TomMiksa/repos",
"events_url": "https://api.github.com/users/TomMiksa/events{/privacy}",
"received_events_url": "https://api.github.com/users/TomMiksa/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 801689719,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/financial",
"name": "financial",
"color": "fbca04",
"default": false
},
{
"id": 708449685,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/planning%20phase",
"name": "planning phase",
"color": "0e8a16",
"default": false
},
{
"id": 708453576,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/researcher",
"name": "researcher",
"color": "0052cc",
"default": false
}
],
"state": "closed",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 1,
"created_at": "2017-11-28T16:20:34Z",
"updated_at": "2018-01-30T09:21:36Z",
"closed_at": "2018-01-30T09:21:36Z",
"author_association": "COLLABORATOR",
"body": "Based on the workshop outputs: https://doi.org/10.5281/zenodo.1067753",
"score": 1.0
},
{
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/70",
"repository_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories",
"labels_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/70/labels{/name}",
"comments_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/70/comments",
"events_url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/issues/70/events",
"html_url": "https://github.com/RDA-DMP-Common/user-stories/issues/70",
"id": 277445954,
"number": 70,
"title": "As a repository manager, I need to know about anonymization status of data.",
"user": {
"login": "TomMiksa",
"id": 16255007,
"avatar_url": "https://avatars2.githubusercontent.com/u/16255007?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/TomMiksa",
"html_url": "https://github.com/TomMiksa",
"followers_url": "https://api.github.com/users/TomMiksa/followers",
"following_url": "https://api.github.com/users/TomMiksa/following{/other_user}",
"gists_url": "https://api.github.com/users/TomMiksa/gists{/gist_id}",
"starred_url": "https://api.github.com/users/TomMiksa/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/TomMiksa/subscriptions",
"organizations_url": "https://api.github.com/users/TomMiksa/orgs",
"repos_url": "https://api.github.com/users/TomMiksa/repos",
"events_url": "https://api.github.com/users/TomMiksa/events{/privacy}",
"received_events_url": "https://api.github.com/users/TomMiksa/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 708449871,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/post-project%20phase",
"name": "post-project phase",
"color": "0e8a16",
"default": false
},
{
"id": 708453722,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/repository%20operator",
"name": "repository operator",
"color": "0052cc",
"default": false
},
{
"id": 801690698,
"url": "https://api.github.com/repos/RDA-DMP-Common/user-stories/labels/security",
"name": "security",
"color": "fbca04",
"default": false
}
],
"state": "closed",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 0,
"created_at": "2017-11-28T16:19:48Z",
"updated_at": "2018-01-31T11:41:45Z",
"closed_at": "2018-01-31T11:41:45Z",
"author_association": "COLLABORATOR",
"body": "Based on the workshop outputs: https://doi.org/10.5281/zenodo.1067753",
"score": 1.0
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment