@@ -14,12 +14,12 @@ func gitlabProjectMilestoneGetSchema() map[string]*schema.Schema {
14
14
15
15
return map [string ]* schema.Schema {
16
16
"iid" : {
17
- Description : "The ID of the project’s milestone." ,
17
+ Description : "The ID of the milestone only in one project ." ,
18
18
Type : schema .TypeInt ,
19
19
Computed : true ,
20
20
},
21
21
"milestone_id" : {
22
- Description : "The ID of the project’s milestone in Gitlab DB ." ,
22
+ Description : "The global ID of the project’s milestone." ,
23
23
Type : schema .TypeInt ,
24
24
Computed : true ,
25
25
},
@@ -40,19 +40,19 @@ func gitlabProjectMilestoneGetSchema() map[string]*schema.Schema {
40
40
Optional : true ,
41
41
},
42
42
"due_date" : {
43
- Description : "The due date of the milestone." ,
43
+ Description : "The due date of the milestone. Date time string in the format YYYY-MM-DD, for example 2016-03-11. " ,
44
44
Type : schema .TypeString ,
45
45
Optional : true ,
46
46
ValidateDiagFunc : isISO6801Date ,
47
47
},
48
48
"start_date" : {
49
- Description : "The start date of the milestone." ,
49
+ Description : "The start date of the milestone. Date time string in the format YYYY-MM-DD, for example 2016-03-11. " ,
50
50
Type : schema .TypeString ,
51
51
Optional : true ,
52
52
ValidateDiagFunc : isISO6801Date ,
53
53
},
54
54
"updated_at" : {
55
- Description : "The last update time of the milestone." ,
55
+ Description : "The last update time of the milestone. Date time string, ISO 8601 formatted, for example 2016-03-11T03:45:40Z. " ,
56
56
Type : schema .TypeString ,
57
57
Computed : true ,
58
58
Optional : true ,
@@ -61,7 +61,7 @@ func gitlabProjectMilestoneGetSchema() map[string]*schema.Schema {
61
61
ValidateDiagFunc : validation .ToDiagFunc (validation .IsRFC3339Time ),
62
62
},
63
63
"created_at" : {
64
- Description : "The time of creation of the milestone." ,
64
+ Description : "The time of creation of the milestone. Date time string, ISO 8601 formatted, for example 2016-03-11T03:45:40Z. " ,
65
65
Type : schema .TypeString ,
66
66
Computed : true ,
67
67
Optional : true ,
0 commit comments