Learn about file format for export and restore
- Last UpdatedDec 16, 2024
- 1 minute read
- PI System
- PI Server 2024 R2
- PI Server
The Import/Export XML format is described in a schema file located in the PIPC\AF installation directory, OSIsoft.AF.xsd.
Many of the AF Objects support an operation attribute in the XML that allows for deletion. Similarly, you can execute the Auto Point Config option selectively on elements using this same technique.
Example
...
<AFElement operation="delete"> <Name>ElementToDelete</Name> </AFElement>
...
Elements and Attributes can be imported using a flat list, in which the relative path of the element or attribute is included in the name field. Example:
...
<AFElement> <Name>RootElement</Name> ... </AFElement>
<AFElement> <Name>RootElement\ChildElement1<\Name> ... </AFElement>
<AFElement> <Name>RootElement\ChildElement2<\Name> ... </AFElement>
...