Skip to content

Weekly OpenApiDocs Download #487

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Dec 11, 2020
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
4 changes: 3 additions & 1 deletion openApiDocs/beta/Applications.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18579,7 +18579,7 @@ components:
description: Specifies resources that this application requires access to and the set of OAuth permission scopes and application roles that it needs under each of those resources. This pre-configuration of required resource access drives the consent experience. Not nullable.
signInAudience:
type: string
description: 'Specifies the Microsoft accounts that are supported for the current application. Supported values are:AzureADMyOrg: Users with a Microsoft work or school account in my organization’s Azure AD tenant (single tenant)AzureADMultipleOrgs: Users with a Microsoft work or school account in any organization’s Azure AD tenant (multi-tenant).AzureADandPersonalMicrosoftAccount: Users with a personal Microsoft account, or a work or school account in any organization’s Azure AD tenant.PersonalMicrosoftAccount: Users with a personal Microsoft account only.'
description: 'Specifies the Microsoft accounts that are supported for the current application. Supported values are:AzureADMyOrg: Users with a Microsoft work or school account in my organization’s Azure AD tenant (single tenant)AzureADMultipleOrgs: Users with a Microsoft work or school account in any organization’s Azure AD tenant (multi-tenant).AzureADandPersonalMicrosoftAccount: Users with a personal Microsoft account, or a work or school account in any organization’s Azure AD tenant.PersonalMicrosoftAccount: Users with a personal Microsoft account only.For authenticating users with Azure AD B2C user flows, use AzureADandPersonalMicrosoftAccount. This value allows for the widest set of user identities including local accounts and user identities from Microsoft, Facebook, Google, Twitter, or any OpenID Connect provider.'
nullable: true
spa:
$ref: '#/components/schemas/microsoft.graph.spaApplication'
Expand Down Expand Up @@ -19511,9 +19511,11 @@ components:
$ref: '#/components/schemas/microsoft.graph.permissionClassificationType'
permissionId:
type: string
description: The unique identifier (id) for the delegated permission listed in the oauth2PermissionScopes collection of the servicePrincipal. Required on create. Does not support $filter.
nullable: true
permissionName:
type: string
description: The claim value (value) for the delegated permission listed in the oauth2PermissionScopes collection of the servicePrincipal. Does not support $filter.
nullable: true
additionalProperties:
type: object
Expand Down
4 changes: 2 additions & 2 deletions openApiDocs/beta/Calendar.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46782,9 +46782,9 @@ components:
microsoft.graph.calendarColor:
title: calendarColor
enum:
- auto
- lightBlue
- lightGreen
- auto
- lightOrange
- lightGray
- lightYellow
Expand Down Expand Up @@ -47000,9 +47000,9 @@ components:
microsoft.graph.freeBusyStatus:
title: freeBusyStatus
enum:
- unknown
- free
- tentative
- unknown
- busy
- oof
- workingElsewhere
Expand Down
13 changes: 9 additions & 4 deletions openApiDocs/beta/CloudCommunications.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4210,7 +4210,7 @@ components:
items:
$ref: '#/components/schemas/microsoft.graph.modality'
resultInfo:
$ref: '#/components/schemas/microsoft.graph.ResultInfo'
$ref: '#/components/schemas/microsoft.graph.resultInfo'
ringingTimeoutInSeconds:
maximum: 2147483647
minimum: -2147483648
Expand Down Expand Up @@ -4420,7 +4420,7 @@ components:
description: Unique Client Context string. Max limit is 256 chars.
nullable: true
resultInfo:
$ref: '#/components/schemas/microsoft.graph.ResultInfo'
$ref: '#/components/schemas/microsoft.graph.resultInfo'
status:
$ref: '#/components/schemas/microsoft.graph.operationStatus'
additionalProperties:
Expand Down Expand Up @@ -4533,9 +4533,11 @@ components:
properties:
activity:
type: string
description: 'The supplemental information to a user''s availability. Possible values are Available, Away, BeRightBack,Busy, DoNotDisturb, InACall, InAConferenceCall, Inactive,InAMeeting, Offline, OffWork,OutOfOffice, PresenceUnknown,Presenting, UrgentInterruptionsOnly.'
nullable: true
availability:
type: string
description: 'The base presence information for a user. Possible values are Available, AvailableIdle, Away, BeRightBack, Busy, BusyIdle, DoNotDisturb, Offline, PresenceUnknown'
nullable: true
additionalProperties:
type: object
Expand Down Expand Up @@ -4849,22 +4851,25 @@ components:
nullable: true
additionalProperties:
type: object
microsoft.graph.ResultInfo:
title: ResultInfo
microsoft.graph.resultInfo:
title: resultInfo
type: object
properties:
code:
maximum: 2147483647
minimum: -2147483648
type: integer
description: The result code.
format: int32
message:
type: string
description: The message.
nullable: true
subcode:
maximum: 2147483647
minimum: -2147483648
type: integer
description: The result sub-code.
format: int32
additionalProperties:
type: object
Expand Down
Loading