-
Notifications
You must be signed in to change notification settings - Fork 33
Create almighty glossary #56
Comments
WorkItemType(WIT) : Most basic data structure of the system responsible for defining how a WorkItem will look like and what are valid components/fields a WorkItem will have. Example- a Task can be a WIT {
"name":"Task",
"fields":{
"system.owner":{
"required":true,
"kind":"user"
},
"system.title":{
"required":true,
"kind":"string"
},
"system.duration":{
"required":true,
"kind":"integer"
}
},
"extendedTypeID": null
} This is a WIT, which will be used while creating WorkItem of type Task. |
WorkItem (WI) : This defines one specific instance in the planner. It can be a project instance, task instance, issue instance, bug instance. As said instance, it will hold the state and information(actual values) about that work item. It must have a Example - Work Item of type Task (Refer this example of WIT first) {
"type": "Task",
"name": "task1",
"fields": {
"system.owner": "dev_user",
"system.title": "Write API for user registration",
"system.duration":3
}
} This is a work item that has |
I've picked this up |
@pranavgore09 good writeups :-) |
Defining names like:
The text was updated successfully, but these errors were encountered: