We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c99ced2 commit 943efb8Copy full SHA for 943efb8
3 files changed
openapi/components/schemas/CurrentUser.yaml
@@ -65,6 +65,10 @@ properties:
65
type: string
66
developerType:
67
$ref: ./DeveloperType.yaml
68
+ discordDetails:
69
+ $ref: ./DiscordDetails.yaml
70
+ discordId:
71
+ $ref: ./DiscordID.yaml
72
displayName:
73
74
emailVerified:
openapi/components/schemas/DiscordDetails.yaml
@@ -0,0 +1,11 @@
1
+title: DiscordDetails
2
+type: object
3
+description: ''
4
+properties:
5
+ global_name:
6
+ type: string
7
+ id:
8
+ $ref: './DiscordID.yaml'
9
+required:
10
+ - global_name
11
+ - id
openapi/components/schemas/DiscordID.yaml
@@ -0,0 +1,4 @@
+example: '1280064052206370848'
+title: DiscordID
+description: https://discord.com/developers/docs/reference#snowflakes
+type: string
0 commit comments