Skip to content

Commit

Permalink
Copilot second commit
Browse files Browse the repository at this point in the history
  • Loading branch information
dferencz-laird committed Jun 10, 2024
1 parent 6a4cf9c commit 0fd11a1
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions member.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
function skilsMember() {
return {
name: 'member',
type: 'object',
properties: {
id: {
type: 'string',
format: 'uuid',
},
name: {
type: 'string',
},
role: {
type: 'string',
},
skills: {
type: 'array',
items: {
type: 'string',
},
},
},
};
}

0 comments on commit 0fd11a1

Please sign in to comment.