mirror of
https://github.com/LukeHagar/api-specs.git
synced 2025-12-09 20:37:50 +00:00
* Fixed several issues * More fixes to v3 APIs * More fixes * Fixed more v3 schema issues * fixed campaign filters path * Updated redoc API generator to v10 * Updated redoc api generator action to latest version * Added log to action * Fixed path in action * Added orderBy to saved search * Added some fixes for beta * Fixed duplicate nullable * Triggering checks again * Triggering checks again * More beta fixes * Fixed schema bug' by github action: 7980819692
68 lines
1.7 KiB
YAML
68 lines
1.7 KiB
YAML
type : object
|
|
properties:
|
|
id:
|
|
type: string
|
|
description: ID of the account activity itself
|
|
example: 2c9180835d2e5168015d32f890ca1581
|
|
name:
|
|
type: string
|
|
example: 2c9180835d2e5168015d32f890ca1581
|
|
created:
|
|
type: string
|
|
format: 'date-time'
|
|
example: '2017-07-11T18:45:37.098Z'
|
|
modified:
|
|
type: string
|
|
nullable: true
|
|
format: 'date-time'
|
|
example: '2018-06-25T20:22:28.104Z'
|
|
completed:
|
|
type: string
|
|
nullable: true
|
|
format: 'date-time'
|
|
example: '2018-10-19T13:49:37.385Z'
|
|
completionStatus:
|
|
$ref: '../../v3/schemas/CompletionStatus.yaml'
|
|
type:
|
|
type: string
|
|
nullable: true
|
|
example: appRequest
|
|
requesterIdentitySummary:
|
|
$ref: '../../v3/schemas/IdentitySummary.yaml'
|
|
targetIdentitySummary:
|
|
$ref: '../../v3/schemas/IdentitySummary.yaml'
|
|
errors:
|
|
type: array
|
|
nullable: true
|
|
items:
|
|
type: string
|
|
example: ["sailpoint.connector.ConnectorException: java.lang.InterruptedException: Timeout waiting for response to message 0 from client 57a4ab97-ab3f-4aef-9fe2-0eaf15c73d26 after 60 seconds."]
|
|
warnings:
|
|
type: array
|
|
nullable: true
|
|
items:
|
|
type: string
|
|
example: null
|
|
items:
|
|
type: array
|
|
nullable: true
|
|
items:
|
|
$ref: '../../v3/schemas/AccountActivityItem.yaml'
|
|
executionStatus:
|
|
$ref: '../../v3/schemas/ExecutionStatus.yaml'
|
|
clientMetadata:
|
|
type: object
|
|
nullable: true
|
|
additionalProperties:
|
|
type: string
|
|
description: >-
|
|
Arbitrary key-value pairs, if any were included in the corresponding access request
|
|
cancelable:
|
|
type: boolean
|
|
description: Whether the account activity can be canceled before completion
|
|
cancelComment:
|
|
$ref: '../../v3/schemas/Comment.yaml'
|
|
|
|
|
|
|