Amazon SimpleDB · JSON Structure

Amazon Simpledb Select Result Structure

SelectResult schema from Amazon SimpleDB API

Type: object Properties: 2
Cloud StorageData StorageDatabaseNoSQL

SelectResult is a JSON Structure definition published by Amazon SimpleDB, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

Items NextToken

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "type": "object",
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-simpledb/refs/heads/main/json-structure/amazon-simpledb-select-result-structure.json",
  "name": "SelectResult",
  "description": "SelectResult schema from Amazon SimpleDB API",
  "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."
        }
      ]
    }
  }
}