Files
api-specs/idn/v3/schemas/ObjectImportResult.yaml
GitHub Action Bot 03c7b80a9e Automated commit 'Merge pull request #1469 from sailpoint/devrel-1185-2
Devrel 1185 2' by github action: 6736623414
2023-11-02 18:15:05 +00:00

30 lines
849 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: '../schemas/SpConfigMessage.yaml'
warnings:
description: Warning messages returned from the target service on import.
type: array
items:
$ref: '../schemas/SpConfigMessage.yaml'
errors:
description: Error messages returned from the target service on import.
type: array
items:
$ref: '../schemas/SpConfigMessage.yaml'
importedObjects:
description: References to objects that were created or updated by the import.
type: array
items:
$ref: '../../v3/schemas/ImportObject.yaml'
required:
- infos
- warnings
- errors
- importedObjects