Automated commit by github action: 4115926202

This commit is contained in:
GitHub Action Bot
2023-02-07 16:15:30 +00:00
parent f5421ae789
commit c22ed8640d
41 changed files with 64 additions and 62 deletions

View File

@@ -743,9 +743,9 @@ components:
AccessRequestItem:
$ref: "./v3/schemas/AccessRequestItem.yaml"
AccessProfileDocument:
$ref: "./v3/schemas/search/model/access/profile/AccessProfile.yaml"
$ref: "./v3/schemas/search/model/access/profile/AccessProfileDocument.yaml"
AccessProfileSummary:
$ref: "./v3/schemas/search/model/access/AccessProfile.yaml"
$ref: "./v3/schemas/search/model/access/AccessProfileSummary.yaml"
AccessReviewReassignment:
$ref: "./v3/schemas/ReviewReassign.yaml"
Account:
@@ -753,11 +753,11 @@ components:
AccountActivity:
$ref: "./v3/schemas/AccountActivity.yaml"
AccountActivitySearchedItem:
$ref: "./v3/schemas/search/model/account/activity/AccountActivity.yaml"
$ref: "./v3/schemas/search/model/account/activity/AccountActivityDocument.yaml"
AccountAttributes:
$ref: "./v3/schemas/AccountAttributes.yaml"
AccountDocument:
$ref: "./v3/schemas/search/model/account/Account.yaml"
$ref: "./v3/schemas/search/model/account/AccountDocument.yaml"
AccountsAsyncResult:
$ref: "./v3/schemas/AccountsAsyncResult.yaml"
AccountToggleRequest:
@@ -765,7 +765,7 @@ components:
AccountUnlockRequest:
$ref: "./v3/schemas/AccountUnlockRequest.yaml"
Aggregation:
$ref: "./v3/schemas/search/model/aggregation/Aggregation.yaml"
$ref: "./v3/schemas/search/model/aggregation/AggregationDocument.yaml"
ApprovalItems:
$ref: "./v3/schemas/ApprovalItemDetails.yaml"
Campaign:
@@ -775,13 +775,13 @@ components:
CertificationReference:
$ref: "./v3/schemas/CertificationReference.yaml"
EntitlementDocument:
$ref: "./v3/schemas/search/model/entitlement/Entitlement.yaml"
$ref: "./v3/schemas/search/model/entitlement/EntitlementDocument.yaml"
EntitlementSummary:
$ref: "./v3/schemas/search/model/access/Entitlement.yaml"
$ref: "./v3/schemas/search/model/access/AccessProfileEntitlement.yaml"
Event:
$ref: "./v3/schemas/search/model/event/Event.yaml"
$ref: "./v3/schemas/search/model/event/EventDocument.yaml"
IdentityDocument:
$ref: "./v3/schemas/search/model/identity/Identity.yaml"
$ref: "./v3/schemas/search/model/identity/IdentityDocument.yaml"
IdentityProfile:
$ref: "./v3/schemas/IdentityProfile.yaml"
IdentityReferenceWithNameAndEmail:
@@ -807,9 +807,9 @@ components:
Reviewer:
$ref: "./v3/schemas/Reviewer.yaml"
RoleDocument:
$ref: "./v3/schemas/search/model/role/Role.yaml"
$ref: "./v3/schemas/search/model/role/RoleDocument.yaml"
RoleSummary:
$ref: "./v3/schemas/search/model/access/Role.yaml"
$ref: "./v3/schemas/search/model/access/AccessProfileRole.yaml"
SearchDocument:
$ref: "./v3/schemas/search/documents/SearchDocument.yaml"
SavedSearch:

View File

@@ -11,8 +11,8 @@ post:
application/json:
schema:
allOf:
- $ref: '../schemas/search/saved/Name.yaml'
- $ref: '../schemas/search/saved/Search.yaml'
- $ref: '../schemas/search/saved/SavedSearchName.yaml'
- $ref: '../schemas/search/saved/SavedSearchDetail.yaml'
required: true
responses:
'201':

View File

