Amazon AppSync · Schema

ListTypesResponse

Response with list of types

Amazon AppSyncGraphQLAPI ManagementServerless

Properties

Name Type Description
types array List of types
nextToken string Pagination token
View JSON Schema on GitHub

JSON Schema

appsync-list-types-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/amazon-appsync/json-schema/appsync-list-types-response-schema.json",
  "title": "ListTypesResponse",
  "description": "Response with list of types",
  "type": "object",
  "properties": {
    "types": {
      "type": "array",
      "description": "List of types"
    },
    "nextToken": {
      "type": "string",
      "description": "Pagination token"
    }
  }
}