You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: azure/ConsiderationsForServiceDesign.md
+5-12Lines changed: 5 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -116,17 +116,9 @@ For example, `collectedItems` not `itemsCollected`
116
116
117
117
For example, `nextUrl` not `nextURL`.
118
118
119
-
:ballot_box_with_check:**YOU SHOULD** use "DateTime" suffix in names of `date-time` values.
119
+
:ballot_box_with_check:**YOU SHOULD** use an "At" suffix in names of `date-time` values.
120
120
121
-
For example, `createdDateTime` not `createdAt` or `createdTime`. Common date-time properties and their recommended names are:
122
-
123
-
| Property Name | Description |
124
-
| --- | --- |
125
-
| createdDateTime | The date and time the resource was created. |
126
-
| lastModifiedDateTime | The date and time the resource was last modified. |
127
-
| deletedDateTime | The date and time the resource was deleted. |
128
-
| startDateTime | The starting date and time of an interval. |
129
-
| endDateTime | The ending date and time of an interval. |
121
+
For example, `createdAt` not `created` or `createdDateTime`.
130
122
131
123
:ballot_box_with_check:**YOU SHOULD** use a suffix of the unit of measurement for values with a clear unit of measurement (such as bytes, miles, and so on). Use a generally accepted abbreviation for the units (e.g. "Km" rather than "Kilometers") when appropriate.
132
124
@@ -152,8 +144,9 @@ The following are recommended names for properties that match the associated des
152
144
153
145
| Name | Description |
154
146
|------------- | --- |
155
-
| createdDateTime | The date-time that the resource was created |
156
-
| updatedDateTime | The date-time that the resource was last updated/modified |
147
+
| createdAt | The date and time the resource was created. |
148
+
| lastModifiedAt | The date and time the resource was last modified. |
149
+
| deletedAt | The date and time the resource was deleted. |
157
150
| kind | The discriminator value for a polymorphic resource |
0 commit comments