{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://gatewayinformationgroup.com/agent/gti-preflight-input.schema.json",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "unsignedTransaction": {
      "type": "string",
      "minLength": 1,
      "maxLength": 12000,
      "description": "JSON-encoded unsigned transaction matching unsigned-transaction.schema.json. Base Sepolia 84532 only. No private keys, seed phrases, signed transactions or credentials."
    },
    "applicationDescription": {
      "type": "string",
      "minLength": 1,
      "maxLength": 3000
    },
    "expectedBehavior": {
      "type": "string",
      "minLength": 1,
      "maxLength": 3000
    },
    "concern": {
      "type": "string",
      "minLength": 1,
      "maxLength": 3000
    }
  },
  "required": [
    "unsignedTransaction",
    "applicationDescription",
    "expectedBehavior",
    "concern"
  ]
}