@@ -11,8 +11,8 @@ post:
application/json:
schema:
allOf:
- $ref: '../schemas/search/scheduled/Name.yaml'
- $ref: '../schemas/search/scheduled/Schedule.yaml'
- $ref: '../schemas/search/scheduled/ScheduledSearchName.yaml'
- $ref: '../schemas/search/scheduled/SearchSchedule.yaml'
examples:
Daily Search:
description: A search that executes each day at a 9 AM

View File

@@ -12,5 +12,5 @@ properties:
type: array
description: List describing the steps in approving the request
items:
$ref: './ApprovalScheme.yaml'
$ref: './AccessProfileApprovalScheme.yaml'

View File

@@ -4,5 +4,5 @@ properties:
type: array
description: List describing the steps in approving the revocation request
items:
$ref: './ApprovalScheme.yaml'
$ref: './AccessProfileApprovalScheme.yaml'

View File

@@ -69,7 +69,7 @@ properties:
aggregations:
description: |
The aggregations specifications, such as the groupings and calculations to be performed.
$ref: 'aggregate/Aggregation.yaml'
$ref: 'aggregate/SearchAggregationSpecification.yaml'
sort:
description: >-

View File

@@ -9,7 +9,7 @@ properties:
type: string
example: 'Entitlements'
type:
$ref: 'FilterType.yaml'
$ref: 'SearchFilterType.yaml'
field:
description: |
The search field to apply the filter to.

View File

@@ -5,4 +5,4 @@ allOf:
subAggregation:
description: >-
Aggregation to be performed on the result of the parent bucket aggregation.
$ref: 'Aggregation-2.yaml'
$ref: 'SubSearchAggregationSpecification.yaml'

View File

@@ -1,22 +1,22 @@
discriminator:
propertyName: '_type'
mapping:
accessprofile: '../model/access/profile/AccessProfile.yaml'
accountactivity: '../model/account/activity/AccountActivity.yaml'
account: '../model/account/Account.yaml'
aggregation: '../model/aggregation/Aggregation.yaml'
entitlement: '../model/entitlement/Entitlement.yaml'
event: '../model/event/Event.yaml'
identity: '../model/identity/Identity.yaml'
role: '../model/role/Role.yaml'
accessprofile: '../model/access/profile/AccessProfileDocument.yaml'
accountactivity: '../model/account/activity/AccountActivityDocument.yaml'
account: '../model/account/AccountDocument.yaml'
aggregation: '../model/aggregation/AggregationDocument.yaml'
entitlement: '../model/entitlement/EntitlementDocument.yaml'
event: '../model/event/EventDocument.yaml'
identity: '../model/identity/IdentityDocument.yaml'
role: '../model/role/RoleDocument.yaml'
oneOf:
- $ref: '../model/access/profile/AccessProfile.yaml'
- $ref: '../model/account/activity/AccountActivity.yaml'
- $ref: '../model/account/Account.yaml'
- $ref: '../model/aggregation/Aggregation.yaml'
- $ref: '../model/entitlement/Entitlement.yaml'
- $ref: '../model/event/Event.yaml'
- $ref: '../model/identity/Identity.yaml'
- $ref: '../model/role/Role.yaml'
- $ref: '../model/access/profile/AccessProfileDocument.yaml'
- $ref: '../model/account/activity/AccountActivityDocument.yaml'
- $ref: '../model/account/AccountDocument.yaml'
- $ref: '../model/aggregation/AggregationDocument.yaml'
- $ref: '../model/entitlement/EntitlementDocument.yaml'
- $ref: '../model/event/EventDocument.yaml'
- $ref: '../model/identity/IdentityDocument.yaml'
- $ref: '../model/role/RoleDocument.yaml'

View File

@@ -19,7 +19,7 @@ allOf:
access:
type: array
items:
$ref: "../access/Entitlement.yaml"
$ref: "../access/AccessProfileEntitlement.yaml"
entitlementCount:
type: integer
description: The number of entitlements assigned to the account

View File

