in internal/flags/create_flags.go [111:118]
func assetsLinkFlag(hidden bool) *cli.StringSliceFlag {
return &cli.StringSliceFlag{
Name: AssetsLink,
Usage: `JSON string representation of an asset link; (e.g. --assets-link='{"name": "Asset1", "url":"https://<domain>/some/location/1", "type": "other", "direct_asset_path": "xzy" }' or --assets-link='[{"name": "Asset1", "url":"https://example.com/some/location/1"}, {"name": "Asset2", "url":"https://example.com/some/location/2"}]'. The filepath field is deprecated and aliased to the direct_asset_path field. If both are set the direct_asset_path takes precedence.`,
Required: false,
Hidden: hidden,
}
}