serviceDesc method

Iterable<Link> serviceDesc({
  1. String? type,
  2. String? hreflang,
})

All links with rel matching service-desc.

IANA description: "Identifies service description for the context that is primarily intended for consumption by machines".

OGC API Features & OGC API - Common Part 1 (Core): "API definitions are considered service descriptions".

Optional type and hreflang params can specify links more precisely.

Implementation

Iterable<Link> serviceDesc({String? type, String? hreflang}) =>
    byRel('service-desc', type: type, hreflang: hreflang);