Files
developer.sailpoint.com/static/api-specs/idn/beta/schemas/ObjectImportResult.yaml
2022-09-26 21:59:54 -04:00

30 lines
877 B
YAML

type: object
title: Import Object Response Body
description: Response model for import of a single object.
properties:
infos:
description: Informational messages returned from the target service on import.
type: array
items:
$ref: '../../beta/schemas/SpConfigMessage.yaml'
warnings:
description: Warning messages returned from the target service on import.
type: array
items:
$ref: '../../beta/schemas/SpConfigMessage.yaml'
errors:
description: Error messages returned from the target service on import.
type: array
items:
$ref: '../../beta/schemas/SpConfigMessage.yaml'
importedObjects:
description: References to objects that were created or updated by the import.
type: array
items:
$ref: '../../v3/schemas/BaseReferenceDto.yaml'
required:
- infos
- warnings
- errors
- importedObjects