# Include Inflows

The "inflow" field is utilized to select all the species necessary to construct a chemistry model file. This field is mandatory, and all input species must be included in the public or private databank selected with the thermodynamic framework. To verify if a species exists in a thermodynamic framework and its associated databanks, use the [species-query](https://devdocs.olisystems.com/chemistry-model-files/chembuilder-api/chembuilder-query/species-query "mention") method and check if the species are listed in the output array.&#x20;

The "inflows" field is an array of JSON objects containing a valid list of species. The order in which species are added is not significant, and specific species can be enabled or disabled as needed using the "enabled" switch.&#x20;

Here is an example of the "inflows" field:

```json
"inflows": [
    {
        "name": "H2O"
    },
    { 
        "name": "NACL"
    }, 
    { 
        "name": "BENZENE",
        "enabled": false
    } 
]
```

{% hint style="info" %}
[Assays ](https://devdocs.olisystems.com/chemistry-model-files/chembuilder-api/getting-started-with-chembuilder/include-inflows/include-assays)and [PseudoComponents ](https://devdocs.olisystems.com/chemistry-model-files/chembuilder-api/getting-started-with-chembuilder/include-inflows/include-pseudocomponent)are also considered inflow species. For further details, please refer to the respective subpages.
{% endhint %}

{% hint style="danger" %}
Only OLI tags are permitted in the inflow. Please refer [species-query](https://devdocs.olisystems.com/chemistry-model-files/chembuilder-api/chembuilder-query/species-query "mention")to retrieve the OLI tags for each species. OLI tags should always be written in uppercase.
{% endhint %}

{% hint style="info" %}
"H2O" will always be automatically included as an inflow species by default.
{% endhint %}
