Products

Products, sometimes referred to as compounds or substances, are physical entities that are considered as targets or candidates in an Innovation Design & Decisions project.

This page discusses:

See Also
XML Format Overview

Project Administrators can create products using the Bio_Product element. This defines the product to create or modify. Products are not associated with a project.

You can create an association between products and projects using the Bio_ProjectProducts element for candidates or Target for targets.

Bio_Product

The Bio_Product element has the following attributes:

Attribute Type Required? Values Description
action string Yes
  • CREATED
  • MODIFIED
  • CREATED_OR_MODIFIED
The type of action performed for the product.

CREATED requires that no object with this id already exists.

MODIFIED requires that an object with this id already exists or is defined earlier in the XML file being imported.

id string Yes A unique identifier for the product.
name string Yes The name of the product.
description string No A description of the product.
chemicalSeries string Yes Can be empty.

Example

An example of XML to create products:

<?xml version="1.0" encoding="utf-8"?>
<root xmlns="http://biobdv.3ds.com/XMLSchema" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <transaction id="Candidates_Creation_Example">

        <Bio_Product action="CREATED" id="Cys-TAT (47-57) - CIP2Ai[33]" name="Cys-TAT (47-57) - CIP2Ai[33]" description="" chemicalSeries=""/>
        <Bio_Product action="CREATED" id="TAT (47-57) - CIP2Ai[32]" name="TAT (47-57) - CIP2Ai[32]" description="" chemicalSeries=""/>

    </transaction>
</root>