SOAP · Schema

SOAP Body

Schema describing the structure of a SOAP body element. The body contains the main payload of the SOAP message, either application-specific data for request and response messages or a fault element indicating an error.

SOAPMessaging ProtocolWeb ServicesXMLW3C StandardEnterprise IntegrationWS-Star

Properties

Name Type Description
content object The application-specific content of the SOAP message body, typically containing the request or response data for the web service operation.
Fault object
View JSON Schema on GitHub

JSON Schema

soap-body.json Raw ↑
{
  "$id": "soap-body.json",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "SOAP Body",
  "description": "Schema describing the structure of a SOAP body element. The body contains the main payload of the SOAP message, either application-specific data for request and response messages or a fault element indicating an error.",
  "type": "object",
  "properties": {
    "content": {
      "type": "object",
      "description": "The application-specific content of the SOAP message body, typically containing the request or response data for the web service operation.",
      "additionalProperties": true
    },
    "Fault": {
      "$ref": "soap-fault.json"
    }
  },
  "additionalProperties": true
}