Amazon SimpleDB · Schema

SelectResult

SelectResult schema from Amazon SimpleDB API

Cloud StorageData StorageDatabaseNoSQL

Properties

Name Type Description
Items object
NextToken object
View JSON Schema on GitHub

JSON Schema

amazon-simpledb-select-result-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-simpledb/refs/heads/main/json-schema/amazon-simpledb-select-result-schema.json",
  "title": "SelectResult",
  "description": "SelectResult schema from Amazon SimpleDB API",
  "type": "object",
  "properties": {
    "Items": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ItemList"
        },
        {
          "description": "A list of items that match the select expression."
        }
      ]
    },
    "NextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "An opaque token indicating that more items than <code>MaxNumberOfItems</code> were matched, the response size exceeded 1 megabyte, or the execution time exceeded 5 seconds."
        }
      ]
    }
  }
}