Skip to content

Commit

Permalink
timeCreated and lastModified should be DateTime type (#5872)
Browse files Browse the repository at this point in the history
  • Loading branch information
filizt authored and sergey-shandar committed May 8, 2019
1 parent 2b6274e commit 97fc740
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -552,12 +552,14 @@
"type": "object",
"properties": {
"timeCreated": {
"type": "string",
"type": "string",
"format": "date-time",
"readOnly": true,
"description": "Creation time of this blueprint definition."
},
"lastModified": {
"type": "string",
"format": "date-time",
"readOnly": true,
"description": "Last modified time of this blueprint definition."
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1338,11 +1338,13 @@
"properties": {
"timeCreated": {
"type": "string",
"format": "date-time",
"readOnly": true,
"description": "Creation time of this blueprint definition."
},
"lastModified": {
"type": "string",
"format": "date-time",
"readOnly": true,
"description": "Last modified time of this blueprint definition."
}
Expand Down

0 comments on commit 97fc740

Please sign in to comment.