Moody's · Schema

FileType

Metadata about a supported output file type.

Climate RiskComplianceCredit RiskEconomic DataEntity VerificationFinancial AnalyticsInsuranceKYCRiskScreening

Properties

Name Type Description
code string File type code used in order creation.
name string Human-readable file type name.
extension string File extension (e.g., csv, xlsx, json, xml).
description string Description of the file format.
View JSON Schema on GitHub

JSON Schema

moodys-data-buffet-file-type-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "FileType",
  "type": "object",
  "description": "Metadata about a supported output file type.",
  "properties": {
    "code": {
      "type": "string",
      "description": "File type code used in order creation."
    },
    "name": {
      "type": "string",
      "description": "Human-readable file type name."
    },
    "extension": {
      "type": "string",
      "description": "File extension (e.g., csv, xlsx, json, xml)."
    },
    "description": {
      "type": "string",
      "description": "Description of the file format."
    }
  }
}