{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-migration-hub/refs/heads/main/json-schema/migration-hub-api-list-discovered-resources-result-schema.json", "title": "ListDiscoveredResourcesResult", "description": "ListDiscoveredResourcesResult schema from Amazon Migration Hub API", "type": "object", "properties": { "NextToken": { "allOf": [ { "$ref": "#/components/schemas/Token" }, { "description": "If there are more discovered resources than the max result, return the next token to be passed to the next call as a bookmark of where to start from." } ] }, "DiscoveredResourceList": { "allOf": [ { "$ref": "#/components/schemas/DiscoveredResourceList" }, { "description": "Returned list of discovered resources associated with the given MigrationTask." } ] } } }