@@ -168,11 +168,11 @@ export namespace Models {
168168 */
169169 $collection : string ;
170170 /**
171- * Document creation date in Datetime
171+ * Document creation date in ISO 8601 format.
172172 */
173173 $createdAt : string ;
174174 /**
175- * Document update date in Datetime
175+ * Document update date in ISO 8601 format.
176176 */
177177 $updatedAt : string ;
178178 /**
@@ -210,7 +210,7 @@ export namespace Models {
210210 */
211211 ip : string ;
212212 /**
213- * Log creation date in Datetime .
213+ * Log creation date in ISO 8601 format .
214214 */
215215 time : string ;
216216 /**
@@ -279,27 +279,27 @@ export namespace Models {
279279 */
280280 $id : string ;
281281 /**
282- * User creation date in Datetime .
282+ * User creation date in ISO 8601 format .
283283 */
284284 $createdAt : string ;
285285 /**
286- * User update date in Datetime .
286+ * User update date in ISO 8601 format .
287287 */
288288 $updatedAt : string ;
289289 /**
290290 * User name.
291291 */
292292 name : string ;
293293 /**
294- * User registration date in Datetime .
294+ * User registration date in ISO 8601 format .
295295 */
296296 registration : string ;
297297 /**
298298 * User status. Pass `true` for enabled and `false` for disabled.
299299 */
300300 status : boolean ;
301301 /**
302- * Datetime of the most recent password update
302+ * Password update time in ISO 8601 format.
303303 */
304304 passwordUpdate : string ;
305305 /**
@@ -338,15 +338,15 @@ export namespace Models {
338338 */
339339 $id : string ;
340340 /**
341- * Session creation date in Datetime
341+ * Session creation date in ISO 8601 format.
342342 */
343343 $createdAt : string ;
344344 /**
345345 * User ID.
346346 */
347347 userId : string ;
348348 /**
349- * Session expiration date in Datetime
349+ * Session expiration date in ISO 8601 format.
350350 */
351351 expire : string ;
352352 /**
@@ -362,7 +362,7 @@ export namespace Models {
362362 */
363363 providerAccessToken : string ;
364364 /**
365- * The date of when the access token expires in Datetime format.
365+ * The date of when the access token expires in ISO 8601 format.
366366 */
367367 providerAccessTokenExpiry : string ;
368368 /**
@@ -443,7 +443,7 @@ export namespace Models {
443443 */
444444 $id : string ;
445445 /**
446- * Token creation date in Datetime
446+ * Token creation date in ISO 8601 format.
447447 */
448448 $createdAt : string ;
449449 /**
@@ -455,7 +455,7 @@ export namespace Models {
455455 */
456456 secret : string ;
457457 /**
458- * Token expiration date in Datetime .
458+ * Token expiration date in ISO 8601 format .
459459 */
460460 expire : string ;
461461 }
@@ -514,11 +514,11 @@ export namespace Models {
514514 */
515515 bucketId : string ;
516516 /**
517- * File creation date in Datetime
517+ * File creation date in ISO 8601 format.
518518 */
519519 $createdAt : string ;
520520 /**
521- * File update date in Datetime
521+ * File update date in ISO 8601 format.
522522 */
523523 $updatedAt : string ;
524524 /**
@@ -559,11 +559,11 @@ export namespace Models {
559559 */
560560 $id : string ;
561561 /**
562- * Team creation date in Datetime
562+ * Team creation date in ISO 8601 format.
563563 */
564564 $createdAt : string ;
565565 /**
566- * Team update date in Datetime
566+ * Team update date in ISO 8601 format.
567567 */
568568 $updatedAt : string ;
569569 /**
@@ -584,11 +584,11 @@ export namespace Models {
584584 */
585585 $id : string ;
586586 /**
587- * Membership creation date in Datetime
587+ * Membership creation date in ISO 8601 format.
588588 */
589589 $createdAt : string ;
590590 /**
591- * Membership update date in Datetime
591+ * Membership update date in ISO 8601 format.
592592 */
593593 $updatedAt : string ;
594594 /**
@@ -612,11 +612,11 @@ export namespace Models {
612612 */
613613 teamName : string ;
614614 /**
615- * Date, the user has been invited to join the team in Datetime
615+ * Date, the user has been invited to join the team in ISO 8601 format.
616616 */
617617 invited : string ;
618618 /**
619- * Date, the user has accepted the invitation to join the team in Datetime
619+ * Date, the user has accepted the invitation to join the team in ISO 8601 format.
620620 */
621621 joined : string ;
622622 /**
@@ -637,11 +637,11 @@ export namespace Models {
637637 */
638638 $id : string ;
639639 /**
640- * Execution creation date in Datetime
640+ * Execution creation date in ISO 8601 format.
641641 */
642642 $createdAt : string ;
643643 /**
644- * Execution upate date in Datetime
644+ * Execution upate date in ISO 8601 format.
645645 */
646646 $updatedAt : string ;
647647 /**
0 commit comments