Avalanche · Schema

OperationStatusResponse

BlockchainWeb3AvalancheNFTDeFiCross-Chain

Properties

Name Type Description
operationId string
operationType object
operationStatus object
message string
metadata object
createdAtTimestamp number
updatedAtTimestamp number
View JSON Schema on GitHub

JSON Schema

OperationStatusResponse.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/avalanche/main/json-schema/OperationStatusResponse.json",
  "title": "OperationStatusResponse",
  "type": "object",
  "properties": {
    "operationId": {
      "type": "string"
    },
    "operationType": {
      "$ref": "#/components/schemas/OperationType"
    },
    "operationStatus": {
      "$ref": "#/components/schemas/OperationStatus"
    },
    "message": {
      "type": "string"
    },
    "metadata": {
      "oneOf": [
        {
          "$ref": "#/components/schemas/TransactionExportMetadata"
        }
      ]
    },
    "createdAtTimestamp": {
      "type": "number"
    },
    "updatedAtTimestamp": {
      "type": "number"
    }
  },
  "required": [
    "operationId",
    "operationType",
    "operationStatus",
    "createdAtTimestamp",
    "updatedAtTimestamp"
  ]
}