Skip to end of banner
Go to start of banner

XML Validator

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 6 Next »

Use the XML Validator policy to validate a request against an XML XSD schema. You can upload an XML XSD schema file in the Policy dialog as a valid swagger XML document. If an invalid path or parameter or object is not defined in the XML schema, the client receives a Schema Validation Failed error.

Alternatively, you can use the specification that you upload to create an API.

Policy Execution Order

This XML Validator policy executes after the request has been authenticated.

Expression Enabled Fields in API Policies

All expression enabled fields take expressions from the SnapLogic Expression Language and the API Policy Manager functions.

Parameter Name

Description

Default Value

Example

Label

Required. The name for the API policy.

XML XSD Validator

XSD Validator

When this policy should be applied

An expression enabled field that determines the condition to be fulfilled for the API policy to execute.

For example, if the value in this field is request.method == "POST", the API policy is executed only if the request method is a POST.

True

request.method == "POST"

Edit XSD

Launches the XML editor which allows you to define XML. The editor loads an existing XML document if defined previously. The editor lets you save XML in SnapLogic's file system or import existing XML documents from it.

Empty XML file

<?xml version="1.0" encoding="UTF-8"?>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:element name="books" type="booksType"/>
  <xs:complexType name="bookType">
    <xs:sequence>
      <xs:element type="xs:string" name="author"/>
      <xs:element type="xs:string" name="title"/>
      <xs:element type="xs:string" name="genre"/>
      <xs:element type="xs:string" name="price"/>
      <xs:element type="xs:string" name="pub_date"/>
      <xs:element type="xs:string" name="review" maxOccurs="2"/>
    </xs:sequence>
    <xs:attribute type="xs:string" name="id"/>
  </xs:complexType>
  <xs:complexType name="booksType">
    <xs:sequence>
      <xs:element type="bookType" name="book" maxOccurs="2"/> <!-- book is the child of 'books' max is 2 -->
    </xs:sequence>
  </xs:complexType>
</xs:schema>

Hide/Render WhiteSpace: Formats XML with watermarked dots or plain white space between the characters.

Format Code: Formats text in XML

Status

Indicates whether the API policy is enabled or disabled. 

Enabled

Disabled

  • No labels