@prefix geojson: <https://purl.org/geojson/vocab#> .
@prefix rdfs:    <http://www.w3.org/2000/01/rdf-schema#> .

# Collection has a link (rdfs:seeAlso) with no oa:hasTarget (href).
# Must fail the sh:minCount 1 on oa:hasTarget inside LinkShape.
<http://www.example.com/collections/bad-c2>
    geojson:features <http://www.example.com/features/ok1> ;
    rdfs:seeAlso [ ] .

<http://www.example.com/features/ok1> a geojson:Feature ;
    geojson:geometry [
        a geojson:Point ;
        geojson:coordinates ( 174.7 -36.9 )
    ] .
