Exporting and Importing the Model in CSV Format

Export Model To CSV

You can export a model's data to CSV format (Comma Separated Values). The data is exported in three different files - "elements.csv", "relations.csv" and "properties.csv". All data objects are identified by unique identifiers so that a property will reference an element or relation in the other files.

This option is available from the "Export Model To CSV..." menu item from the main "File->Export" menu. Once a model is selected in the Model Tree or in a View this menu item is enabled.

export-csv

Exporting the model to CSV

Export Options

Output Folder
Select the folder for the output files.

Delimiter
Select the CSV field delimiter character - comma, semicolon, or tab.

File prefix
Provide an optional prefix to add to the file names. For example, "MyModel-" will change the file names to "MyModel-elements.csv", "MyModel-relations.csv", and "MyModel-properties.csv".

File encoding
Select the file encoding to use - ANSI, UTF-8 or UTF-8 BOM. Some programs prefer one or the other file encoding. For example, MS Excel prefers the "UTF-8 BOM" encoding if Unicode characters are present in the CSV file.

Strip newline characters
If selected will remove all newline characters from multi-line text such as documentation.

Excel compatible
If selected will surround text starting with a zero or space with quote marks so that the data imports correctly into Excel. Also, any text field that starts with a "=", "+", "-", or "@" character will be prefixed with a space so that Excel does not interpret it as a formula.


Importing CSV Data into a Model

Import file format

You can import CSV data into an existing model. The CSV files need to be in the format as described below. Element and relationship IDs are optional if you are creating new concepts, but you need to provide an ID for an element or relationship if it is referenced by another concept or property. If providing an ID then it needs to be unique to the file using alpha-numeric characters, for example - "id1", "8fe456d", "actor3". The ID may be that of an existing concept if the CSV file has been exported, edited and re-imported. If an ID is not provided, a blank field "" should be present. In this case, an ID will be generated on import.

When importing CSV data into an existing model you can provide just one or all three files (elements, relations, properties). Usually you will provide all three files. The format of the file names is as follows:

"xxx-elements.csv"
"xxx-relations.csv"
"xxx-properties.csv"

The prefix ("xxx") is optional but must be the same for all three files if used. All three file names need to match - for example: "myname-elements.csv", "myname-relations.csv" and "myname-properties.csv". At the very least, the filenames need to contain the ".csv" extension and the names end with "elements", "relations" or "properties".

tipThe best way to understand the required format for each file is to export an Archi model to CSV format, and open the exported files in a text editor.

Format for elements.csv file

The first row is the "header" row and is as follows:

"ID","Type","Name","Documentation","Specialization"

This is followed by one or more rows of data. For example:

"ID","Type","Name","Documentation","Specialization"
"id-275af0e8c76","BusinessActor","Archisurance","This is the company",""
"id-1800f4e23cb","ApplicationComponent","Web portal","","Portal"
    
ID The unique identifier of the element. This is required if it is referenced in the relations.csv and properties.csv files.
Type Type of element. For example, "BusinessActor", "ApplicationComponent".
Name The name of the element
Documentation The documentation of the element. Can be empty.
Specialization The name of the Specialization of the element. Can be empty.

Format for relations.csv file

The first row is the "header" row and is as follows:

"ID","Type","Name","Documentation","Source","Target","Specialization"

This is followed by one or more rows of data. For example:

"ID","Type","Name","Documentation","Source","Target","Specialization"
"id-275af0e8c76","AccessRelationship","","","id-275af0e8c76","id-1800f4e23cb",""
"id-4f5af4b8c74","AssignmentRelationship","","","id-3755f0e8c76","id-2800f4e23ca",
    
ID The unique identifier of the element. This is required if it is referenced in the relations.csv and properties.csv files.
Type Type of relationship. For example, "AccessRelationship", "AssignmentRelationship".
Name The name of the relationship
Documentation The documentation of the relationship. Can be empty.
Source The ID of the source concept of the relationship. This can be the ID of a concept in the elements.csv or relations.csv file or an existing concept in the model that this will be imported into.
target The ID of the target concept of the relationship. This can be the ID of a concept in the elements.csv or relations.csv file or an existing concept in the model that this will be imported into.
Specialization The name of the Specialization of the relationship. Can be empty.

Format for properties.csv file

The first row is the "header" row and is as follows:

"ID","Key","Value"

This is followed by one or more rows of data. For example:

"ID","Key","Value"
"id-275af0e8c76","Cost","34"
"id-275af0e8c76","Location","Office"
    
ID The ID of the concept that this property belongs to. This can be the ID of a concept in the elements.csv or relations.csv file or an existing concept in the model that this will be imported into. Can appear more than once if there are several properties for the same concept.
Key The name of the property
Value The value of the property

Special keys and values can be used for some concepts:

AssociationRelationship - key of "Directed" and value of "false" or "true"
AccessRelationship - key of "Access_Type" and value of "Write", "Read" "Access", or "ReadWrite"
InfluenceRelationship - key of "Influence_Strength" and value of any string
Junction - key of "Junction_Type" and value of "And" of "Or"

Importing

When importing the CSV file(s) into Archi you can select any of the three CSV files in the Import dialog box. If there are corresponding "*.csv" files then these file(s) will be automatically imported at the same time.

If you don't want to import CSV data into an existing working model you can simply create a new empty model, select it, and import into that. This is effectively the equivalent of "New Model from CSV".

Importing, updating and merging

It is also possible to merge/update the CSV data into an existing model by exporting the model to CSV files, editing them and re-importing. If a model concept or property already exists as denoted by its ID, and the CSV row entry contains different data to that in the model it is updated. For example, a Business Actor with id "9240f5bf", named "BA1", and no documentation can be updated with a row entry as follows:

"ID","Type","Name","Documentation", "Specialization"
"9240f5bf","BusinessActor","New Name","Additional Documentation", "Specialization Name"

Or you could add new properties to concepts by editing the properties CSV file and referencing existing concept IDs with new property entries.

These are the rules when importing CSV data into a model:

Importing one or more CSV files

You can import just one or two CSV files into an existing model. If you import just an "elements.csv" file then only elements will be imported. If you then import a "relations.csv" file that uses the corresponding concept IDs you can import just the relations. The same is true for the "properties.csv" file.

If you are manually creating CSV files make sure you save them using UTF-8 format to preserve all special characters.

Note - it is currently not possible to import and export View diagram information in CSV format.