WSO2 · Schema

Single type and corresponding fields found within the GraphQL Schema

GraphQLSchemaType schema from WSO2 API Manager

API ManagementGatewaysOpen SourceAPI LifecycleGraphQLSOAPREST

Properties

Name Type Description
type string Type found within the GraphQL Schema
fieldList array Array of fields under current type
View JSON Schema on GitHub

JSON Schema

devportal-api-graph-ql-schema-type-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/wso2/refs/heads/main/json-schema/devportal-api-graph-ql-schema-type-schema.json",
  "title": "Single type and corresponding fields found within the GraphQL Schema",
  "description": "GraphQLSchemaType schema from WSO2 API Manager",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "description": "Type found within the GraphQL Schema\n",
      "example": "Country"
    },
    "fieldList": {
      "type": "array",
      "description": "Array of fields under current type\n",
      "example": [
        "code",
        "name"
      ],
      "items": {
        "type": "string"
      }
    }
  }
}