Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added some properties to projects #357

Open
wants to merge 1 commit into
base: v1.0.0
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -443,6 +443,35 @@
"type":{
"type":"string",
"description": " e.g. 'volunteering', 'presentation', 'talk', 'application', 'conference'"
},
"goal":{
"type": "string",
"description": "Specify the goal of the project, e.g. 'Sucessfully introducing Scrum'"
},
"authority":{
"type": "string",
"description": "Specify the contract authority, e.g. CTO, CDO, project manager"
},
"industry":{
"type": "string",
"description": "Specify the industry of the entity, e.g. automotive, energy, health"
},
"volume":{
"type": "string",
"description": "Specify the contract volume if not 100% capacity, e.g. 20d, 6m "
},
"team":{
"type": "string",
"description": "Specify your team size, e.g. 'Lead of 6 software engineers'"
},
"stakeholder":{
"type":"array",
"description": "Specify importand stakeholders",
"additionalItems": false,
"items": {
"type":"string",
"description": "e.g. CFO, marketing, The Business (TM)"
}
}
}
}
Expand Down