Skip to content
This repository was archived by the owner on Sep 2, 2025. It is now read-only.

Commit 3a89a77

Browse files
committed
Fix docs & bumped version to 1.0.6
1 parent d4685a6 commit 3a89a77

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,13 +79,12 @@ class User extends Model {
7979
static get jsonSchema() {
8080
return {
8181
type: 'object',
82-
required: ['firstName', 'lastName', 'todoId'],
82+
required: ['firstName', 'lastName'],
8383

8484
properties: {
8585
id: { type: 'integer' },
8686
firstName: { type: 'string', maxLength: 45 },
8787
lastName: { type: 'string', maxLength: 45 },
88-
todoId: { type: 'integer' },
8988
status: { type: 'string', enum: ['active', 'disabled'], default: 'active' },
9089
},
9190
};

0 commit comments

Comments
 (0)