---
title: "Portfolio supported fields"
canonical: "https://support.appfire.com/space/PSJ/15480233/Portfolio%20supported%20fields"
format: markdown
---
> Macro (aura-html)


> Macro (excerpt)
> 
> Power Scripts™ for Jira enriches the SIL™ language by enabling you to directly access custom fields created by Portfolio just like any other Jira custom fields.

## Supported custom fields

> Macro (excerpt)
> 
> | Custom Field | Read/Write | SIL Type | Value | Notes |
> | --- | --- | --- | --- | --- |
> | Parent Link | Read/Write | string | Issue key of the portfolio parent | If set to an empty value, the issue will be removed from the Portfolio parent |
> | Target start | Read/Write | date | The date and time of the "Target start" Portfolio custom field | Available since Power Scripts v. 4.8.0.10 |
> | Target end | Read/Write | date | The date and time of the "Target end" Portfolio custom field | Available since Power Scripts v. 4.8.0.10 |

> ✅ ### Back to basics
> ✅ 
> ✅ This custom field contains a blank space in its name, therefore remember to use **#{** and **}** if you'd like to use the name instead of id/alias.

### Examples

```
#{Parent Link} = "TEST-123";
#{TEST-1.Parent Link} = "TEST-123";
print(#{TEST-1.Parent Link});
```