Anrok · Schema

CustomerCertificateFile

Sales TaxVATTax ComplianceSaaSFintechTax AutomationNexusE-Invoicing

Properties

Name Type Description
name string File name
contentsBase64 string Base64 encoded certificate image contents
View JSON Schema on GitHub

JSON Schema

customer-certificate-file.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/anrok/main/json-schema/customer-certificate-file.json",
  "title": "CustomerCertificateFile",
  "type": "object",
  "properties": {
    "name": {
      "description": "File name",
      "type": "string",
      "examples": [
        "cert.png"
      ]
    },
    "contentsBase64": {
      "description": "Base64 encoded certificate image contents",
      "type": "string",
      "examples": [
        "Y2VydC5wbmc="
      ]
    }
  },
  "required": [
    "name",
    "contentsBase64"
  ]
}