<div dir="ltr"><div dir="ltr"><div>Ciao Francesco: references would be encoded as link objects, for example (for a single referenced input):</div><div><br>{<br>  "inputs": {<br>      "href": "<a href="https://raw.githubusercontent.com/radiantearth/stac-spec/refs/heads/master/examples/simple-item.json">https://raw.githubusercontent.com/radiantearth/stac-spec/refs/heads/master/examples/simple-item.json</a>",<br>      "rel": "item"<br>    }<br>}</div></div><div dir="ltr"><br></div><div>The idea would be to encode resources as links and use the link relation to help in detection (as well as, say, href HTTP headers and content parsing, once downloaded).</div><div><br></div><div>Admittedly, I've used the below approach, which uses the link object accordingly, but "qualifies" it (see "source", "target", etc.).</div><div><br></div><div>// ingest a STAC item into an OGC API - Records endpoint</div><div>{<br>  "inputs": {<br>    "source": {<br>      "href": "<a href="https://raw.githubusercontent.com/radiantearth/stac-spec/refs/heads/master/examples/simple-item.json">https://raw.githubusercontent.com/radiantearth/stac-spec/refs/heads/master/examples/simple-item.json</a>",<br>      "rel": "item"<br>    },  <br>    "target": {<br>      "href": "<a href="http://localhost:5002">http://localhost:5002</a>",<br>      "rel": "<a href="http://www.opengis.net/spec/ogcapi-records-1/1.0">http://www.opengis.net/spec/ogcapi-records-1/1.0</a>"<br>    }   <br>  }<br>}</div><div><br></div><div>...which could be encoded also as (per the specification):</div><div><br></div><div>{<br>  "inputs": [{<br>      "href": "<a href="https://raw.githubusercontent.com/radiantearth/stac-spec/refs/heads/master/examples/simple-item.json">https://raw.githubusercontent.com/radiantearth/stac-spec/refs/heads/master/examples/simple-item.json</a>",<br>      "rel": "item"<br>    },  {<br>      "href": "<a href="http://localhost:5002">http://localhost:5002</a>",<br>      "rel": "<a href="http://www.opengis.net/spec/ogcapi-records-1/1.0">http://www.opengis.net/spec/ogcapi-records-1/1.0</a>"  <br>  }]<br>}</div><div><br></div><div>....but then my process would have to understand "source" and "target" by way of array indexing.  I suppose one could define further qualification with more detailed link relations:</div><div><br></div><div><div>{<br>  "inputs": [{<br>      "href": "<a href="https://raw.githubusercontent.com/radiantearth/stac-spec/refs/heads/master/examples/simple-item.json">https://raw.githubusercontent.com/radiantearth/stac-spec/refs/heads/master/examples/simple-item.json</a>",<br>      "rel": "source"<br>    },  {<br>      "href": "<a href="http://localhost:5002">http://localhost:5002</a>",<br>      "rel": "target"  <br>  }]<br>}</div></div><div><br></div><div>...but in my case I'm a bit cautious to go this route, understanding that defining and documenting a JSON schema of the payload is "easier" than fully defining and properly documenting link relations.</div><div><br></div><div>Hope this helps.</div><div><br></div><div>..Tom</div><div><br></div><div><br></div><div dir="ltr"><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Wed, Feb 26, 2025 at 3:41 AM Francesco Martinelli via pygeoapi <<a href="mailto:pygeoapi@lists.osgeo.org" target="_blank">pygeoapi@lists.osgeo.org</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Dear all,<br>
I am investigating on the possibility to use "reference" instead of <br>
"value" to pass input information to a Process.<br>
<br>
I wonder if anyone already used this opportunity,<br>
and if there is some available code sample I could access.<br>
<br>
Thank you,<br>
Francesco<br>
<br>
<br>
-- <br>
Dott. Ing. Francesco Martinelli<br>
Istituto Nazionale di Geofisica e Vulcanologia<br>
Sezione di Pisa<br>
Via Cesare Battisti, 53 - 56125 Pisa<br>
Tel. 050 8311964<br>
_______________________________________________<br>
pygeoapi mailing list<br>
<a href="mailto:pygeoapi@lists.osgeo.org" target="_blank">pygeoapi@lists.osgeo.org</a><br>
<a href="https://lists.osgeo.org/mailman/listinfo/pygeoapi" rel="noreferrer" target="_blank">https://lists.osgeo.org/mailman/listinfo/pygeoapi</a><br>
</blockquote></div></div>
</div>