SearchResponse

SearchResponse schema from openapi

DiscoveryInventoryOperationsResource Management

Properties

Name Type Description
Count object The count of matching resources.
NextToken string The token for the next page of results.
Resources array
ViewArn string The ARN of the view used for the search.
View JSON Schema on GitHub

JSON Schema

amazon-resource-explorer-openapi-search-response-schema.json Raw ↑
{
  "$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."
    }
  }
}