Files
api-specs/idn/beta/schemas/ResourceObjectsResponse.yaml
2022-09-02 10:59:29 -04:00

31 lines
828 B
YAML

type: object
title: Resource Objects Response
description: Response model for peek resource objects from source connectors.
properties:
id:
type: string
description: ID of the source
example: 2c91808568c529c60168cca6f90c1313
readOnly: true
name:
type: string
description: Name of the source
example: ODS-AD-Test [source-999999]
readOnly: true
objectCount:
type: integer
description: The number of objects that were fetched by the connector.
example: 25
readOnly: true
elapsedMillis:
type: integer
description: The number of milliseconds spent on the entire request.
example: 1055
readOnly: true
resourceObjects:
type: array
items:
$ref: './ResourceObject.yaml'
description: Fetched objects from the source connector.
readOnly: true