Re: Repeating IriTemplate parameters

Hi Maik,

> If I have a URL structure with repeating parameters like
> 
> http://example.com/coveragecollection?include=domain&include=range
> 
> how would that look like in an IriTemplate?

I think that would be
    http://example.com/coveragecollection?include={includes}
where the variable includes is multi-valued.

We would then need a variable serialization for multiple values,
that for instance expands the template to
    http://example.com/coveragecollection?include=abc,def

> Is that possible at all?

I don't see multi-valued parameters in the spec right now.
Others, do we have something for that?

Best,

Ruben

Received on Tuesday, 10 November 2015 12:49:08 UTC