Montran · Schema

FileUploadResponse

BankingCentral BankingFinancial ServicesISO 20022Market InfrastructureMessagingPaymentsReal-Time PaymentsSWIFT

Properties

Name Type Description
fileId string
fileName string
status string
uploadedAt string
View JSON Schema on GitHub

JSON Schema

montran-fileuploadresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FileUploadResponse",
  "title": "FileUploadResponse",
  "type": "object",
  "properties": {
    "fileId": {
      "type": "string"
    },
    "fileName": {
      "type": "string"
    },
    "status": {
      "type": "string",
      "enum": [
        "UPLOADED",
        "PROCESSING"
      ]
    },
    "uploadedAt": {
      "type": "string",
      "format": "date-time"
    }
  }
}