-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of github.com:sailpoint-oss/api-specs
- Loading branch information
Showing
126 changed files
with
1,490 additions
and
517 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
type: object | ||
description: Access item owner's identity. | ||
properties: | ||
type: | ||
type: string | ||
description: Access item owner's DTO type. | ||
enum: | ||
- IDENTITY | ||
example: IDENTITY | ||
id: | ||
type: string | ||
description: Access item owner's identity ID. | ||
example: 2c9180a46faadee4016fb4e018c20639 | ||
name: | ||
type: string | ||
description: Access item owner's human-readable display name. | ||
example: Support |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
type: object | ||
description: Identity the access item is requested for. | ||
properties: | ||
type: | ||
type: string | ||
description: DTO type of identity the access item is requested for. | ||
enum: | ||
- IDENTITY | ||
example: IDENTITY | ||
id: | ||
type: string | ||
description: ID of identity the access item is requested for. | ||
example: 2c4180a46faadee4016fb4e018c20626 | ||
name: | ||
type: string | ||
description: Human-readable display name of identity the access item is requested for. | ||
example: Robert Robinson |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
type: object | ||
description: Access item requester's identity. | ||
properties: | ||
type: | ||
type: string | ||
description: Access item requester's DTO type. | ||
enum: | ||
- IDENTITY | ||
example: IDENTITY | ||
id: | ||
type: string | ||
description: Access item requester's identity ID. | ||
example: 2c7180a46faadee4016fb4e018c20648 | ||
name: | ||
type: string | ||
description: Access item owner's human-readable display name. | ||
example: William Wilson |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,9 @@ | ||
description: The previous certification | ||
description: Previous certification. | ||
type: object | ||
allOf: | ||
- $ref: '../../v3/schemas/BaseReferenceDto.yaml' | ||
- $ref: '../../v3/schemas/CertificationReferenceDto.yaml' | ||
- type: object | ||
properties: | ||
reviewer: | ||
$ref: './Reviewer.yaml' | ||
description: Certification reviewer | ||
properties: | ||
type: | ||
description: The type of object that the reviewer is. | ||
enum: | ||
- "CERTIFICATION" | ||
example: CERTIFICATION |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,29 @@ | ||
type: object | ||
properties: | ||
comment: | ||
type: string | ||
type: string | ||
nullable: true | ||
description: Comment content. | ||
example: This is a comment. | ||
author: | ||
type: object | ||
properties: | ||
type: | ||
type: string | ||
description: DTO type of the commenting identity. | ||
enum: | ||
- IDENTITY | ||
example: IDENTITY | ||
id: | ||
type: string | ||
description: ID of the commenting identity. | ||
example: 2c91808568c529c60168cca6f90c1313 | ||
name: | ||
type: string | ||
description: Display name of the commenting identity. | ||
example: Adam Kennedy | ||
created: | ||
type: string | ||
format: 'date-time' | ||
description: Date and time comment was created. | ||
example: '2017-07-11T18:45:37.098Z' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
type: object | ||
description: Entitlement including a specific set of access. | ||
properties: | ||
type: | ||
type: string | ||
description: Entitlement's DTO type. | ||
enum: | ||
- ENTITLEMENT | ||
example: ENTITLEMENT | ||
id: | ||
type: string | ||
description: Entitlement's ID. | ||
example: 2c91809773dee32014e13e122092014e | ||
name: | ||
type: string | ||
description: Entitlement's display name. | ||
example: "CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
type: object | ||
properties: | ||
objectRef: | ||
$ref: '../../v3/schemas/BaseReferenceDto.yaml' | ||
$ref: '../../v3/schemas/TaggedObjectDto.yaml' | ||
tags: | ||
type: array | ||
items: | ||
type: string | ||
description: Labels to be applied to an Object | ||
description: Labels to be applied to object. | ||
example: [ "BU_FINANCE", "PCI" ] |
Oops, something went wrong.