@@ -7,7 +7,7 @@ allOf:
description: The ID of the account
example: "john.doe"
source:
$ref: "Source.yaml"
$ref: "AccountSource.yaml"
disabled:
type: boolean
description: Indicates if the account is disabled

View File

@@ -27,9 +27,9 @@ allOf:
description: the current status of the activity
example: Complete
requester:
$ref: "../Source.yaml"
$ref: "../AccountSource.yaml"
recipient:
$ref: "../Source.yaml"
$ref: "../AccountSource.yaml"
trackingNumber:
type: string
example: 61aad0c9e8134eca89e76a35e0cabe3f

View File

@@ -13,7 +13,7 @@ properties:
example: Modify
description: The operation that was performed
provisioningTarget:
$ref: "../Source.yaml"
$ref: "../AccountSource.yaml"
result:
type: object
properties:
@@ -36,4 +36,4 @@ properties:
nullable: true
example: null
source:
$ref: "../Source.yaml"
$ref: "../AccountSource.yaml"

View File

@@ -3,13 +3,13 @@ properties:
comments:
type: array
items:
$ref: "Comment.yaml"
$ref: "ApprovalComment.yaml"
created:
$ref: "../../base/DateTime.yaml"
modified:
$ref: "../../base/DateTime.yaml"
owner:
$ref: "../Source.yaml"
$ref: "../AccountSource.yaml"
result:
type: string
description: The result of the approval

View File

@@ -16,4 +16,4 @@ properties:
items:
$ref: "AttributeRequest.yaml"
source:
$ref: "../Source.yaml"
$ref: "../AccountSource.yaml"

View File

@@ -13,4 +13,4 @@ properties:
description: the operation that was used
example: add
source:
$ref: '../Source.yaml'
$ref: '../AccountSource.yaml'

View File

@@ -3,6 +3,8 @@ properties:
id:
type: string
example: '2c91808568c529c60168cca6f90c1313'
description: The unique ID of the referenced object.
name:
type: string
example: 'John Doe'
description: The human readable name of the referenced object.

View File

@@ -1,10 +0,0 @@
discriminator:
propertyName: 'type'
mapping:
ACCESS_PROFILE: '../access/AccessProfile.yaml'
ENTITLEMENT: '../access/Entitlement.yaml'
ROLE: '../access/Role.yaml'
oneOf:
- $ref: '../access/AccessProfile.yaml'
- $ref: '../access/Entitlement.yaml'
- $ref: '../access/Role.yaml'

View File

@@ -0,0 +1,10 @@
discriminator:
propertyName: 'type'
mapping:
ACCESS_PROFILE: '../access/AccessProfileSummary.yaml'
ENTITLEMENT: '../access/AccessProfileEntitlement.yaml'
ROLE: '../access/AccessProfileRole.yaml'
oneOf:
- $ref: '../access/AccessProfileSummary.yaml'
- $ref: '../access/AccessProfileEntitlement.yaml'
- $ref: '../access/AccessProfileRole.yaml'

View File

@@ -94,7 +94,7 @@ allOf:
type: array
description: The list of access items assigned to the identity
items:
$ref: 'Access.yaml'
$ref: 'IdentityAccess.yaml'
accessCount:
type: integer
format: int32

View File

@@ -1,5 +1,5 @@
allOf:
- $ref: 'IdentityReference.yaml'
- $ref: 'SearchIdentityReference.yaml'
- type: object
properties:
email:

View File

@@ -11,5 +11,5 @@ allOf:
description: |
The owner of the saved search.
$ref: ../model/base/TypedReference.yaml
- $ref: 'Name.yaml'
- $ref: 'Search.yaml'
- $ref: 'SavedSearchName.yaml'
- $ref: 'SavedSearchDetail.yaml'

View File

@@ -34,8 +34,8 @@ allOf:
example: 2c9180867624cbd7017642d8c8c81f67
readOnly: true
deprecated: true
- $ref: 'Name.yaml'
- $ref: 'Schedule.yaml'
- $ref: 'ScheduledSearchName.yaml'
- $ref: 'SearchSchedule.yaml'
required:
- id
- owner