#17 implementation of an example task database

This commit is contained in:
Gian-Andrea Hutter 2022-10-21 21:18:29 +02:00
parent 96b5dba36c
commit a2008450e6
1 changed files with 37 additions and 19 deletions

View File

@ -1,32 +1,50 @@
[ [
{ {
"id" : "1",
"name" : "sow plant",
"description": "Plant the seeds/ crops in de bed.",
"startDate" : "01.05.2022",
"endDate" : "01.05.2022",
"interval" : "null"
},
{
"id" : "2",
"name" : "water plant", "name" : "water plant",
"description": "water the plant, that the soil is wet around the plant.", "description": "water the plant, so that the soil is wet around the plant.",
"tools": "watering can" "startDate" : "01.05.2022",
}, "endDate" : "01.09.2022",
{ "interval" : "2"
"name" : "sow plant",
"description": "",
"tools": "crops, small shovel, gardening gloves, soil"
},
{
"name" : "harvest plant",
"description": "",
"tools": "box or bag for the harvested vegetable"
}, },
{ {
"id" : "3",
"name" : "fertilize plant", "name" : "fertilize plant",
"description": "", "description": "The fertilizer has to be mixed with water. Then fertilize the plant's soil with the mixture",
"tools": "Fertilizer, small shovel, gardening gloves" "startDate" : "01.06.2022",
"endDate" : "01.08.2022",
"interval" : "28"
}, },
{ {
"id" : "4",
"name" : "covering plant", "name" : "covering plant",
"description": "", "description": "Take a big enough coverage for the plants. Cover the whole plant with a bit space between the plant and the coverage",
"tools": "" "startDate" : "15.07.2022",
"endDate" : "15.07.2022",
"interval" : "null"
}, },
{ {
"name" : "look for plant", "id" : "5",
"description": "look for pest or illness at the leaves", "name" : "look after plant",
"tools": "" "description": "Look for pest or illness at the leaves of the plant. Check the soil around the plant, if the roots are enough covered with soil",
"startDate" : "01.05.2022",
"endDate" : "01.09.2022",
"interval" : "5"
},
{
"id" : "6",
"name" : "harvest plant",
"description": "Pull the ripe vegetables out from the soil. Clean them with clear, fresh water. ",
"startDate" : "01.09.2022",
"endDate" : "01.09.2022",
"interval" : "null"
} }
] ]