Amazon AppSync · JSON Structure

Appsync Type Structure

A GraphQL type definition

Type: record Properties: 0
Amazon AppSyncGraphQLAPI ManagementServerless

Appsync Type Structure is a JSON Structure definition published by Amazon AppSync. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

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

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://api-evangelist.github.io/amazon-appsync/json-structure/appsync-type-structure.json",
  "title": "Type",
  "description": "A GraphQL type definition",
  "type": "record",
  "fields": {
    "name": {
      "type": "string",
      "description": "The type name"
    },
    "description": {
      "type": "string",
      "description": "Type description"
    },
    "arn": {
      "type": "string",
      "description": "The type ARN"
    },
    "definition": {
      "type": "string",
      "description": "The type definition in SDL or JSON format"
    },
    "format": {
      "type": "string",
      "description": "The schema format"
    }
  }
}