{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-resource-explorer/refs/heads/main/json-schema/amazon-resource-explorer-openapi-search-response-schema.json",
"title": "SearchResponse",
"description": "SearchResponse schema from openapi",
"type": "object",
"properties": {
"Count": {
"type": "object",
"description": "The count of matching resources."
},
"NextToken": {
"type": "string",
"description": "The token for the next page of results."
},
"Resources": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Resource"
}
},
"ViewArn": {
"type": "string",
"description": "The ARN of the view used for the search."
}
}
}