Azure Logic Apps · JSON Structure

Azure Logic Apps As2 Validation Settings Structure

The AS2 agreement validation settings.

Type: object Properties: 10 Required: 9
AzureIntegrationiPaaSWorkflows

AS2ValidationSettings is a JSON Structure definition published by Azure Logic Apps, describing 10 properties, of which 9 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

checkCertificateRevocationListOnReceive checkCertificateRevocationListOnSend checkDuplicateMessage compressMessage encryptMessage encryptionAlgorithm interchangeDuplicatesValidityDays overrideMessageProperties signMessage signingAlgorithm

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/azure-logic-apps/refs/heads/main/json-structure/azure-logic-apps-as2-validation-settings-structure.json",
  "description": "The AS2 agreement validation settings.",
  "type": "object",
  "properties": {
    "checkCertificateRevocationListOnReceive": {
      "description": "The value indicating whether to check for certificate revocation list on receive.",
      "type": "boolean"
    },
    "checkCertificateRevocationListOnSend": {
      "description": "The value indicating whether to check for certificate revocation list on send.",
      "type": "boolean"
    },
    "checkDuplicateMessage": {
      "description": "The value indicating whether to check for duplicate message.",
      "type": "boolean"
    },
    "compressMessage": {
      "description": "The value indicating whether the message has to be compressed.",
      "type": "boolean"
    },
    "encryptMessage": {
      "description": "The value indicating whether the message has to be encrypted.",
      "type": "boolean"
    },
    "encryptionAlgorithm": {
      "$ref": "#/definitions/EncryptionAlgorithm",
      "description": "The encryption algorithm."
    },
    "interchangeDuplicatesValidityDays": {
      "description": "The number of days to look back for duplicate interchange.",
      "format": "int32",
      "type": "integer"
    },
    "overrideMessageProperties": {
      "description": "The value indicating whether to override incoming message properties with those in agreement.",
      "type": "boolean"
    },
    "signMessage": {
      "description": "The value indicating whether the message has to be signed.",
      "type": "boolean"
    },
    "signingAlgorithm": {
      "$ref": "#/definitions/SigningAlgorithm",
      "description": "The signing algorithm."
    }
  },
  "required": [
    "overrideMessageProperties",
    "encryptMessage",
    "signMessage",
    "compressMessage",
    "checkDuplicateMessage",
    "interchangeDuplicatesValidityDays",
    "checkCertificateRevocationListOnSend",
    "checkCertificateRevocationListOnReceive",
    "encryptionAlgorithm"
  ],
  "name": "AS2ValidationSettings"
}