Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ model FakedSharedModel {
tag: string;

@doc("The created date.")
createdDate: utcDateTime;
createdAt: utcDateTime;
}
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"manufacturerId": "manufacturer id1",
"sharedModel": {
"tag": "tag1",
"createdDate": "2023-01-09T02:12:25.689Z"
"createdAt": "2023-01-09T02:12:25.689Z"
}
}
},
Expand All @@ -19,7 +19,7 @@
"manufacturerId": "manufacturer id1",
"sharedModel": {
"tag": "tag1",
"createdDate": "2023-01-09T02:12:25.689Z"
"createdAt": "2023-01-09T02:12:25.689Z"
}
}
},
Expand All @@ -29,7 +29,7 @@
"manufacturerId": "manufacturer id1",
"sharedModel": {
"tag": "tag1",
"createdDate": "2023-01-09T02:12:25.689Z"
"createdAt": "2023-01-09T02:12:25.689Z"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"manufacturerId": "manufacturer Id1",
"sharedModel": {
"tag": "tag1",
"createdDate": "2023-01-09T02:12:25.689Z"
"createdAt": "2023-01-09T02:12:25.689Z"
}
},
"widgetName": "rfazvwnfwwomiwrh"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"manufacturerId": "manufacturer Id1",
"sharedModel": {
"tag": "tag1",
"createdDate": "2023-01-09T02:12:25.689Z"
"createdAt": "2023-01-09T02:12:25.689Z"
}
}
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"manufacturerId": "manufacturer id1",
"sharedModel": {
"tag": "tag1",
"createdDate": "2023-01-09T02:12:25.689Z"
"createdAt": "2023-01-09T02:12:25.689Z"
}
}
},
Expand All @@ -19,7 +19,7 @@
"manufacturerId": "manufacturer id1",
"sharedModel": {
"tag": "tag1",
"createdDate": "2023-01-09T02:12:25.689Z"
"createdAt": "2023-01-09T02:12:25.689Z"
}
}
},
Expand All @@ -29,7 +29,7 @@
"manufacturerId": "manufacturer id1",
"sharedModel": {
"tag": "tag1",
"createdDate": "2023-01-09T02:12:25.689Z"
"createdAt": "2023-01-09T02:12:25.689Z"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"manufacturerId": "manufacturer Id1",
"sharedModel": {
"tag": "tag1",
"createdDate": "2023-01-09T02:12:25.689Z"
"createdAt": "2023-01-09T02:12:25.689Z"
}
},
"widgetName": "rfazvwnfwwomiwrh"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"manufacturerId": "manufacturer Id1",
"sharedModel": {
"tag": "tag1",
"createdDate": "2023-01-09T02:12:25.689Z"
"createdAt": "2023-01-09T02:12:25.689Z"
}
}
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -427,7 +427,7 @@
"type": "string",
"description": "The tag."
},
"createdDate": {
"createdAt": {
"type": "string",
"format": "date-time",
"description": "The created date."
Expand All @@ -436,7 +436,7 @@
"description": "Faked shared model",
"required": [
"tag",
"createdDate"
"createdAt"
]
},
"FakedSharedModelUpdate": {
Expand All @@ -446,7 +446,7 @@
"type": "string",
"description": "The tag."
},
"createdDate": {
"createdAt": {
"type": "string",
"format": "date-time",
"description": "The created date."
Expand Down