All Downloads are FREE. Search and download functionalities are using the official Maven repository.

json.schema.email.templateValidationReponse.json Maven / Gradle / Ivy

There is a newer version: 1.6.0-rc1
Show newest version
{
  "$id": "https://open-metadata.org/schema/email/templateValidationResponse.json",
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Email Template Validation Reponse",
  "description": "Schema defining email templates.",
  "type": "object",
  "javaType": "org.openmetadata.schema.email.TemplateValidationResponse",
  "properties": {
    "isValid": {
      "description": "Flag indicating if the template is valid.",
      "type": "boolean"
    },
    "missingPlaceholder": {
      "description": "List of missing placeholders.",
      "type": "array",
      "items": {
        "type": "string"
      },
      "uniqueItems": true
    },
    "additionalPlaceholder": {
      "description": "List of additional placeholders.",
      "type": "array",
      "items": {
        "type": "string"
      },
      "uniqueItems": true
    },
    "message": {
        "description": "Validation message.",
        "type": "string"
    }
  },
  "additionalProperties": false
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy