Files: files XML Data

<files>					// list of files
  <file					// file
     filename="design1.emb"		// filename including the type
     filecontents="..."			// contents of the file
  />
  <file					// file
     filename="design2.emb"		// filename including the type
     filecontents="..."			// contents of the file
  />
  <file					// file
     filename="trueview.png"		// filename including the type
     filecontents="..."			// contents of the file
  />
</files>

Usage:

The files xml string is used in:

Remarks:

The files xml string specifies the list of files used or produced by a given function. It can contain one or more files.

The file specifies a single file that can be used or produced by the API.

The filename specifies the name of the file, including the type. The name is a unique identifier of the file that could be referenced in other parts of the input or output.

The filecontents encodes the contents of the file as a base64 string.

Note that some characters are valid in filename of filesystem but are invalid in xml.

For any attribute value:

  • “<”  becomes  “&lt;”
  • “&”  becomes  “&amp;”
  • ‘”‘  becomes  ‘&quot;’ (if you are using quote(“) to  delimit the attribute value)
  • “‘”  becomes  “&apos;” (if you are using apostrophe(‘)  to delimit the attribute value)