{
  "components": {
    "schemas": {
      "Geometry": {
        "description": "GeoJSON geometry",
        "discriminator": {
          "propertyName": "type"
        },
        "properties": {
          "coordinates": {
            "description": "Based on the geometry type, a point or collection of points.",
            "items": {
              "type": "number"
            },
            "minItems": 2,
            "type": "array"
          },
          "type": {
            "description": "the geometry type",
            "enum": [
              "Point",
              "LineString",
              "Polygon",
              "MultiPoint",
              "MultiLineString",
              "MultiPolygon"
            ],
            "type": "string"
          }
        },
        "required": [
          "type"
        ],
        "type": "object"
      },
      "GeometryCollection": {
        "description": "GeoJSON geometry collection",
        "properties": {
          "geometries": {
            "items": {
              "description": "GeoJSON geometry",
              "discriminator": {
                "propertyName": "type"
              },
              "properties": {
                "coordinates": {
                  "description": "Based on the geometry type, a point or collection of points.",
                  "items": {
                    "type": "number"
                  },
                  "minItems": 2,
                  "type": "array"
                },
                "type": {
                  "description": "the geometry type",
                  "enum": [
                    "Point",
                    "LineString",
                    "Polygon",
                    "MultiPoint",
                    "MultiLineString",
                    "MultiPolygon"
                  ],
                  "type": "string"
                }
              },
              "required": [
                "type"
              ],
              "type": "object"
            },
            "type": "array"
          },
          "type": {
            "enum": [
              "GeometryCollection"
            ],
            "type": "string"
          }
        },
        "required": [
          "type",
          "geometries"
        ],
        "type": "object"
      },
      "LineString": {
        "allOf": [
          {
            "description": "GeoJSON geometry",
            "discriminator": {
              "propertyName": "type"
            },
            "properties": {
              "coordinates": {
                "description": "Based on the geometry type, a point or collection of points.",
                "items": {
                  "type": "number"
                },
                "minItems": 2,
                "type": "array"
              },
              "type": {
                "description": "the geometry type",
                "enum": [
                  "Point",
                  "LineString",
                  "Polygon",
                  "MultiPoint",
                  "MultiLineString",
                  "MultiPolygon"
                ],
                "type": "string"
              }
            },
            "required": [
              "type"
            ],
            "type": "object"
          },
          {
            "properties": {
              "coordinates": {
                "items": {
                  "description": "Point in 3D space",
                  "items": {
                    "type": "number"
                  },
                  "maxItems": 3,
                  "minItems": 2,
                  "type": "array"
                },
                "type": "array"
              },
              "type": {
                "enum": [
                  "LineString"
                ],
                "type": "string"
              }
            }
          }
        ],
        "description": "GeoJSON geometry",
        "type": "object"
      },
      "MultiLineString": {
        "allOf": [
          {
            "description": "GeoJSON geometry",
            "discriminator": {
              "propertyName": "type"
            },
            "properties": {
              "coordinates": {
                "description": "Based on the geometry type, a point or collection of points.",
                "items": {
                  "type": "number"
                },
                "minItems": 2,
                "type": "array"
              },
              "type": {
                "description": "the geometry type",
                "enum": [
                  "Point",
                  "LineString",
                  "Polygon",
                  "MultiPoint",
                  "MultiLineString",
                  "MultiPolygon"
                ],
                "type": "string"
              }
            },
            "required": [
              "type"
            ],
            "type": "object"
          },
          {
            "properties": {
              "coordinates": {
                "items": {
                  "items": {
                    "description": "Point in 3D space",
                    "items": {
                      "type": "number"
                    },
                    "maxItems": 3,
                    "minItems": 2,
                    "type": "array"
                  },
                  "type": "array"
                },
                "type": "array"
              },
              "type": {
                "enum": [
                  "MultiLineString"
                ],
                "type": "string"
              }
            }
          }
        ],
        "description": "GeoJSON geometry",
        "type": "object"
      },
      "MultiPoint": {
        "allOf": [
          {
            "description": "GeoJSON geometry",
            "discriminator": {
              "propertyName": "type"
            },
            "properties": {
              "coordinates": {
                "description": "Based on the geometry type, a point or collection of points.",
                "items": {
                  "type": "number"
                },
                "minItems": 2,
                "type": "array"
              },
              "type": {
                "description": "the geometry type",
                "enum": [
                  "Point",
                  "LineString",
                  "Polygon",
                  "MultiPoint",
                  "MultiLineString",
                  "MultiPolygon"
                ],
                "type": "string"
              }
            },
            "required": [
              "type"
            ],
            "type": "object"
          },
          {
            "properties": {
              "coordinates": {
                "items": {
                  "description": "Point in 3D space",
                  "items": {
                    "type": "number"
                  },
                  "maxItems": 3,
                  "minItems": 2,
                  "type": "array"
                },
                "type": "array"
              },
              "type": {
                "enum": [
                  "MultiPoint"
                ],
                "type": "string"
              }
            }
          }
        ],
        "description": "GeoJSON geometry",
        "type": "object"
      },
      "MultiPolygon": {
        "allOf": [
          {
            "description": "GeoJSON geometry",
            "discriminator": {
              "propertyName": "type"
            },
            "properties": {
              "coordinates": {
                "description": "Based on the geometry type, a point or collection of points.",
                "items": {
                  "type": "number"
                },
                "minItems": 2,
                "type": "array"
              },
              "type": {
                "description": "the geometry type",
                "enum": [
                  "Point",
                  "LineString",
                  "Polygon",
                  "MultiPoint",
                  "MultiLineString",
                  "MultiPolygon"
                ],
                "type": "string"
              }
            },
            "required": [
              "type"
            ],
            "type": "object"
          },
          {
            "properties": {
              "coordinates": {
                "items": {
                  "items": {
                    "items": {
                      "description": "Point in 3D space",
                      "items": {
                        "type": "number"
                      },
                      "maxItems": 3,
                      "minItems": 2,
                      "type": "array"
                    },
                    "type": "array"
                  },
                  "type": "array"
                },
                "type": "array"
              },
              "type": {
                "enum": [
                  "MultiPolygon"
                ],
                "type": "string"
              }
            }
          }
        ],
        "description": "GeoJSON geometry",
        "type": "object"
      },
      "PaginatedWegenbestandZoneZwaarVerkeerbinnenList": {
        "properties": {
          "_embedded": {
            "properties": {
              "binnen": {
                "items": {
                  "description": "binnen",
                  "properties": {
                    "_links": {
                      "allOf": [
                        {
                          "description": "The contents of the `binnen._links` field. It contains all relationships with objects.",
                          "properties": {
                            "schema": {
                              "description": "The schema field is exposed with every record",
                              "format": "uri",
                              "readOnly": true,
                              "type": "string"
                            },
                            "self": {
                              "description": "The identifier of the relationship to binnen.",
                              "properties": {
                                "href": {
                                  "format": "uri",
                                  "readOnly": true,
                                  "type": "string"
                                },
                                "id": {
                                  "description": "unieke identificatie van het record.",
                                  "format": "int64",
                                  "maximum": 9223372036854776000,
                                  "minimum": -9223372036854776000,
                                  "type": "integer"
                                },
                                "title": {
                                  "type": "string"
                                }
                              },
                              "required": [
                                "href",
                                "id",
                                "title"
                              ],
                              "type": "object"
                            }
                          },
                          "required": [
                            "schema",
                            "self"
                          ],
                          "type": "object"
                        }
                      ],
                      "title": " links"
                    },
                    "beleidskaderAuto": {
                      "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
                      "nullable": true,
                      "type": "string"
                    },
                    "beleidskaderFiets": {
                      "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
                      "nullable": true,
                      "type": "string"
                    },
                    "beleidskaderOv": {
                      "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
                      "nullable": true,
                      "type": "string"
                    },
                    "geometry": {
                      "allOf": [
                        {
                          "description": "GeoJSON geometry",
                          "discriminator": {
                            "propertyName": "type"
                          },
                          "properties": {
                            "coordinates": {
                              "description": "Based on the geometry type, a point or collection of points.",
                              "items": {
                                "type": "number"
                              },
                              "minItems": 2,
                              "type": "array"
                            },
                            "type": {
                              "description": "the geometry type",
                              "enum": [
                                "Point",
                                "LineString",
                                "Polygon",
                                "MultiPoint",
                                "MultiLineString",
                                "MultiPolygon"
                              ],
                              "type": "string"
                            }
                          },
                          "required": [
                            "type"
                          ],
                          "type": "object"
                        },
                        {
                          "properties": {
                            "coordinates": {
                              "items": {
                                "items": {
                                  "description": "Point in 3D space",
                                  "items": {
                                    "type": "number"
                                  },
                                  "maxItems": 3,
                                  "minItems": 2,
                                  "type": "array"
                                },
                                "type": "array"
                              },
                              "type": "array"
                            },
                            "type": {
                              "enum": [
                                "MultiLineString"
                              ],
                              "type": "string"
                            }
                          }
                        }
                      ],
                      "description": "GeoJSON geometry",
                      "type": "object"
                    },
                    "gevaarlijkeStoffenRoute": {
                      "description": "indicator voor een route voor transport van routeplichtige gevaarlijke stoffen.",
                      "nullable": true,
                      "type": "boolean"
                    },
                    "id": {
                      "description": "unieke identificatie van het record.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "type": "integer"
                    },
                    "indicatieZoneAmsterdam": {
                      "description": "indicator of link valt binnen of grotendeels binnen de gemeente Amsterdam.",
                      "nullable": true,
                      "type": "boolean"
                    },
                    "indicatieZoneMilieu": {
                      "description": "indicator Verkeersbesluit milieuzone Amsterdam (Staatscourant 2020, 32736).",
                      "nullable": true,
                      "type": "boolean"
                    },
                    "indicatieZoneZwaarVerkeer": {
                      "description": "indicator Verkeersbesluit Zone Zwaar Verkeer Amsterdam (Staatscourant 2021, 24726).",
                      "nullable": true,
                      "type": "string"
                    },
                    "laadLosRegime": {
                      "description": "het type laden-en-lossen regime.",
                      "nullable": true,
                      "type": "string"
                    },
                    "laadLosVenstertijden": {
                      "description": "toegestane tijdsperioden voor laden-en-lossen.",
                      "nullable": true,
                      "type": "string"
                    },
                    "laadLosVerbodStilTeStaanTijden": {
                      "description": "dagen en tijden voor verbod laden-en-lossen en stilstaan.",
                      "nullable": true,
                      "type": "string"
                    },
                    "lengte": {
                      "description": "lengte van de link in meters.",
                      "format": "double",
                      "nullable": true,
                      "type": "number"
                    },
                    "linknummer": {
                      "description": "unieke identificatie voor elke opgedeelde wegennetwerk object.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "percLijnInPolygoonWeg": {
                      "description": "welke % van 'lijn lengte' binnen BGT polygonen liggen met een van de volgende functies: ('rijbaan regionale weg','rijbaan autoweg','OV-baan','rijbaan autosnelweg','woonerf','rijbaan lokale weg').",
                      "format": "double",
                      "nullable": true,
                      "type": "number"
                    },
                    "rijrichting": {
                      "description": "toegestane auto rijrichtingen van de weg.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "source": {
                      "description": "nummer van source node van edge.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "straatnaam": {
                      "description": "straatnaam die van toepassing is op wegennetwerk object.",
                      "nullable": true,
                      "type": "string"
                    },
                    "target": {
                      "description": "nummer van target node van edge.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "tijdskostenBeginEind": {
                      "description": "tijdskosten om van begin naar eind van link te gaan in seconden.",
                      "format": "double",
                      "nullable": true,
                      "type": "number"
                    },
                    "tijdskostenEindBegin": {
                      "description": "tijdskosten om van eind naar begin van link te gaan in seconden.",
                      "format": "double",
                      "nullable": true,
                      "type": "number"
                    },
                    "tunnelCategorie": {
                      "description": "een Europese categorisering voor tunnels met betrekking op het vervoer van gevaarlijke stoffen.",
                      "nullable": true,
                      "type": "string"
                    },
                    "tunnelNaam": {
                      "description": "naam van de tunnel.",
                      "nullable": true,
                      "type": "string"
                    },
                    "wegFunctie": {
                      "description": "functional road class; geeft de functie van weg.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "wegbeheerder": {
                      "description": "wegbeheerder die hoort bij de weg.",
                      "nullable": true,
                      "type": "string"
                    },
                    "wettelijkeSnelheid": {
                      "description": "wettelijke Snelheid die toegestaan is op weg. Bij verschillende waarde voor de 2 rijrichtingen gaat het om maximum.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    }
                  },
                  "required": [
                    "_links",
                    "id"
                  ],
                  "type": "object"
                },
                "type": "array"
              }
            },
            "type": "object"
          },
          "_links": {
            "properties": {
              "next": {
                "properties": {
                  "href": {
                    "example": "https://api.data.amsterdam.nl/v1/.../resource/?page=4",
                    "format": "uri",
                    "nullable": true,
                    "type": "string"
                  }
                },
                "type": "object"
              },
              "previous": {
                "properties": {
                  "href": {
                    "example": "https://api.data.amsterdam.nl/v1/.../resource/?page=2",
                    "format": "uri",
                    "nullable": true,
                    "type": "string"
                  }
                },
                "type": "object"
              },
              "self": {
                "properties": {
                  "href": {
                    "example": "https://api.data.amsterdam.nl/v1/.../resource/?page=3",
                    "format": "uri",
                    "type": "string"
                  }
                },
                "type": "object"
              }
            },
            "type": "object"
          },
          "page": {
            "properties": {
              "number": {
                "example": 3,
                "type": "integer"
              },
              "size": {
                "example": 20,
                "type": "integer"
              },
              "totalElements": {
                "example": 5,
                "type": "integer"
              },
              "totalPages": {
                "example": 3,
                "type": "integer"
              }
            },
            "type": "object"
          }
        },
        "type": "object"
      },
      "PaginatedWegenbestandZoneZwaarVerkeerbreed_opgezette_wegenList": {
        "properties": {
          "_embedded": {
            "properties": {
              "breed_opgezette_wegen": {
                "items": {
                  "description": "breedOpgezetteWegen",
                  "properties": {
                    "_links": {
                      "allOf": [
                        {
                          "description": "The contents of the `breedOpgezetteWegen._links` field. It contains all relationships with objects.",
                          "properties": {
                            "schema": {
                              "description": "The schema field is exposed with every record",
                              "format": "uri",
                              "readOnly": true,
                              "type": "string"
                            },
                            "self": {
                              "description": "The identifier of the relationship to breedOpgezetteWegen.",
                              "properties": {
                                "href": {
                                  "format": "uri",
                                  "readOnly": true,
                                  "type": "string"
                                },
                                "id": {
                                  "description": "unieke identificatie van het record.",
                                  "format": "int64",
                                  "maximum": 9223372036854776000,
                                  "minimum": -9223372036854776000,
                                  "type": "integer"
                                },
                                "title": {
                                  "type": "string"
                                }
                              },
                              "required": [
                                "href",
                                "id",
                                "title"
                              ],
                              "type": "object"
                            }
                          },
                          "required": [
                            "schema",
                            "self"
                          ],
                          "type": "object"
                        }
                      ],
                      "title": " links"
                    },
                    "beleidskaderAuto": {
                      "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
                      "nullable": true,
                      "type": "string"
                    },
                    "beleidskaderFiets": {
                      "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
                      "nullable": true,
                      "type": "string"
                    },
                    "beleidskaderOv": {
                      "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
                      "nullable": true,
                      "type": "string"
                    },
                    "geometry": {
                      "allOf": [
                        {
                          "description": "GeoJSON geometry",
                          "discriminator": {
                            "propertyName": "type"
                          },
                          "properties": {
                            "coordinates": {
                              "description": "Based on the geometry type, a point or collection of points.",
                              "items": {
                                "type": "number"
                              },
                              "minItems": 2,
                              "type": "array"
                            },
                            "type": {
                              "description": "the geometry type",
                              "enum": [
                                "Point",
                                "LineString",
                                "Polygon",
                                "MultiPoint",
                                "MultiLineString",
                                "MultiPolygon"
                              ],
                              "type": "string"
                            }
                          },
                          "required": [
                            "type"
                          ],
                          "type": "object"
                        },
                        {
                          "properties": {
                            "coordinates": {
                              "items": {
                                "items": {
                                  "description": "Point in 3D space",
                                  "items": {
                                    "type": "number"
                                  },
                                  "maxItems": 3,
                                  "minItems": 2,
                                  "type": "array"
                                },
                                "type": "array"
                              },
                              "type": "array"
                            },
                            "type": {
                              "enum": [
                                "MultiLineString"
                              ],
                              "type": "string"
                            }
                          }
                        }
                      ],
                      "description": "GeoJSON geometry",
                      "type": "object"
                    },
                    "gevaarlijkeStoffenRoute": {
                      "description": "indicator voor een route voor transport van routeplichtige gevaarlijke stoffen.",
                      "nullable": true,
                      "type": "boolean"
                    },
                    "id": {
                      "description": "unieke identificatie van het record.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "type": "integer"
                    },
                    "indicatieZoneAmsterdam": {
                      "description": "indicator of link valt binnen of grotendeels binnen de gemeente Amsterdam.",
                      "nullable": true,
                      "type": "boolean"
                    },
                    "indicatieZoneMilieu": {
                      "description": "indicator Verkeersbesluit milieuzone Amsterdam (Staatscourant 2020, 32736).",
                      "nullable": true,
                      "type": "boolean"
                    },
                    "indicatieZoneZwaarVerkeer": {
                      "description": "indicator Verkeersbesluit Zone Zwaar Verkeer Amsterdam (Staatscourant 2021, 24726).",
                      "nullable": true,
                      "type": "string"
                    },
                    "laadLosRegime": {
                      "description": "het type laden-en-lossen regime.",
                      "nullable": true,
                      "type": "string"
                    },
                    "laadLosVenstertijden": {
                      "description": "toegestane tijdsperioden voor laden-en-lossen.",
                      "nullable": true,
                      "type": "string"
                    },
                    "laadLosVerbodStilTeStaanTijden": {
                      "description": "dagen en tijden voor verbod laden-en-lossen en stilstaan.",
                      "nullable": true,
                      "type": "string"
                    },
                    "lengte": {
                      "description": "lengte van de link in meters.",
                      "format": "double",
                      "nullable": true,
                      "type": "number"
                    },
                    "linknummer": {
                      "description": "unieke identificatie voor elke opgedeelde wegennetwerk object.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "percLijnInPolygoonWeg": {
                      "description": "welke % van 'lijn lengte' binnen BGT polygonen liggen met een van de volgende functies: ('rijbaan regionale weg','rijbaan autoweg','OV-baan','rijbaan autosnelweg','woonerf','rijbaan lokale weg').",
                      "format": "double",
                      "nullable": true,
                      "type": "number"
                    },
                    "rijrichting": {
                      "description": "toegestane auto rijrichtingen van de weg.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "source": {
                      "description": "nummer van source node van edge.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "straatnaam": {
                      "description": "straatnaam die van toepassing is op wegennetwerk object.",
                      "nullable": true,
                      "type": "string"
                    },
                    "target": {
                      "description": "nummer van target node van edge.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "tijdskostenBeginEind": {
                      "description": "tijdskosten om van begin naar eind van link te gaan in seconden.",
                      "format": "double",
                      "nullable": true,
                      "type": "number"
                    },
                    "tijdskostenEindBegin": {
                      "description": "tijdskosten om van eind naar begin van link te gaan in seconden.",
                      "format": "double",
                      "nullable": true,
                      "type": "number"
                    },
                    "tunnelCategorie": {
                      "description": "een Europese categorisering voor tunnels met betrekking op het vervoer van gevaarlijke stoffen.",
                      "nullable": true,
                      "type": "string"
                    },
                    "tunnelNaam": {
                      "description": "naam van de tunnel.",
                      "nullable": true,
                      "type": "string"
                    },
                    "wegFunctie": {
                      "description": "functional road class; geeft de functie van weg.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "wegbeheerder": {
                      "description": "wegbeheerder die hoort bij de weg.",
                      "nullable": true,
                      "type": "string"
                    },
                    "wettelijkeSnelheid": {
                      "description": "wettelijke Snelheid die toegestaan is op weg. Bij verschillende waarde voor de 2 rijrichtingen gaat het om maximum.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    }
                  },
                  "required": [
                    "_links",
                    "id"
                  ],
                  "type": "object"
                },
                "type": "array"
              }
            },
            "type": "object"
          },
          "_links": {
            "properties": {
              "next": {
                "properties": {
                  "href": {
                    "example": "https://api.data.amsterdam.nl/v1/.../resource/?page=4",
                    "format": "uri",
                    "nullable": true,
                    "type": "string"
                  }
                },
                "type": "object"
              },
              "previous": {
                "properties": {
                  "href": {
                    "example": "https://api.data.amsterdam.nl/v1/.../resource/?page=2",
                    "format": "uri",
                    "nullable": true,
                    "type": "string"
                  }
                },
                "type": "object"
              },
              "self": {
                "properties": {
                  "href": {
                    "example": "https://api.data.amsterdam.nl/v1/.../resource/?page=3",
                    "format": "uri",
                    "type": "string"
                  }
                },
                "type": "object"
              }
            },
            "type": "object"
          },
          "page": {
            "properties": {
              "number": {
                "example": 3,
                "type": "integer"
              },
              "size": {
                "example": 20,
                "type": "integer"
              },
              "totalElements": {
                "example": 5,
                "type": "integer"
              },
              "totalPages": {
                "example": 3,
                "type": "integer"
              }
            },
            "type": "object"
          }
        },
        "type": "object"
      },
      "PaginatedWegenbestandZoneZwaarVerkeerbuitenList": {
        "properties": {
          "_embedded": {
            "properties": {
              "buiten": {
                "items": {
                  "description": "buiten",
                  "properties": {
                    "_links": {
                      "allOf": [
                        {
                          "description": "The contents of the `buiten._links` field. It contains all relationships with objects.",
                          "properties": {
                            "schema": {
                              "description": "The schema field is exposed with every record",
                              "format": "uri",
                              "readOnly": true,
                              "type": "string"
                            },
                            "self": {
                              "description": "The identifier of the relationship to buiten.",
                              "properties": {
                                "href": {
                                  "format": "uri",
                                  "readOnly": true,
                                  "type": "string"
                                },
                                "id": {
                                  "description": "unieke identificatie van het record.",
                                  "format": "int64",
                                  "maximum": 9223372036854776000,
                                  "minimum": -9223372036854776000,
                                  "type": "integer"
                                },
                                "title": {
                                  "type": "string"
                                }
                              },
                              "required": [
                                "href",
                                "id",
                                "title"
                              ],
                              "type": "object"
                            }
                          },
                          "required": [
                            "schema",
                            "self"
                          ],
                          "type": "object"
                        }
                      ],
                      "title": " links"
                    },
                    "beleidskaderAuto": {
                      "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
                      "nullable": true,
                      "type": "string"
                    },
                    "beleidskaderFiets": {
                      "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
                      "nullable": true,
                      "type": "string"
                    },
                    "beleidskaderOv": {
                      "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
                      "nullable": true,
                      "type": "string"
                    },
                    "geometry": {
                      "allOf": [
                        {
                          "description": "GeoJSON geometry",
                          "discriminator": {
                            "propertyName": "type"
                          },
                          "properties": {
                            "coordinates": {
                              "description": "Based on the geometry type, a point or collection of points.",
                              "items": {
                                "type": "number"
                              },
                              "minItems": 2,
                              "type": "array"
                            },
                            "type": {
                              "description": "the geometry type",
                              "enum": [
                                "Point",
                                "LineString",
                                "Polygon",
                                "MultiPoint",
                                "MultiLineString",
                                "MultiPolygon"
                              ],
                              "type": "string"
                            }
                          },
                          "required": [
                            "type"
                          ],
                          "type": "object"
                        },
                        {
                          "properties": {
                            "coordinates": {
                              "items": {
                                "items": {
                                  "description": "Point in 3D space",
                                  "items": {
                                    "type": "number"
                                  },
                                  "maxItems": 3,
                                  "minItems": 2,
                                  "type": "array"
                                },
                                "type": "array"
                              },
                              "type": "array"
                            },
                            "type": {
                              "enum": [
                                "MultiLineString"
                              ],
                              "type": "string"
                            }
                          }
                        }
                      ],
                      "description": "GeoJSON geometry",
                      "type": "object"
                    },
                    "gevaarlijkeStoffenRoute": {
                      "description": "indicator voor een route voor transport van routeplichtige gevaarlijke stoffen.",
                      "nullable": true,
                      "type": "boolean"
                    },
                    "id": {
                      "description": "unieke identificatie van het record.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "type": "integer"
                    },
                    "indicatieZoneAmsterdam": {
                      "description": "indicator of link valt binnen of grotendeels binnen de gemeente Amsterdam.",
                      "nullable": true,
                      "type": "boolean"
                    },
                    "indicatieZoneMilieu": {
                      "description": "indicator Verkeersbesluit milieuzone Amsterdam (Staatscourant 2020, 32736).",
                      "nullable": true,
                      "type": "boolean"
                    },
                    "indicatieZoneZwaarVerkeer": {
                      "description": "indicator Verkeersbesluit Zone Zwaar Verkeer Amsterdam (Staatscourant 2021, 24726).",
                      "nullable": true,
                      "type": "string"
                    },
                    "laadLosRegime": {
                      "description": "het type laden-en-lossen regime.",
                      "nullable": true,
                      "type": "string"
                    },
                    "laadLosVenstertijden": {
                      "description": "toegestane tijdsperioden voor laden-en-lossen.",
                      "nullable": true,
                      "type": "string"
                    },
                    "laadLosVerbodStilTeStaanTijden": {
                      "description": "dagen en tijden voor verbod laden-en-lossen en stilstaan.",
                      "nullable": true,
                      "type": "string"
                    },
                    "lengte": {
                      "description": "lengte van de link in meters.",
                      "format": "double",
                      "nullable": true,
                      "type": "number"
                    },
                    "linknummer": {
                      "description": "unieke identificatie voor elke opgedeelde wegennetwerk object.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "percLijnInPolygoonWeg": {
                      "description": "welke % van 'lijn lengte' binnen BGT polygonen liggen met een van de volgende functies: ('rijbaan regionale weg','rijbaan autoweg','OV-baan','rijbaan autosnelweg','woonerf','rijbaan lokale weg').",
                      "format": "double",
                      "nullable": true,
                      "type": "number"
                    },
                    "rijrichting": {
                      "description": "toegestane auto rijrichtingen van de weg.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "source": {
                      "description": "nummer van source node van edge.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "straatnaam": {
                      "description": "straatnaam die van toepassing is op wegennetwerk object.",
                      "nullable": true,
                      "type": "string"
                    },
                    "target": {
                      "description": "nummer van target node van edge.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "tijdskostenBeginEind": {
                      "description": "tijdskosten om van begin naar eind van link te gaan in seconden.",
                      "format": "double",
                      "nullable": true,
                      "type": "number"
                    },
                    "tijdskostenEindBegin": {
                      "description": "tijdskosten om van eind naar begin van link te gaan in seconden.",
                      "format": "double",
                      "nullable": true,
                      "type": "number"
                    },
                    "tunnelCategorie": {
                      "description": "een Europese categorisering voor tunnels met betrekking op het vervoer van gevaarlijke stoffen.",
                      "nullable": true,
                      "type": "string"
                    },
                    "tunnelNaam": {
                      "description": "naam van de tunnel.",
                      "nullable": true,
                      "type": "string"
                    },
                    "wegFunctie": {
                      "description": "functional road class; geeft de functie van weg.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "wegbeheerder": {
                      "description": "wegbeheerder die hoort bij de weg.",
                      "nullable": true,
                      "type": "string"
                    },
                    "wettelijkeSnelheid": {
                      "description": "wettelijke Snelheid die toegestaan is op weg. Bij verschillende waarde voor de 2 rijrichtingen gaat het om maximum.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    }
                  },
                  "required": [
                    "_links",
                    "id"
                  ],
                  "type": "object"
                },
                "type": "array"
              }
            },
            "type": "object"
          },
          "_links": {
            "properties": {
              "next": {
                "properties": {
                  "href": {
                    "example": "https://api.data.amsterdam.nl/v1/.../resource/?page=4",
                    "format": "uri",
                    "nullable": true,
                    "type": "string"
                  }
                },
                "type": "object"
              },
              "previous": {
                "properties": {
                  "href": {
                    "example": "https://api.data.amsterdam.nl/v1/.../resource/?page=2",
                    "format": "uri",
                    "nullable": true,
                    "type": "string"
                  }
                },
                "type": "object"
              },
              "self": {
                "properties": {
                  "href": {
                    "example": "https://api.data.amsterdam.nl/v1/.../resource/?page=3",
                    "format": "uri",
                    "type": "string"
                  }
                },
                "type": "object"
              }
            },
            "type": "object"
          },
          "page": {
            "properties": {
              "number": {
                "example": 3,
                "type": "integer"
              },
              "size": {
                "example": 20,
                "type": "integer"
              },
              "totalElements": {
                "example": 5,
                "type": "integer"
              },
              "totalPages": {
                "example": 3,
                "type": "integer"
              }
            },
            "type": "object"
          }
        },
        "type": "object"
      },
      "Point": {
        "allOf": [
          {
            "description": "GeoJSON geometry",
            "discriminator": {
              "propertyName": "type"
            },
            "properties": {
              "coordinates": {
                "description": "Based on the geometry type, a point or collection of points.",
                "items": {
                  "type": "number"
                },
                "minItems": 2,
                "type": "array"
              },
              "type": {
                "description": "the geometry type",
                "enum": [
                  "Point",
                  "LineString",
                  "Polygon",
                  "MultiPoint",
                  "MultiLineString",
                  "MultiPolygon"
                ],
                "type": "string"
              }
            },
            "required": [
              "type"
            ],
            "type": "object"
          },
          {
            "properties": {
              "coordinates": {
                "description": "Point in 3D space",
                "items": {
                  "type": "number"
                },
                "maxItems": 3,
                "minItems": 2,
                "type": "array"
              },
              "type": {
                "enum": [
                  "Point"
                ],
                "type": "string"
              }
            }
          }
        ],
        "description": "GeoJSON geometry",
        "type": "object"
      },
      "Point3D": {
        "description": "Point in 3D space",
        "items": {
          "type": "number"
        },
        "maxItems": 3,
        "minItems": 2,
        "type": "array"
      },
      "Polygon": {
        "allOf": [
          {
            "description": "GeoJSON geometry",
            "discriminator": {
              "propertyName": "type"
            },
            "properties": {
              "coordinates": {
                "description": "Based on the geometry type, a point or collection of points.",
                "items": {
                  "type": "number"
                },
                "minItems": 2,
                "type": "array"
              },
              "type": {
                "description": "the geometry type",
                "enum": [
                  "Point",
                  "LineString",
                  "Polygon",
                  "MultiPoint",
                  "MultiLineString",
                  "MultiPolygon"
                ],
                "type": "string"
              }
            },
            "required": [
              "type"
            ],
            "type": "object"
          },
          {
            "properties": {
              "coordinates": {
                "items": {
                  "items": {
                    "description": "Point in 3D space",
                    "items": {
                      "type": "number"
                    },
                    "maxItems": 3,
                    "minItems": 2,
                    "type": "array"
                  },
                  "type": "array"
                },
                "type": "array"
              },
              "type": {
                "enum": [
                  "Polygon"
                ],
                "type": "string"
              }
            }
          }
        ],
        "description": "GeoJSON geometry",
        "type": "object"
      },
      "WegenbestandZoneZwaarVerkeerbinnen": {
        "description": "binnen",
        "properties": {
          "_links": {
            "allOf": [
              {
                "description": "The contents of the `binnen._links` field. It contains all relationships with objects.",
                "properties": {
                  "schema": {
                    "description": "The schema field is exposed with every record",
                    "format": "uri",
                    "readOnly": true,
                    "type": "string"
                  },
                  "self": {
                    "description": "The identifier of the relationship to binnen.",
                    "properties": {
                      "href": {
                        "format": "uri",
                        "readOnly": true,
                        "type": "string"
                      },
                      "id": {
                        "description": "unieke identificatie van het record.",
                        "format": "int64",
                        "maximum": 9223372036854776000,
                        "minimum": -9223372036854776000,
                        "type": "integer"
                      },
                      "title": {
                        "type": "string"
                      }
                    },
                    "required": [
                      "href",
                      "id",
                      "title"
                    ],
                    "type": "object"
                  }
                },
                "required": [
                  "schema",
                  "self"
                ],
                "type": "object"
              }
            ],
            "title": " links"
          },
          "beleidskaderAuto": {
            "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
            "nullable": true,
            "type": "string"
          },
          "beleidskaderFiets": {
            "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
            "nullable": true,
            "type": "string"
          },
          "beleidskaderOv": {
            "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
            "nullable": true,
            "type": "string"
          },
          "geometry": {
            "allOf": [
              {
                "description": "GeoJSON geometry",
                "discriminator": {
                  "propertyName": "type"
                },
                "properties": {
                  "coordinates": {
                    "description": "Based on the geometry type, a point or collection of points.",
                    "items": {
                      "type": "number"
                    },
                    "minItems": 2,
                    "type": "array"
                  },
                  "type": {
                    "description": "the geometry type",
                    "enum": [
                      "Point",
                      "LineString",
                      "Polygon",
                      "MultiPoint",
                      "MultiLineString",
                      "MultiPolygon"
                    ],
                    "type": "string"
                  }
                },
                "required": [
                  "type"
                ],
                "type": "object"
              },
              {
                "properties": {
                  "coordinates": {
                    "items": {
                      "items": {
                        "description": "Point in 3D space",
                        "items": {
                          "type": "number"
                        },
                        "maxItems": 3,
                        "minItems": 2,
                        "type": "array"
                      },
                      "type": "array"
                    },
                    "type": "array"
                  },
                  "type": {
                    "enum": [
                      "MultiLineString"
                    ],
                    "type": "string"
                  }
                }
              }
            ],
            "description": "GeoJSON geometry",
            "type": "object"
          },
          "gevaarlijkeStoffenRoute": {
            "description": "indicator voor een route voor transport van routeplichtige gevaarlijke stoffen.",
            "nullable": true,
            "type": "boolean"
          },
          "id": {
            "description": "unieke identificatie van het record.",
            "format": "int64",
            "maximum": 9223372036854776000,
            "minimum": -9223372036854776000,
            "type": "integer"
          },
          "indicatieZoneAmsterdam": {
            "description": "indicator of link valt binnen of grotendeels binnen de gemeente Amsterdam.",
            "nullable": true,
            "type": "boolean"
          },
          "indicatieZoneMilieu": {
            "description": "indicator Verkeersbesluit milieuzone Amsterdam (Staatscourant 2020, 32736).",
            "nullable": true,
            "type": "boolean"
          },
          "indicatieZoneZwaarVerkeer": {
            "description": "indicator Verkeersbesluit Zone Zwaar Verkeer Amsterdam (Staatscourant 2021, 24726).",
            "nullable": true,
            "type": "string"
          },
          "laadLosRegime": {
            "description": "het type laden-en-lossen regime.",
            "nullable": true,
            "type": "string"
          },
          "laadLosVenstertijden": {
            "description": "toegestane tijdsperioden voor laden-en-lossen.",
            "nullable": true,
            "type": "string"
          },
          "laadLosVerbodStilTeStaanTijden": {
            "description": "dagen en tijden voor verbod laden-en-lossen en stilstaan.",
            "nullable": true,
            "type": "string"
          },
          "lengte": {
            "description": "lengte van de link in meters.",
            "format": "double",
            "nullable": true,
            "type": "number"
          },
          "linknummer": {
            "description": "unieke identificatie voor elke opgedeelde wegennetwerk object.",
            "format": "int64",
            "maximum": 9223372036854776000,
            "minimum": -9223372036854776000,
            "nullable": true,
            "type": "integer"
          },
          "percLijnInPolygoonWeg": {
            "description": "welke % van 'lijn lengte' binnen BGT polygonen liggen met een van de volgende functies: ('rijbaan regionale weg','rijbaan autoweg','OV-baan','rijbaan autosnelweg','woonerf','rijbaan lokale weg').",
            "format": "double",
            "nullable": true,
            "type": "number"
          },
          "rijrichting": {
            "description": "toegestane auto rijrichtingen van de weg.",
            "format": "int64",
            "maximum": 9223372036854776000,
            "minimum": -9223372036854776000,
            "nullable": true,
            "type": "integer"
          },
          "source": {
            "description": "nummer van source node van edge.",
            "format": "int64",
            "maximum": 9223372036854776000,
            "minimum": -9223372036854776000,
            "nullable": true,
            "type": "integer"
          },
          "straatnaam": {
            "description": "straatnaam die van toepassing is op wegennetwerk object.",
            "nullable": true,
            "type": "string"
          },
          "target": {
            "description": "nummer van target node van edge.",
            "format": "int64",
            "maximum": 9223372036854776000,
            "minimum": -9223372036854776000,
            "nullable": true,
            "type": "integer"
          },
          "tijdskostenBeginEind": {
            "description": "tijdskosten om van begin naar eind van link te gaan in seconden.",
            "format": "double",
            "nullable": true,
            "type": "number"
          },
          "tijdskostenEindBegin": {
            "description": "tijdskosten om van eind naar begin van link te gaan in seconden.",
            "format": "double",
            "nullable": true,
            "type": "number"
          },
          "tunnelCategorie": {
            "description": "een Europese categorisering voor tunnels met betrekking op het vervoer van gevaarlijke stoffen.",
            "nullable": true,
            "type": "string"
          },
          "tunnelNaam": {
            "description": "naam van de tunnel.",
            "nullable": true,
            "type": "string"
          },
          "wegFunctie": {
            "description": "functional road class; geeft de functie van weg.",
            "format": "int64",
            "maximum": 9223372036854776000,
            "minimum": -9223372036854776000,
            "nullable": true,
            "type": "integer"
          },
          "wegbeheerder": {
            "description": "wegbeheerder die hoort bij de weg.",
            "nullable": true,
            "type": "string"
          },
          "wettelijkeSnelheid": {
            "description": "wettelijke Snelheid die toegestaan is op weg. Bij verschillende waarde voor de 2 rijrichtingen gaat het om maximum.",
            "format": "int64",
            "maximum": 9223372036854776000,
            "minimum": -9223372036854776000,
            "nullable": true,
            "type": "integer"
          }
        },
        "required": [
          "_links",
          "id"
        ],
        "type": "object"
      },
      "WegenbestandZoneZwaarVerkeerbinnenLink": {
        "description": "The identifier of the relationship to binnen.",
        "properties": {
          "href": {
            "format": "uri",
            "readOnly": true,
            "type": "string"
          },
          "id": {
            "description": "unieke identificatie van het record.",
            "format": "int64",
            "maximum": 9223372036854776000,
            "minimum": -9223372036854776000,
            "type": "integer"
          },
          "title": {
            "type": "string"
          }
        },
        "required": [
          "href",
          "id",
          "title"
        ],
        "type": "object"
      },
      "WegenbestandZoneZwaarVerkeerbreed_opgezette_wegen": {
        "description": "breedOpgezetteWegen",
        "properties": {
          "_links": {
            "allOf": [
              {
                "description": "The contents of the `breedOpgezetteWegen._links` field. It contains all relationships with objects.",
                "properties": {
                  "schema": {
                    "description": "The schema field is exposed with every record",
                    "format": "uri",
                    "readOnly": true,
                    "type": "string"
                  },
                  "self": {
                    "description": "The identifier of the relationship to breedOpgezetteWegen.",
                    "properties": {
                      "href": {
                        "format": "uri",
                        "readOnly": true,
                        "type": "string"
                      },
                      "id": {
                        "description": "unieke identificatie van het record.",
                        "format": "int64",
                        "maximum": 9223372036854776000,
                        "minimum": -9223372036854776000,
                        "type": "integer"
                      },
                      "title": {
                        "type": "string"
                      }
                    },
                    "required": [
                      "href",
                      "id",
                      "title"
                    ],
                    "type": "object"
                  }
                },
                "required": [
                  "schema",
                  "self"
                ],
                "type": "object"
              }
            ],
            "title": " links"
          },
          "beleidskaderAuto": {
            "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
            "nullable": true,
            "type": "string"
          },
          "beleidskaderFiets": {
            "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
            "nullable": true,
            "type": "string"
          },
          "beleidskaderOv": {
            "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
            "nullable": true,
            "type": "string"
          },
          "geometry": {
            "allOf": [
              {
                "description": "GeoJSON geometry",
                "discriminator": {
                  "propertyName": "type"
                },
                "properties": {
                  "coordinates": {
                    "description": "Based on the geometry type, a point or collection of points.",
                    "items": {
                      "type": "number"
                    },
                    "minItems": 2,
                    "type": "array"
                  },
                  "type": {
                    "description": "the geometry type",
                    "enum": [
                      "Point",
                      "LineString",
                      "Polygon",
                      "MultiPoint",
                      "MultiLineString",
                      "MultiPolygon"
                    ],
                    "type": "string"
                  }
                },
                "required": [
                  "type"
                ],
                "type": "object"
              },
              {
                "properties": {
                  "coordinates": {
                    "items": {
                      "items": {
                        "description": "Point in 3D space",
                        "items": {
                          "type": "number"
                        },
                        "maxItems": 3,
                        "minItems": 2,
                        "type": "array"
                      },
                      "type": "array"
                    },
                    "type": "array"
                  },
                  "type": {
                    "enum": [
                      "MultiLineString"
                    ],
                    "type": "string"
                  }
                }
              }
            ],
            "description": "GeoJSON geometry",
            "type": "object"
          },
          "gevaarlijkeStoffenRoute": {
            "description": "indicator voor een route voor transport van routeplichtige gevaarlijke stoffen.",
            "nullable": true,
            "type": "boolean"
          },
          "id": {
            "description": "unieke identificatie van het record.",
            "format": "int64",
            "maximum": 9223372036854776000,
            "minimum": -9223372036854776000,
            "type": "integer"
          },
          "indicatieZoneAmsterdam": {
            "description": "indicator of link valt binnen of grotendeels binnen de gemeente Amsterdam.",
            "nullable": true,
            "type": "boolean"
          },
          "indicatieZoneMilieu": {
            "description": "indicator Verkeersbesluit milieuzone Amsterdam (Staatscourant 2020, 32736).",
            "nullable": true,
            "type": "boolean"
          },
          "indicatieZoneZwaarVerkeer": {
            "description": "indicator Verkeersbesluit Zone Zwaar Verkeer Amsterdam (Staatscourant 2021, 24726).",
            "nullable": true,
            "type": "string"
          },
          "laadLosRegime": {
            "description": "het type laden-en-lossen regime.",
            "nullable": true,
            "type": "string"
          },
          "laadLosVenstertijden": {
            "description": "toegestane tijdsperioden voor laden-en-lossen.",
            "nullable": true,
            "type": "string"
          },
          "laadLosVerbodStilTeStaanTijden": {
            "description": "dagen en tijden voor verbod laden-en-lossen en stilstaan.",
            "nullable": true,
            "type": "string"
          },
          "lengte": {
            "description": "lengte van de link in meters.",
            "format": "double",
            "nullable": true,
            "type": "number"
          },
          "linknummer": {
            "description": "unieke identificatie voor elke opgedeelde wegennetwerk object.",
            "format": "int64",
            "maximum": 9223372036854776000,
            "minimum": -9223372036854776000,
            "nullable": true,
            "type": "integer"
          },
          "percLijnInPolygoonWeg": {
            "description": "welke % van 'lijn lengte' binnen BGT polygonen liggen met een van de volgende functies: ('rijbaan regionale weg','rijbaan autoweg','OV-baan','rijbaan autosnelweg','woonerf','rijbaan lokale weg').",
            "format": "double",
            "nullable": true,
            "type": "number"
          },
          "rijrichting": {
            "description": "toegestane auto rijrichtingen van de weg.",
            "format": "int64",
            "maximum": 9223372036854776000,
            "minimum": -9223372036854776000,
            "nullable": true,
            "type": "integer"
          },
          "source": {
            "description": "nummer van source node van edge.",
            "format": "int64",
            "maximum": 9223372036854776000,
            "minimum": -9223372036854776000,
            "nullable": true,
            "type": "integer"
          },
          "straatnaam": {
            "description": "straatnaam die van toepassing is op wegennetwerk object.",
            "nullable": true,
            "type": "string"
          },
          "target": {
            "description": "nummer van target node van edge.",
            "format": "int64",
            "maximum": 9223372036854776000,
            "minimum": -9223372036854776000,
            "nullable": true,
            "type": "integer"
          },
          "tijdskostenBeginEind": {
            "description": "tijdskosten om van begin naar eind van link te gaan in seconden.",
            "format": "double",
            "nullable": true,
            "type": "number"
          },
          "tijdskostenEindBegin": {
            "description": "tijdskosten om van eind naar begin van link te gaan in seconden.",
            "format": "double",
            "nullable": true,
            "type": "number"
          },
          "tunnelCategorie": {
            "description": "een Europese categorisering voor tunnels met betrekking op het vervoer van gevaarlijke stoffen.",
            "nullable": true,
            "type": "string"
          },
          "tunnelNaam": {
            "description": "naam van de tunnel.",
            "nullable": true,
            "type": "string"
          },
          "wegFunctie": {
            "description": "functional road class; geeft de functie van weg.",
            "format": "int64",
            "maximum": 9223372036854776000,
            "minimum": -9223372036854776000,
            "nullable": true,
            "type": "integer"
          },
          "wegbeheerder": {
            "description": "wegbeheerder die hoort bij de weg.",
            "nullable": true,
            "type": "string"
          },
          "wettelijkeSnelheid": {
            "description": "wettelijke Snelheid die toegestaan is op weg. Bij verschillende waarde voor de 2 rijrichtingen gaat het om maximum.",
            "format": "int64",
            "maximum": 9223372036854776000,
            "minimum": -9223372036854776000,
            "nullable": true,
            "type": "integer"
          }
        },
        "required": [
          "_links",
          "id"
        ],
        "type": "object"
      },
      "WegenbestandZoneZwaarVerkeerbreed_opgezette_wegenLink": {
        "description": "The identifier of the relationship to breedOpgezetteWegen.",
        "properties": {
          "href": {
            "format": "uri",
            "readOnly": true,
            "type": "string"
          },
          "id": {
            "description": "unieke identificatie van het record.",
            "format": "int64",
            "maximum": 9223372036854776000,
            "minimum": -9223372036854776000,
            "type": "integer"
          },
          "title": {
            "type": "string"
          }
        },
        "required": [
          "href",
          "id",
          "title"
        ],
        "type": "object"
      },
      "WegenbestandZoneZwaarVerkeerbuiten": {
        "description": "buiten",
        "properties": {
          "_links": {
            "allOf": [
              {
                "description": "The contents of the `buiten._links` field. It contains all relationships with objects.",
                "properties": {
                  "schema": {
                    "description": "The schema field is exposed with every record",
                    "format": "uri",
                    "readOnly": true,
                    "type": "string"
                  },
                  "self": {
                    "description": "The identifier of the relationship to buiten.",
                    "properties": {
                      "href": {
                        "format": "uri",
                        "readOnly": true,
                        "type": "string"
                      },
                      "id": {
                        "description": "unieke identificatie van het record.",
                        "format": "int64",
                        "maximum": 9223372036854776000,
                        "minimum": -9223372036854776000,
                        "type": "integer"
                      },
                      "title": {
                        "type": "string"
                      }
                    },
                    "required": [
                      "href",
                      "id",
                      "title"
                    ],
                    "type": "object"
                  }
                },
                "required": [
                  "schema",
                  "self"
                ],
                "type": "object"
              }
            ],
            "title": " links"
          },
          "beleidskaderAuto": {
            "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
            "nullable": true,
            "type": "string"
          },
          "beleidskaderFiets": {
            "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
            "nullable": true,
            "type": "string"
          },
          "beleidskaderOv": {
            "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
            "nullable": true,
            "type": "string"
          },
          "geometry": {
            "allOf": [
              {
                "description": "GeoJSON geometry",
                "discriminator": {
                  "propertyName": "type"
                },
                "properties": {
                  "coordinates": {
                    "description": "Based on the geometry type, a point or collection of points.",
                    "items": {
                      "type": "number"
                    },
                    "minItems": 2,
                    "type": "array"
                  },
                  "type": {
                    "description": "the geometry type",
                    "enum": [
                      "Point",
                      "LineString",
                      "Polygon",
                      "MultiPoint",
                      "MultiLineString",
                      "MultiPolygon"
                    ],
                    "type": "string"
                  }
                },
                "required": [
                  "type"
                ],
                "type": "object"
              },
              {
                "properties": {
                  "coordinates": {
                    "items": {
                      "items": {
                        "description": "Point in 3D space",
                        "items": {
                          "type": "number"
                        },
                        "maxItems": 3,
                        "minItems": 2,
                        "type": "array"
                      },
                      "type": "array"
                    },
                    "type": "array"
                  },
                  "type": {
                    "enum": [
                      "MultiLineString"
                    ],
                    "type": "string"
                  }
                }
              }
            ],
            "description": "GeoJSON geometry",
            "type": "object"
          },
          "gevaarlijkeStoffenRoute": {
            "description": "indicator voor een route voor transport van routeplichtige gevaarlijke stoffen.",
            "nullable": true,
            "type": "boolean"
          },
          "id": {
            "description": "unieke identificatie van het record.",
            "format": "int64",
            "maximum": 9223372036854776000,
            "minimum": -9223372036854776000,
            "type": "integer"
          },
          "indicatieZoneAmsterdam": {
            "description": "indicator of link valt binnen of grotendeels binnen de gemeente Amsterdam.",
            "nullable": true,
            "type": "boolean"
          },
          "indicatieZoneMilieu": {
            "description": "indicator Verkeersbesluit milieuzone Amsterdam (Staatscourant 2020, 32736).",
            "nullable": true,
            "type": "boolean"
          },
          "indicatieZoneZwaarVerkeer": {
            "description": "indicator Verkeersbesluit Zone Zwaar Verkeer Amsterdam (Staatscourant 2021, 24726).",
            "nullable": true,
            "type": "string"
          },
          "laadLosRegime": {
            "description": "het type laden-en-lossen regime.",
            "nullable": true,
            "type": "string"
          },
          "laadLosVenstertijden": {
            "description": "toegestane tijdsperioden voor laden-en-lossen.",
            "nullable": true,
            "type": "string"
          },
          "laadLosVerbodStilTeStaanTijden": {
            "description": "dagen en tijden voor verbod laden-en-lossen en stilstaan.",
            "nullable": true,
            "type": "string"
          },
          "lengte": {
            "description": "lengte van de link in meters.",
            "format": "double",
            "nullable": true,
            "type": "number"
          },
          "linknummer": {
            "description": "unieke identificatie voor elke opgedeelde wegennetwerk object.",
            "format": "int64",
            "maximum": 9223372036854776000,
            "minimum": -9223372036854776000,
            "nullable": true,
            "type": "integer"
          },
          "percLijnInPolygoonWeg": {
            "description": "welke % van 'lijn lengte' binnen BGT polygonen liggen met een van de volgende functies: ('rijbaan regionale weg','rijbaan autoweg','OV-baan','rijbaan autosnelweg','woonerf','rijbaan lokale weg').",
            "format": "double",
            "nullable": true,
            "type": "number"
          },
          "rijrichting": {
            "description": "toegestane auto rijrichtingen van de weg.",
            "format": "int64",
            "maximum": 9223372036854776000,
            "minimum": -9223372036854776000,
            "nullable": true,
            "type": "integer"
          },
          "source": {
            "description": "nummer van source node van edge.",
            "format": "int64",
            "maximum": 9223372036854776000,
            "minimum": -9223372036854776000,
            "nullable": true,
            "type": "integer"
          },
          "straatnaam": {
            "description": "straatnaam die van toepassing is op wegennetwerk object.",
            "nullable": true,
            "type": "string"
          },
          "target": {
            "description": "nummer van target node van edge.",
            "format": "int64",
            "maximum": 9223372036854776000,
            "minimum": -9223372036854776000,
            "nullable": true,
            "type": "integer"
          },
          "tijdskostenBeginEind": {
            "description": "tijdskosten om van begin naar eind van link te gaan in seconden.",
            "format": "double",
            "nullable": true,
            "type": "number"
          },
          "tijdskostenEindBegin": {
            "description": "tijdskosten om van eind naar begin van link te gaan in seconden.",
            "format": "double",
            "nullable": true,
            "type": "number"
          },
          "tunnelCategorie": {
            "description": "een Europese categorisering voor tunnels met betrekking op het vervoer van gevaarlijke stoffen.",
            "nullable": true,
            "type": "string"
          },
          "tunnelNaam": {
            "description": "naam van de tunnel.",
            "nullable": true,
            "type": "string"
          },
          "wegFunctie": {
            "description": "functional road class; geeft de functie van weg.",
            "format": "int64",
            "maximum": 9223372036854776000,
            "minimum": -9223372036854776000,
            "nullable": true,
            "type": "integer"
          },
          "wegbeheerder": {
            "description": "wegbeheerder die hoort bij de weg.",
            "nullable": true,
            "type": "string"
          },
          "wettelijkeSnelheid": {
            "description": "wettelijke Snelheid die toegestaan is op weg. Bij verschillende waarde voor de 2 rijrichtingen gaat het om maximum.",
            "format": "int64",
            "maximum": 9223372036854776000,
            "minimum": -9223372036854776000,
            "nullable": true,
            "type": "integer"
          }
        },
        "required": [
          "_links",
          "id"
        ],
        "type": "object"
      },
      "WegenbestandZoneZwaarVerkeerbuitenLink": {
        "description": "The identifier of the relationship to buiten.",
        "properties": {
          "href": {
            "format": "uri",
            "readOnly": true,
            "type": "string"
          },
          "id": {
            "description": "unieke identificatie van het record.",
            "format": "int64",
            "maximum": 9223372036854776000,
            "minimum": -9223372036854776000,
            "type": "integer"
          },
          "title": {
            "type": "string"
          }
        },
        "required": [
          "href",
          "id",
          "title"
        ],
        "type": "object"
      },
      "WegenbestandZoneZwaarVerkeerdefaultBinnenLinks": {
        "description": "The contents of the `binnen._links` field. It contains all relationships with objects.",
        "properties": {
          "schema": {
            "description": "The schema field is exposed with every record",
            "format": "uri",
            "readOnly": true,
            "type": "string"
          },
          "self": {
            "description": "The identifier of the relationship to binnen.",
            "properties": {
              "href": {
                "format": "uri",
                "readOnly": true,
                "type": "string"
              },
              "id": {
                "description": "unieke identificatie van het record.",
                "format": "int64",
                "maximum": 9223372036854776000,
                "minimum": -9223372036854776000,
                "type": "integer"
              },
              "title": {
                "type": "string"
              }
            },
            "required": [
              "href",
              "id",
              "title"
            ],
            "type": "object"
          }
        },
        "required": [
          "schema",
          "self"
        ],
        "type": "object"
      },
      "WegenbestandZoneZwaarVerkeerdefaultBreedOpgezetteWegenLinks": {
        "description": "The contents of the `breedOpgezetteWegen._links` field. It contains all relationships with objects.",
        "properties": {
          "schema": {
            "description": "The schema field is exposed with every record",
            "format": "uri",
            "readOnly": true,
            "type": "string"
          },
          "self": {
            "description": "The identifier of the relationship to breedOpgezetteWegen.",
            "properties": {
              "href": {
                "format": "uri",
                "readOnly": true,
                "type": "string"
              },
              "id": {
                "description": "unieke identificatie van het record.",
                "format": "int64",
                "maximum": 9223372036854776000,
                "minimum": -9223372036854776000,
                "type": "integer"
              },
              "title": {
                "type": "string"
              }
            },
            "required": [
              "href",
              "id",
              "title"
            ],
            "type": "object"
          }
        },
        "required": [
          "schema",
          "self"
        ],
        "type": "object"
      },
      "WegenbestandZoneZwaarVerkeerdefaultBuitenLinks": {
        "description": "The contents of the `buiten._links` field. It contains all relationships with objects.",
        "properties": {
          "schema": {
            "description": "The schema field is exposed with every record",
            "format": "uri",
            "readOnly": true,
            "type": "string"
          },
          "self": {
            "description": "The identifier of the relationship to buiten.",
            "properties": {
              "href": {
                "format": "uri",
                "readOnly": true,
                "type": "string"
              },
              "id": {
                "description": "unieke identificatie van het record.",
                "format": "int64",
                "maximum": 9223372036854776000,
                "minimum": -9223372036854776000,
                "type": "integer"
              },
              "title": {
                "type": "string"
              }
            },
            "required": [
              "href",
              "id",
              "title"
            ],
            "type": "object"
          }
        },
        "required": [
          "schema",
          "self"
        ],
        "type": "object"
      }
    },
    "securitySchemes": {
      "oauth2": {
        "flows": {
          "implicit": {
            "authorizationUrl": "https://iam.amsterdam.nl/auth/realms/datapunt-ad/protocol/openid-connect/auth",
            "scopes": {}
          }
        },
        "type": "oauth2"
      }
    }
  },
  "externalDocs": {
    "description": "API Usage Documentation",
    "url": "https://api.data.amsterdam.nl/v1/docs/datasets/wegenbestand/zone_zwaar_verkeer.html"
  },
  "info": {
    "contact": {
      "email": "datapunt@amsterdam.nl"
    },
    "description": "Wegen die al dan niet vallen onder zwaar verkeer zones waarvoor mogelijk ontheffing moet worden aangevraagd.",
    "license": {
      "name": "Creative Commons, Naamsvermelding"
    },
    "termsOfService": "https://data.amsterdam.nl/",
    "title": "Wegenbestand gemeente Amsterdam",
    "version": "1.0.0"
  },
  "openapi": "3.1.0",
  "paths": {
    "/binnen": {
      "get": {
        "operationId": "wegenbestand_zone_zwaar_verkeer_binnen_list",
        "parameters": [
          {
            "description": "Accept-Crs header for Geo queries",
            "in": "header",
            "name": "Accept-Crs",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Content-Crs header for Geo queries",
            "in": "header",
            "name": "Content-Crs",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Api Key for statistical purposes, not for authentication",
            "in": "header",
            "name": "X-Api-Key",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Include a count of the total result set and the number of pages.Only works for responses that return a page.",
            "in": "query",
            "name": "_count",
            "required": false,
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Specify type of header for csv file",
            "in": "query",
            "name": "_csv_header",
            "schema": {
              "enum": [
                "id",
                "title",
                "none"
              ],
              "type": "string"
            }
          },
          {
            "description": "Specify type of separator for csv file",
            "in": "query",
            "name": "_csv_separator",
            "schema": {
              "enum": [
                ",",
                ";"
              ],
              "type": "string"
            }
          },
          {
            "description": "Allow to expand relations.",
            "in": "query",
            "name": "_expand",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Comma separated list of named relations to expand.",
            "in": "query",
            "name": "_expandScope",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Comma-separated list of fields to display",
            "in": "query",
            "name": "_fields",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Select the export format",
            "in": "query",
            "name": "_format",
            "schema": {
              "enum": [
                "json",
                "csv",
                "geojson"
              ],
              "type": "string"
            }
          },
          {
            "description": "Number of results to return per page.",
            "in": "query",
            "name": "_pageSize",
            "required": false,
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Which field to use when ordering the results.",
            "in": "query",
            "name": "_sort",
            "required": false,
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
            "in": "query",
            "name": "beleidskaderAuto",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "beleidskaderAuto[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "beleidskaderAuto[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "beleidskaderAuto[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "beleidskaderAuto[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "beleidskaderAuto[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
            "in": "query",
            "name": "beleidskaderFiets",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "beleidskaderFiets[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "beleidskaderFiets[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "beleidskaderFiets[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "beleidskaderFiets[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "beleidskaderFiets[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
            "in": "query",
            "name": "beleidskaderOv",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "beleidskaderOv[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "beleidskaderOv[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "beleidskaderOv[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "beleidskaderOv[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "beleidskaderOv[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "indicator voor een route voor transport van routeplichtige gevaarlijke stoffen.",
            "in": "query",
            "name": "gevaarlijkeStoffenRoute",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "gevaarlijkeStoffenRoute[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "unieke identificatie van het record.",
            "in": "query",
            "name": "id",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "id[gt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "id[gte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "id[in]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "id[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "id[lt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "id[lte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "id[not]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            }
          },
          {
            "description": "indicator of link valt binnen of grotendeels binnen de gemeente Amsterdam.",
            "in": "query",
            "name": "indicatieZoneAmsterdam",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "indicatieZoneAmsterdam[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "indicator Verkeersbesluit milieuzone Amsterdam (Staatscourant 2020, 32736).",
            "in": "query",
            "name": "indicatieZoneMilieu",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "indicatieZoneMilieu[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "indicator Verkeersbesluit Zone Zwaar Verkeer Amsterdam (Staatscourant 2021, 24726).",
            "in": "query",
            "name": "indicatieZoneZwaarVerkeer",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "indicatieZoneZwaarVerkeer[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "indicatieZoneZwaarVerkeer[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "indicatieZoneZwaarVerkeer[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "indicatieZoneZwaarVerkeer[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "indicatieZoneZwaarVerkeer[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "het type laden-en-lossen regime.",
            "in": "query",
            "name": "laadLosRegime",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "laadLosRegime[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "laadLosRegime[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "laadLosRegime[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "laadLosRegime[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "laadLosRegime[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "toegestane tijdsperioden voor laden-en-lossen.",
            "in": "query",
            "name": "laadLosVenstertijden",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "laadLosVenstertijden[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "laadLosVenstertijden[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "laadLosVenstertijden[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "laadLosVenstertijden[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "laadLosVenstertijden[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "dagen en tijden voor verbod laden-en-lossen en stilstaan.",
            "in": "query",
            "name": "laadLosVerbodStilTeStaanTijden",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "laadLosVerbodStilTeStaanTijden[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "laadLosVerbodStilTeStaanTijden[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "laadLosVerbodStilTeStaanTijden[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "laadLosVerbodStilTeStaanTijden[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "laadLosVerbodStilTeStaanTijden[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "lengte van de link in meters.",
            "in": "query",
            "name": "lengte",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "lengte[gt]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "lengte[gte]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "lengte[in]",
            "schema": {
              "items": {
                "type": "number"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "lengte[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "lengte[lt]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "lengte[lte]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "lengte[not]",
            "schema": {
              "items": {
                "type": "number"
              },
              "type": "array"
            }
          },
          {
            "description": "unieke identificatie voor elke opgedeelde wegennetwerk object.",
            "in": "query",
            "name": "linknummer",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "linknummer[gt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "linknummer[gte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "linknummer[in]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "linknummer[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "linknummer[lt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "linknummer[lte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "linknummer[not]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            }
          },
          {
            "description": "A page number within the paginated result set.",
            "in": "query",
            "name": "page",
            "required": false,
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "welke % van 'lijn lengte' binnen BGT polygonen liggen met een van de volgende functies: ('rijbaan regionale weg','rijbaan autoweg','OV-baan','rijbaan autosnelweg','woonerf','rijbaan lokale weg').",
            "in": "query",
            "name": "percLijnInPolygoonWeg",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "percLijnInPolygoonWeg[gt]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "percLijnInPolygoonWeg[gte]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "percLijnInPolygoonWeg[in]",
            "schema": {
              "items": {
                "type": "number"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "percLijnInPolygoonWeg[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "percLijnInPolygoonWeg[lt]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "percLijnInPolygoonWeg[lte]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "percLijnInPolygoonWeg[not]",
            "schema": {
              "items": {
                "type": "number"
              },
              "type": "array"
            }
          },
          {
            "description": "toegestane auto rijrichtingen van de weg.",
            "in": "query",
            "name": "rijrichting",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "rijrichting[gt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "rijrichting[gte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "rijrichting[in]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "rijrichting[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "rijrichting[lt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "rijrichting[lte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "rijrichting[not]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            }
          },
          {
            "description": "nummer van source node van edge.",
            "in": "query",
            "name": "source",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "source[gt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "source[gte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "source[in]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "source[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "source[lt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "source[lte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "source[not]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            }
          },
          {
            "description": "straatnaam die van toepassing is op wegennetwerk object.",
            "in": "query",
            "name": "straatnaam",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "straatnaam[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "straatnaam[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "straatnaam[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "straatnaam[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "straatnaam[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "nummer van target node van edge.",
            "in": "query",
            "name": "target",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "target[gt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "target[gte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "target[in]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "target[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "target[lt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "target[lte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "target[not]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            }
          },
          {
            "description": "tijdskosten om van begin naar eind van link te gaan in seconden.",
            "in": "query",
            "name": "tijdskostenBeginEind",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "tijdskostenBeginEind[gt]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "tijdskostenBeginEind[gte]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "tijdskostenBeginEind[in]",
            "schema": {
              "items": {
                "type": "number"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "tijdskostenBeginEind[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "tijdskostenBeginEind[lt]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "tijdskostenBeginEind[lte]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "tijdskostenBeginEind[not]",
            "schema": {
              "items": {
                "type": "number"
              },
              "type": "array"
            }
          },
          {
            "description": "tijdskosten om van eind naar begin van link te gaan in seconden.",
            "in": "query",
            "name": "tijdskostenEindBegin",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "tijdskostenEindBegin[gt]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "tijdskostenEindBegin[gte]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "tijdskostenEindBegin[in]",
            "schema": {
              "items": {
                "type": "number"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "tijdskostenEindBegin[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "tijdskostenEindBegin[lt]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "tijdskostenEindBegin[lte]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "tijdskostenEindBegin[not]",
            "schema": {
              "items": {
                "type": "number"
              },
              "type": "array"
            }
          },
          {
            "description": "een Europese categorisering voor tunnels met betrekking op het vervoer van gevaarlijke stoffen.",
            "in": "query",
            "name": "tunnelCategorie",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "tunnelCategorie[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "tunnelCategorie[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "tunnelCategorie[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "tunnelCategorie[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "tunnelCategorie[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "naam van de tunnel.",
            "in": "query",
            "name": "tunnelNaam",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "tunnelNaam[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "tunnelNaam[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "tunnelNaam[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "tunnelNaam[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "tunnelNaam[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "functional road class; geeft de functie van weg.",
            "in": "query",
            "name": "wegFunctie",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "wegFunctie[gt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "wegFunctie[gte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "wegFunctie[in]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "wegFunctie[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "wegFunctie[lt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "wegFunctie[lte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "wegFunctie[not]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            }
          },
          {
            "description": "wegbeheerder die hoort bij de weg.",
            "in": "query",
            "name": "wegbeheerder",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "wegbeheerder[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "wegbeheerder[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "wegbeheerder[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "wegbeheerder[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "wegbeheerder[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "wettelijke Snelheid die toegestaan is op weg. Bij verschillende waarde voor de 2 rijrichtingen gaat het om maximum.",
            "in": "query",
            "name": "wettelijkeSnelheid",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "wettelijkeSnelheid[gt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "wettelijkeSnelheid[gte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "wettelijkeSnelheid[in]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "wettelijkeSnelheid[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "wettelijkeSnelheid[lt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "wettelijkeSnelheid[lte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "wettelijkeSnelheid[not]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/geo+json": {
                "schema": {
                  "properties": {
                    "_embedded": {
                      "properties": {
                        "binnen": {
                          "items": {
                            "description": "binnen",
                            "properties": {
                              "_links": {
                                "allOf": [
                                  {
                                    "description": "The contents of the `binnen._links` field. It contains all relationships with objects.",
                                    "properties": {
                                      "schema": {
                                        "description": "The schema field is exposed with every record",
                                        "format": "uri",
                                        "readOnly": true,
                                        "type": "string"
                                      },
                                      "self": {
                                        "description": "The identifier of the relationship to binnen.",
                                        "properties": {
                                          "href": {
                                            "format": "uri",
                                            "readOnly": true,
                                            "type": "string"
                                          },
                                          "id": {
                                            "description": "unieke identificatie van het record.",
                                            "format": "int64",
                                            "maximum": 9223372036854776000,
                                            "minimum": -9223372036854776000,
                                            "type": "integer"
                                          },
                                          "title": {
                                            "type": "string"
                                          }
                                        },
                                        "required": [
                                          "href",
                                          "id",
                                          "title"
                                        ],
                                        "type": "object"
                                      }
                                    },
                                    "required": [
                                      "schema",
                                      "self"
                                    ],
                                    "type": "object"
                                  }
                                ],
                                "title": " links"
                              },
                              "beleidskaderAuto": {
                                "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
                                "nullable": true,
                                "type": "string"
                              },
                              "beleidskaderFiets": {
                                "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
                                "nullable": true,
                                "type": "string"
                              },
                              "beleidskaderOv": {
                                "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
                                "nullable": true,
                                "type": "string"
                              },
                              "geometry": {
                                "allOf": [
                                  {
                                    "description": "GeoJSON geometry",
                                    "discriminator": {
                                      "propertyName": "type"
                                    },
                                    "properties": {
                                      "coordinates": {
                                        "description": "Based on the geometry type, a point or collection of points.",
                                        "items": {
                                          "type": "number"
                                        },
                                        "minItems": 2,
                                        "type": "array"
                                      },
                                      "type": {
                                        "description": "the geometry type",
                                        "enum": [
                                          "Point",
                                          "LineString",
                                          "Polygon",
                                          "MultiPoint",
                                          "MultiLineString",
                                          "MultiPolygon"
                                        ],
                                        "type": "string"
                                      }
                                    },
                                    "required": [
                                      "type"
                                    ],
                                    "type": "object"
                                  },
                                  {
                                    "properties": {
                                      "coordinates": {
                                        "items": {
                                          "items": {
                                            "description": "Point in 3D space",
                                            "items": {
                                              "type": "number"
                                            },
                                            "maxItems": 3,
                                            "minItems": 2,
                                            "type": "array"
                                          },
                                          "type": "array"
                                        },
                                        "type": "array"
                                      },
                                      "type": {
                                        "enum": [
                                          "MultiLineString"
                                        ],
                                        "type": "string"
                                      }
                                    }
                                  }
                                ],
                                "description": "GeoJSON geometry",
                                "type": "object"
                              },
                              "gevaarlijkeStoffenRoute": {
                                "description": "indicator voor een route voor transport van routeplichtige gevaarlijke stoffen.",
                                "nullable": true,
                                "type": "boolean"
                              },
                              "id": {
                                "description": "unieke identificatie van het record.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "type": "integer"
                              },
                              "indicatieZoneAmsterdam": {
                                "description": "indicator of link valt binnen of grotendeels binnen de gemeente Amsterdam.",
                                "nullable": true,
                                "type": "boolean"
                              },
                              "indicatieZoneMilieu": {
                                "description": "indicator Verkeersbesluit milieuzone Amsterdam (Staatscourant 2020, 32736).",
                                "nullable": true,
                                "type": "boolean"
                              },
                              "indicatieZoneZwaarVerkeer": {
                                "description": "indicator Verkeersbesluit Zone Zwaar Verkeer Amsterdam (Staatscourant 2021, 24726).",
                                "nullable": true,
                                "type": "string"
                              },
                              "laadLosRegime": {
                                "description": "het type laden-en-lossen regime.",
                                "nullable": true,
                                "type": "string"
                              },
                              "laadLosVenstertijden": {
                                "description": "toegestane tijdsperioden voor laden-en-lossen.",
                                "nullable": true,
                                "type": "string"
                              },
                              "laadLosVerbodStilTeStaanTijden": {
                                "description": "dagen en tijden voor verbod laden-en-lossen en stilstaan.",
                                "nullable": true,
                                "type": "string"
                              },
                              "lengte": {
                                "description": "lengte van de link in meters.",
                                "format": "double",
                                "nullable": true,
                                "type": "number"
                              },
                              "linknummer": {
                                "description": "unieke identificatie voor elke opgedeelde wegennetwerk object.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "nullable": true,
                                "type": "integer"
                              },
                              "percLijnInPolygoonWeg": {
                                "description": "welke % van 'lijn lengte' binnen BGT polygonen liggen met een van de volgende functies: ('rijbaan regionale weg','rijbaan autoweg','OV-baan','rijbaan autosnelweg','woonerf','rijbaan lokale weg').",
                                "format": "double",
                                "nullable": true,
                                "type": "number"
                              },
                              "rijrichting": {
                                "description": "toegestane auto rijrichtingen van de weg.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "nullable": true,
                                "type": "integer"
                              },
                              "source": {
                                "description": "nummer van source node van edge.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "nullable": true,
                                "type": "integer"
                              },
                              "straatnaam": {
                                "description": "straatnaam die van toepassing is op wegennetwerk object.",
                                "nullable": true,
                                "type": "string"
                              },
                              "target": {
                                "description": "nummer van target node van edge.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "nullable": true,
                                "type": "integer"
                              },
                              "tijdskostenBeginEind": {
                                "description": "tijdskosten om van begin naar eind van link te gaan in seconden.",
                                "format": "double",
                                "nullable": true,
                                "type": "number"
                              },
                              "tijdskostenEindBegin": {
                                "description": "tijdskosten om van eind naar begin van link te gaan in seconden.",
                                "format": "double",
                                "nullable": true,
                                "type": "number"
                              },
                              "tunnelCategorie": {
                                "description": "een Europese categorisering voor tunnels met betrekking op het vervoer van gevaarlijke stoffen.",
                                "nullable": true,
                                "type": "string"
                              },
                              "tunnelNaam": {
                                "description": "naam van de tunnel.",
                                "nullable": true,
                                "type": "string"
                              },
                              "wegFunctie": {
                                "description": "functional road class; geeft de functie van weg.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "nullable": true,
                                "type": "integer"
                              },
                              "wegbeheerder": {
                                "description": "wegbeheerder die hoort bij de weg.",
                                "nullable": true,
                                "type": "string"
                              },
                              "wettelijkeSnelheid": {
                                "description": "wettelijke Snelheid die toegestaan is op weg. Bij verschillende waarde voor de 2 rijrichtingen gaat het om maximum.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "nullable": true,
                                "type": "integer"
                              }
                            },
                            "required": [
                              "_links",
                              "id"
                            ],
                            "type": "object"
                          },
                          "type": "array"
                        }
                      },
                      "type": "object"
                    },
                    "_links": {
                      "properties": {
                        "next": {
                          "properties": {
                            "href": {
                              "example": "https://api.data.amsterdam.nl/v1/.../resource/?page=4",
                              "format": "uri",
                              "nullable": true,
                              "type": "string"
                            }
                          },
                          "type": "object"
                        },
                        "previous": {
                          "properties": {
                            "href": {
                              "example": "https://api.data.amsterdam.nl/v1/.../resource/?page=2",
                              "format": "uri",
                              "nullable": true,
                              "type": "string"
                            }
                          },
                          "type": "object"
                        },
                        "self": {
                          "properties": {
                            "href": {
                              "example": "https://api.data.amsterdam.nl/v1/.../resource/?page=3",
                              "format": "uri",
                              "type": "string"
                            }
                          },
                          "type": "object"
                        }
                      },
                      "type": "object"
                    },
                    "page": {
                      "properties": {
                        "number": {
                          "example": 3,
                          "type": "integer"
                        },
                        "size": {
                          "example": 20,
                          "type": "integer"
                        },
                        "totalElements": {
                          "example": 5,
                          "type": "integer"
                        },
                        "totalPages": {
                          "example": 3,
                          "type": "integer"
                        }
                      },
                      "type": "object"
                    }
                  },
                  "type": "object"
                }
              },
              "application/hal+json": {
                "schema": {
                  "properties": {
                    "_embedded": {
                      "properties": {
                        "binnen": {
                          "items": {
                            "description": "binnen",
                            "properties": {
                              "_links": {
                                "allOf": [
                                  {
                                    "description": "The contents of the `binnen._links` field. It contains all relationships with objects.",
                                    "properties": {
                                      "schema": {
                                        "description": "The schema field is exposed with every record",
                                        "format": "uri",
                                        "readOnly": true,
                                        "type": "string"
                                      },
                                      "self": {
                                        "description": "The identifier of the relationship to binnen.",
                                        "properties": {
                                          "href": {
                                            "format": "uri",
                                            "readOnly": true,
                                            "type": "string"
                                          },
                                          "id": {
                                            "description": "unieke identificatie van het record.",
                                            "format": "int64",
                                            "maximum": 9223372036854776000,
                                            "minimum": -9223372036854776000,
                                            "type": "integer"
                                          },
                                          "title": {
                                            "type": "string"
                                          }
                                        },
                                        "required": [
                                          "href",
                                          "id",
                                          "title"
                                        ],
                                        "type": "object"
                                      }
                                    },
                                    "required": [
                                      "schema",
                                      "self"
                                    ],
                                    "type": "object"
                                  }
                                ],
                                "title": " links"
                              },
                              "beleidskaderAuto": {
                                "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
                                "nullable": true,
                                "type": "string"
                              },
                              "beleidskaderFiets": {
                                "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
                                "nullable": true,
                                "type": "string"
                              },
                              "beleidskaderOv": {
                                "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
                                "nullable": true,
                                "type": "string"
                              },
                              "geometry": {
                                "allOf": [
                                  {
                                    "description": "GeoJSON geometry",
                                    "discriminator": {
                                      "propertyName": "type"
                                    },
                                    "properties": {
                                      "coordinates": {
                                        "description": "Based on the geometry type, a point or collection of points.",
                                        "items": {
                                          "type": "number"
                                        },
                                        "minItems": 2,
                                        "type": "array"
                                      },
                                      "type": {
                                        "description": "the geometry type",
                                        "enum": [
                                          "Point",
                                          "LineString",
                                          "Polygon",
                                          "MultiPoint",
                                          "MultiLineString",
                                          "MultiPolygon"
                                        ],
                                        "type": "string"
                                      }
                                    },
                                    "required": [
                                      "type"
                                    ],
                                    "type": "object"
                                  },
                                  {
                                    "properties": {
                                      "coordinates": {
                                        "items": {
                                          "items": {
                                            "description": "Point in 3D space",
                                            "items": {
                                              "type": "number"
                                            },
                                            "maxItems": 3,
                                            "minItems": 2,
                                            "type": "array"
                                          },
                                          "type": "array"
                                        },
                                        "type": "array"
                                      },
                                      "type": {
                                        "enum": [
                                          "MultiLineString"
                                        ],
                                        "type": "string"
                                      }
                                    }
                                  }
                                ],
                                "description": "GeoJSON geometry",
                                "type": "object"
                              },
                              "gevaarlijkeStoffenRoute": {
                                "description": "indicator voor een route voor transport van routeplichtige gevaarlijke stoffen.",
                                "nullable": true,
                                "type": "boolean"
                              },
                              "id": {
                                "description": "unieke identificatie van het record.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "type": "integer"
                              },
                              "indicatieZoneAmsterdam": {
                                "description": "indicator of link valt binnen of grotendeels binnen de gemeente Amsterdam.",
                                "nullable": true,
                                "type": "boolean"
                              },
                              "indicatieZoneMilieu": {
                                "description": "indicator Verkeersbesluit milieuzone Amsterdam (Staatscourant 2020, 32736).",
                                "nullable": true,
                                "type": "boolean"
                              },
                              "indicatieZoneZwaarVerkeer": {
                                "description": "indicator Verkeersbesluit Zone Zwaar Verkeer Amsterdam (Staatscourant 2021, 24726).",
                                "nullable": true,
                                "type": "string"
                              },
                              "laadLosRegime": {
                                "description": "het type laden-en-lossen regime.",
                                "nullable": true,
                                "type": "string"
                              },
                              "laadLosVenstertijden": {
                                "description": "toegestane tijdsperioden voor laden-en-lossen.",
                                "nullable": true,
                                "type": "string"
                              },
                              "laadLosVerbodStilTeStaanTijden": {
                                "description": "dagen en tijden voor verbod laden-en-lossen en stilstaan.",
                                "nullable": true,
                                "type": "string"
                              },
                              "lengte": {
                                "description": "lengte van de link in meters.",
                                "format": "double",
                                "nullable": true,
                                "type": "number"
                              },
                              "linknummer": {
                                "description": "unieke identificatie voor elke opgedeelde wegennetwerk object.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "nullable": true,
                                "type": "integer"
                              },
                              "percLijnInPolygoonWeg": {
                                "description": "welke % van 'lijn lengte' binnen BGT polygonen liggen met een van de volgende functies: ('rijbaan regionale weg','rijbaan autoweg','OV-baan','rijbaan autosnelweg','woonerf','rijbaan lokale weg').",
                                "format": "double",
                                "nullable": true,
                                "type": "number"
                              },
                              "rijrichting": {
                                "description": "toegestane auto rijrichtingen van de weg.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "nullable": true,
                                "type": "integer"
                              },
                              "source": {
                                "description": "nummer van source node van edge.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "nullable": true,
                                "type": "integer"
                              },
                              "straatnaam": {
                                "description": "straatnaam die van toepassing is op wegennetwerk object.",
                                "nullable": true,
                                "type": "string"
                              },
                              "target": {
                                "description": "nummer van target node van edge.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "nullable": true,
                                "type": "integer"
                              },
                              "tijdskostenBeginEind": {
                                "description": "tijdskosten om van begin naar eind van link te gaan in seconden.",
                                "format": "double",
                                "nullable": true,
                                "type": "number"
                              },
                              "tijdskostenEindBegin": {
                                "description": "tijdskosten om van eind naar begin van link te gaan in seconden.",
                                "format": "double",
                                "nullable": true,
                                "type": "number"
                              },
                              "tunnelCategorie": {
                                "description": "een Europese categorisering voor tunnels met betrekking op het vervoer van gevaarlijke stoffen.",
                                "nullable": true,
                                "type": "string"
                              },
                              "tunnelNaam": {
                                "description": "naam van de tunnel.",
                                "nullable": true,
                                "type": "string"
                              },
                              "wegFunctie": {
                                "description": "functional road class; geeft de functie van weg.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "nullable": true,
                                "type": "integer"
                              },
                              "wegbeheerder": {
                                "description": "wegbeheerder die hoort bij de weg.",
                                "nullable": true,
                                "type": "string"
                              },
                              "wettelijkeSnelheid": {
                                "description": "wettelijke Snelheid die toegestaan is op weg. Bij verschillende waarde voor de 2 rijrichtingen gaat het om maximum.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "nullable": true,
                                "type": "integer"
                              }
                            },
                            "required": [
                              "_links",
                              "id"
                            ],
                            "type": "object"
                          },
                          "type": "array"
                        }
                      },
                      "type": "object"
                    },
                    "_links": {
                      "properties": {
                        "next": {
                          "properties": {
                            "href": {
                              "example": "https://api.data.amsterdam.nl/v1/.../resource/?page=4",
                              "format": "uri",
                              "nullable": true,
                              "type": "string"
                            }
                          },
                          "type": "object"
                        },
                        "previous": {
                          "properties": {
                            "href": {
                              "example": "https://api.data.amsterdam.nl/v1/.../resource/?page=2",
                              "format": "uri",
                              "nullable": true,
                              "type": "string"
                            }
                          },
                          "type": "object"
                        },
                        "self": {
                          "properties": {
                            "href": {
                              "example": "https://api.data.amsterdam.nl/v1/.../resource/?page=3",
                              "format": "uri",
                              "type": "string"
                            }
                          },
                          "type": "object"
                        }
                      },
                      "type": "object"
                    },
                    "page": {
                      "properties": {
                        "number": {
                          "example": 3,
                          "type": "integer"
                        },
                        "size": {
                          "example": 20,
                          "type": "integer"
                        },
                        "totalElements": {
                          "example": 5,
                          "type": "integer"
                        },
                        "totalPages": {
                          "example": 3,
                          "type": "integer"
                        }
                      },
                      "type": "object"
                    }
                  },
                  "type": "object"
                }
              },
              "text/csv": {
                "schema": {
                  "properties": {
                    "_embedded": {
                      "properties": {
                        "binnen": {
                          "items": {
                            "description": "binnen",
                            "properties": {
                              "_links": {
                                "allOf": [
                                  {
                                    "description": "The contents of the `binnen._links` field. It contains all relationships with objects.",
                                    "properties": {
                                      "schema": {
                                        "description": "The schema field is exposed with every record",
                                        "format": "uri",
                                        "readOnly": true,
                                        "type": "string"
                                      },
                                      "self": {
                                        "description": "The identifier of the relationship to binnen.",
                                        "properties": {
                                          "href": {
                                            "format": "uri",
                                            "readOnly": true,
                                            "type": "string"
                                          },
                                          "id": {
                                            "description": "unieke identificatie van het record.",
                                            "format": "int64",
                                            "maximum": 9223372036854776000,
                                            "minimum": -9223372036854776000,
                                            "type": "integer"
                                          },
                                          "title": {
                                            "type": "string"
                                          }
                                        },
                                        "required": [
                                          "href",
                                          "id",
                                          "title"
                                        ],
                                        "type": "object"
                                      }
                                    },
                                    "required": [
                                      "schema",
                                      "self"
                                    ],
                                    "type": "object"
                                  }
                                ],
                                "title": " links"
                              },
                              "beleidskaderAuto": {
                                "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
                                "nullable": true,
                                "type": "string"
                              },
                              "beleidskaderFiets": {
                                "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
                                "nullable": true,
                                "type": "string"
                              },
                              "beleidskaderOv": {
                                "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
                                "nullable": true,
                                "type": "string"
                              },
                              "geometry": {
                                "allOf": [
                                  {
                                    "description": "GeoJSON geometry",
                                    "discriminator": {
                                      "propertyName": "type"
                                    },
                                    "properties": {
                                      "coordinates": {
                                        "description": "Based on the geometry type, a point or collection of points.",
                                        "items": {
                                          "type": "number"
                                        },
                                        "minItems": 2,
                                        "type": "array"
                                      },
                                      "type": {
                                        "description": "the geometry type",
                                        "enum": [
                                          "Point",
                                          "LineString",
                                          "Polygon",
                                          "MultiPoint",
                                          "MultiLineString",
                                          "MultiPolygon"
                                        ],
                                        "type": "string"
                                      }
                                    },
                                    "required": [
                                      "type"
                                    ],
                                    "type": "object"
                                  },
                                  {
                                    "properties": {
                                      "coordinates": {
                                        "items": {
                                          "items": {
                                            "description": "Point in 3D space",
                                            "items": {
                                              "type": "number"
                                            },
                                            "maxItems": 3,
                                            "minItems": 2,
                                            "type": "array"
                                          },
                                          "type": "array"
                                        },
                                        "type": "array"
                                      },
                                      "type": {
                                        "enum": [
                                          "MultiLineString"
                                        ],
                                        "type": "string"
                                      }
                                    }
                                  }
                                ],
                                "description": "GeoJSON geometry",
                                "type": "object"
                              },
                              "gevaarlijkeStoffenRoute": {
                                "description": "indicator voor een route voor transport van routeplichtige gevaarlijke stoffen.",
                                "nullable": true,
                                "type": "boolean"
                              },
                              "id": {
                                "description": "unieke identificatie van het record.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "type": "integer"
                              },
                              "indicatieZoneAmsterdam": {
                                "description": "indicator of link valt binnen of grotendeels binnen de gemeente Amsterdam.",
                                "nullable": true,
                                "type": "boolean"
                              },
                              "indicatieZoneMilieu": {
                                "description": "indicator Verkeersbesluit milieuzone Amsterdam (Staatscourant 2020, 32736).",
                                "nullable": true,
                                "type": "boolean"
                              },
                              "indicatieZoneZwaarVerkeer": {
                                "description": "indicator Verkeersbesluit Zone Zwaar Verkeer Amsterdam (Staatscourant 2021, 24726).",
                                "nullable": true,
                                "type": "string"
                              },
                              "laadLosRegime": {
                                "description": "het type laden-en-lossen regime.",
                                "nullable": true,
                                "type": "string"
                              },
                              "laadLosVenstertijden": {
                                "description": "toegestane tijdsperioden voor laden-en-lossen.",
                                "nullable": true,
                                "type": "string"
                              },
                              "laadLosVerbodStilTeStaanTijden": {
                                "description": "dagen en tijden voor verbod laden-en-lossen en stilstaan.",
                                "nullable": true,
                                "type": "string"
                              },
                              "lengte": {
                                "description": "lengte van de link in meters.",
                                "format": "double",
                                "nullable": true,
                                "type": "number"
                              },
                              "linknummer": {
                                "description": "unieke identificatie voor elke opgedeelde wegennetwerk object.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "nullable": true,
                                "type": "integer"
                              },
                              "percLijnInPolygoonWeg": {
                                "description": "welke % van 'lijn lengte' binnen BGT polygonen liggen met een van de volgende functies: ('rijbaan regionale weg','rijbaan autoweg','OV-baan','rijbaan autosnelweg','woonerf','rijbaan lokale weg').",
                                "format": "double",
                                "nullable": true,
                                "type": "number"
                              },
                              "rijrichting": {
                                "description": "toegestane auto rijrichtingen van de weg.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "nullable": true,
                                "type": "integer"
                              },
                              "source": {
                                "description": "nummer van source node van edge.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "nullable": true,
                                "type": "integer"
                              },
                              "straatnaam": {
                                "description": "straatnaam die van toepassing is op wegennetwerk object.",
                                "nullable": true,
                                "type": "string"
                              },
                              "target": {
                                "description": "nummer van target node van edge.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "nullable": true,
                                "type": "integer"
                              },
                              "tijdskostenBeginEind": {
                                "description": "tijdskosten om van begin naar eind van link te gaan in seconden.",
                                "format": "double",
                                "nullable": true,
                                "type": "number"
                              },
                              "tijdskostenEindBegin": {
                                "description": "tijdskosten om van eind naar begin van link te gaan in seconden.",
                                "format": "double",
                                "nullable": true,
                                "type": "number"
                              },
                              "tunnelCategorie": {
                                "description": "een Europese categorisering voor tunnels met betrekking op het vervoer van gevaarlijke stoffen.",
                                "nullable": true,
                                "type": "string"
                              },
                              "tunnelNaam": {
                                "description": "naam van de tunnel.",
                                "nullable": true,
                                "type": "string"
                              },
                              "wegFunctie": {
                                "description": "functional road class; geeft de functie van weg.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "nullable": true,
                                "type": "integer"
                              },
                              "wegbeheerder": {
                                "description": "wegbeheerder die hoort bij de weg.",
                                "nullable": true,
                                "type": "string"
                              },
                              "wettelijkeSnelheid": {
                                "description": "wettelijke Snelheid die toegestaan is op weg. Bij verschillende waarde voor de 2 rijrichtingen gaat het om maximum.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "nullable": true,
                                "type": "integer"
                              }
                            },
                            "required": [
                              "_links",
                              "id"
                            ],
                            "type": "object"
                          },
                          "type": "array"
                        }
                      },
                      "type": "object"
                    },
                    "_links": {
                      "properties": {
                        "next": {
                          "properties": {
                            "href": {
                              "example": "https://api.data.amsterdam.nl/v1/.../resource/?page=4",
                              "format": "uri",
                              "nullable": true,
                              "type": "string"
                            }
                          },
                          "type": "object"
                        },
                        "previous": {
                          "properties": {
                            "href": {
                              "example": "https://api.data.amsterdam.nl/v1/.../resource/?page=2",
                              "format": "uri",
                              "nullable": true,
                              "type": "string"
                            }
                          },
                          "type": "object"
                        },
                        "self": {
                          "properties": {
                            "href": {
                              "example": "https://api.data.amsterdam.nl/v1/.../resource/?page=3",
                              "format": "uri",
                              "type": "string"
                            }
                          },
                          "type": "object"
                        }
                      },
                      "type": "object"
                    },
                    "page": {
                      "properties": {
                        "number": {
                          "example": 3,
                          "type": "integer"
                        },
                        "size": {
                          "example": 20,
                          "type": "integer"
                        },
                        "totalElements": {
                          "example": 5,
                          "type": "integer"
                        },
                        "totalPages": {
                          "example": 3,
                          "type": "integer"
                        }
                      },
                      "type": "object"
                    }
                  },
                  "type": "object"
                }
              }
            },
            "description": ""
          }
        },
        "tags": [
          "binnen"
        ]
      }
    },
    "/binnen/{id}": {
      "get": {
        "operationId": "wegenbestand_zone_zwaar_verkeer_binnen_retrieve",
        "parameters": [
          {
            "description": "Accept-Crs header for Geo queries",
            "in": "header",
            "name": "Accept-Crs",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Content-Crs header for Geo queries",
            "in": "header",
            "name": "Content-Crs",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Api Key for statistical purposes, not for authentication",
            "in": "header",
            "name": "X-Api-Key",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Specify type of header for csv file",
            "in": "query",
            "name": "_csv_header",
            "schema": {
              "enum": [
                "id",
                "title",
                "none"
              ],
              "type": "string"
            }
          },
          {
            "description": "Specify type of separator for csv file",
            "in": "query",
            "name": "_csv_separator",
            "schema": {
              "enum": [
                ",",
                ";"
              ],
              "type": "string"
            }
          },
          {
            "description": "Allow to expand relations.",
            "in": "query",
            "name": "_expand",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Comma separated list of named relations to expand.",
            "in": "query",
            "name": "_expandScope",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Comma-separated list of fields to display",
            "in": "query",
            "name": "_fields",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Select the export format",
            "in": "query",
            "name": "_format",
            "schema": {
              "enum": [
                "json",
                "csv",
                "geojson"
              ],
              "type": "string"
            }
          },
          {
            "description": "Which field to use when ordering the results.",
            "in": "query",
            "name": "_sort",
            "required": false,
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
            "in": "query",
            "name": "beleidskaderAuto",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "beleidskaderAuto[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "beleidskaderAuto[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "beleidskaderAuto[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "beleidskaderAuto[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "beleidskaderAuto[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
            "in": "query",
            "name": "beleidskaderFiets",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "beleidskaderFiets[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "beleidskaderFiets[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "beleidskaderFiets[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "beleidskaderFiets[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "beleidskaderFiets[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
            "in": "query",
            "name": "beleidskaderOv",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "beleidskaderOv[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "beleidskaderOv[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "beleidskaderOv[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "beleidskaderOv[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "beleidskaderOv[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "indicator voor een route voor transport van routeplichtige gevaarlijke stoffen.",
            "in": "query",
            "name": "gevaarlijkeStoffenRoute",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "gevaarlijkeStoffenRoute[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "in": "path",
            "name": "id",
            "required": true,
            "schema": {
              "pattern": "^[^/]+$",
              "type": "string"
            }
          },
          {
            "description": "unieke identificatie van het record.",
            "in": "query",
            "name": "id",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "id[gt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "id[gte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "id[in]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "id[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "id[lt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "id[lte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "id[not]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            }
          },
          {
            "description": "indicator of link valt binnen of grotendeels binnen de gemeente Amsterdam.",
            "in": "query",
            "name": "indicatieZoneAmsterdam",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "indicatieZoneAmsterdam[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "indicator Verkeersbesluit milieuzone Amsterdam (Staatscourant 2020, 32736).",
            "in": "query",
            "name": "indicatieZoneMilieu",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "indicatieZoneMilieu[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "indicator Verkeersbesluit Zone Zwaar Verkeer Amsterdam (Staatscourant 2021, 24726).",
            "in": "query",
            "name": "indicatieZoneZwaarVerkeer",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "indicatieZoneZwaarVerkeer[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "indicatieZoneZwaarVerkeer[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "indicatieZoneZwaarVerkeer[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "indicatieZoneZwaarVerkeer[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "indicatieZoneZwaarVerkeer[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "het type laden-en-lossen regime.",
            "in": "query",
            "name": "laadLosRegime",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "laadLosRegime[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "laadLosRegime[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "laadLosRegime[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "laadLosRegime[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "laadLosRegime[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "toegestane tijdsperioden voor laden-en-lossen.",
            "in": "query",
            "name": "laadLosVenstertijden",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "laadLosVenstertijden[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "laadLosVenstertijden[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "laadLosVenstertijden[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "laadLosVenstertijden[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "laadLosVenstertijden[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "dagen en tijden voor verbod laden-en-lossen en stilstaan.",
            "in": "query",
            "name": "laadLosVerbodStilTeStaanTijden",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "laadLosVerbodStilTeStaanTijden[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "laadLosVerbodStilTeStaanTijden[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "laadLosVerbodStilTeStaanTijden[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "laadLosVerbodStilTeStaanTijden[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "laadLosVerbodStilTeStaanTijden[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "lengte van de link in meters.",
            "in": "query",
            "name": "lengte",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "lengte[gt]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "lengte[gte]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "lengte[in]",
            "schema": {
              "items": {
                "type": "number"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "lengte[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "lengte[lt]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "lengte[lte]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "lengte[not]",
            "schema": {
              "items": {
                "type": "number"
              },
              "type": "array"
            }
          },
          {
            "description": "unieke identificatie voor elke opgedeelde wegennetwerk object.",
            "in": "query",
            "name": "linknummer",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "linknummer[gt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "linknummer[gte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "linknummer[in]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "linknummer[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "linknummer[lt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "linknummer[lte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "linknummer[not]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            }
          },
          {
            "description": "welke % van 'lijn lengte' binnen BGT polygonen liggen met een van de volgende functies: ('rijbaan regionale weg','rijbaan autoweg','OV-baan','rijbaan autosnelweg','woonerf','rijbaan lokale weg').",
            "in": "query",
            "name": "percLijnInPolygoonWeg",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "percLijnInPolygoonWeg[gt]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "percLijnInPolygoonWeg[gte]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "percLijnInPolygoonWeg[in]",
            "schema": {
              "items": {
                "type": "number"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "percLijnInPolygoonWeg[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "percLijnInPolygoonWeg[lt]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "percLijnInPolygoonWeg[lte]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "percLijnInPolygoonWeg[not]",
            "schema": {
              "items": {
                "type": "number"
              },
              "type": "array"
            }
          },
          {
            "description": "toegestane auto rijrichtingen van de weg.",
            "in": "query",
            "name": "rijrichting",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "rijrichting[gt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "rijrichting[gte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "rijrichting[in]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "rijrichting[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "rijrichting[lt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "rijrichting[lte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "rijrichting[not]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            }
          },
          {
            "description": "nummer van source node van edge.",
            "in": "query",
            "name": "source",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "source[gt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "source[gte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "source[in]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "source[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "source[lt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "source[lte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "source[not]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            }
          },
          {
            "description": "straatnaam die van toepassing is op wegennetwerk object.",
            "in": "query",
            "name": "straatnaam",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "straatnaam[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "straatnaam[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "straatnaam[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "straatnaam[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "straatnaam[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "nummer van target node van edge.",
            "in": "query",
            "name": "target",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "target[gt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "target[gte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "target[in]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "target[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "target[lt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "target[lte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "target[not]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            }
          },
          {
            "description": "tijdskosten om van begin naar eind van link te gaan in seconden.",
            "in": "query",
            "name": "tijdskostenBeginEind",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "tijdskostenBeginEind[gt]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "tijdskostenBeginEind[gte]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "tijdskostenBeginEind[in]",
            "schema": {
              "items": {
                "type": "number"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "tijdskostenBeginEind[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "tijdskostenBeginEind[lt]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "tijdskostenBeginEind[lte]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "tijdskostenBeginEind[not]",
            "schema": {
              "items": {
                "type": "number"
              },
              "type": "array"
            }
          },
          {
            "description": "tijdskosten om van eind naar begin van link te gaan in seconden.",
            "in": "query",
            "name": "tijdskostenEindBegin",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "tijdskostenEindBegin[gt]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "tijdskostenEindBegin[gte]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "tijdskostenEindBegin[in]",
            "schema": {
              "items": {
                "type": "number"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "tijdskostenEindBegin[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "tijdskostenEindBegin[lt]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "tijdskostenEindBegin[lte]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "tijdskostenEindBegin[not]",
            "schema": {
              "items": {
                "type": "number"
              },
              "type": "array"
            }
          },
          {
            "description": "een Europese categorisering voor tunnels met betrekking op het vervoer van gevaarlijke stoffen.",
            "in": "query",
            "name": "tunnelCategorie",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "tunnelCategorie[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "tunnelCategorie[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "tunnelCategorie[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "tunnelCategorie[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "tunnelCategorie[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "naam van de tunnel.",
            "in": "query",
            "name": "tunnelNaam",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "tunnelNaam[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "tunnelNaam[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "tunnelNaam[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "tunnelNaam[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "tunnelNaam[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "functional road class; geeft de functie van weg.",
            "in": "query",
            "name": "wegFunctie",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "wegFunctie[gt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "wegFunctie[gte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "wegFunctie[in]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "wegFunctie[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "wegFunctie[lt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "wegFunctie[lte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "wegFunctie[not]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            }
          },
          {
            "description": "wegbeheerder die hoort bij de weg.",
            "in": "query",
            "name": "wegbeheerder",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "wegbeheerder[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "wegbeheerder[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "wegbeheerder[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "wegbeheerder[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "wegbeheerder[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "wettelijke Snelheid die toegestaan is op weg. Bij verschillende waarde voor de 2 rijrichtingen gaat het om maximum.",
            "in": "query",
            "name": "wettelijkeSnelheid",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "wettelijkeSnelheid[gt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "wettelijkeSnelheid[gte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "wettelijkeSnelheid[in]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "wettelijkeSnelheid[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "wettelijkeSnelheid[lt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "wettelijkeSnelheid[lte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "wettelijkeSnelheid[not]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/geo+json": {
                "schema": {
                  "description": "binnen",
                  "properties": {
                    "_links": {
                      "allOf": [
                        {
                          "description": "The contents of the `binnen._links` field. It contains all relationships with objects.",
                          "properties": {
                            "schema": {
                              "description": "The schema field is exposed with every record",
                              "format": "uri",
                              "readOnly": true,
                              "type": "string"
                            },
                            "self": {
                              "description": "The identifier of the relationship to binnen.",
                              "properties": {
                                "href": {
                                  "format": "uri",
                                  "readOnly": true,
                                  "type": "string"
                                },
                                "id": {
                                  "description": "unieke identificatie van het record.",
                                  "format": "int64",
                                  "maximum": 9223372036854776000,
                                  "minimum": -9223372036854776000,
                                  "type": "integer"
                                },
                                "title": {
                                  "type": "string"
                                }
                              },
                              "required": [
                                "href",
                                "id",
                                "title"
                              ],
                              "type": "object"
                            }
                          },
                          "required": [
                            "schema",
                            "self"
                          ],
                          "type": "object"
                        }
                      ],
                      "title": " links"
                    },
                    "beleidskaderAuto": {
                      "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
                      "nullable": true,
                      "type": "string"
                    },
                    "beleidskaderFiets": {
                      "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
                      "nullable": true,
                      "type": "string"
                    },
                    "beleidskaderOv": {
                      "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
                      "nullable": true,
                      "type": "string"
                    },
                    "geometry": {
                      "allOf": [
                        {
                          "description": "GeoJSON geometry",
                          "discriminator": {
                            "propertyName": "type"
                          },
                          "properties": {
                            "coordinates": {
                              "description": "Based on the geometry type, a point or collection of points.",
                              "items": {
                                "type": "number"
                              },
                              "minItems": 2,
                              "type": "array"
                            },
                            "type": {
                              "description": "the geometry type",
                              "enum": [
                                "Point",
                                "LineString",
                                "Polygon",
                                "MultiPoint",
                                "MultiLineString",
                                "MultiPolygon"
                              ],
                              "type": "string"
                            }
                          },
                          "required": [
                            "type"
                          ],
                          "type": "object"
                        },
                        {
                          "properties": {
                            "coordinates": {
                              "items": {
                                "items": {
                                  "description": "Point in 3D space",
                                  "items": {
                                    "type": "number"
                                  },
                                  "maxItems": 3,
                                  "minItems": 2,
                                  "type": "array"
                                },
                                "type": "array"
                              },
                              "type": "array"
                            },
                            "type": {
                              "enum": [
                                "MultiLineString"
                              ],
                              "type": "string"
                            }
                          }
                        }
                      ],
                      "description": "GeoJSON geometry",
                      "type": "object"
                    },
                    "gevaarlijkeStoffenRoute": {
                      "description": "indicator voor een route voor transport van routeplichtige gevaarlijke stoffen.",
                      "nullable": true,
                      "type": "boolean"
                    },
                    "id": {
                      "description": "unieke identificatie van het record.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "type": "integer"
                    },
                    "indicatieZoneAmsterdam": {
                      "description": "indicator of link valt binnen of grotendeels binnen de gemeente Amsterdam.",
                      "nullable": true,
                      "type": "boolean"
                    },
                    "indicatieZoneMilieu": {
                      "description": "indicator Verkeersbesluit milieuzone Amsterdam (Staatscourant 2020, 32736).",
                      "nullable": true,
                      "type": "boolean"
                    },
                    "indicatieZoneZwaarVerkeer": {
                      "description": "indicator Verkeersbesluit Zone Zwaar Verkeer Amsterdam (Staatscourant 2021, 24726).",
                      "nullable": true,
                      "type": "string"
                    },
                    "laadLosRegime": {
                      "description": "het type laden-en-lossen regime.",
                      "nullable": true,
                      "type": "string"
                    },
                    "laadLosVenstertijden": {
                      "description": "toegestane tijdsperioden voor laden-en-lossen.",
                      "nullable": true,
                      "type": "string"
                    },
                    "laadLosVerbodStilTeStaanTijden": {
                      "description": "dagen en tijden voor verbod laden-en-lossen en stilstaan.",
                      "nullable": true,
                      "type": "string"
                    },
                    "lengte": {
                      "description": "lengte van de link in meters.",
                      "format": "double",
                      "nullable": true,
                      "type": "number"
                    },
                    "linknummer": {
                      "description": "unieke identificatie voor elke opgedeelde wegennetwerk object.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "percLijnInPolygoonWeg": {
                      "description": "welke % van 'lijn lengte' binnen BGT polygonen liggen met een van de volgende functies: ('rijbaan regionale weg','rijbaan autoweg','OV-baan','rijbaan autosnelweg','woonerf','rijbaan lokale weg').",
                      "format": "double",
                      "nullable": true,
                      "type": "number"
                    },
                    "rijrichting": {
                      "description": "toegestane auto rijrichtingen van de weg.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "source": {
                      "description": "nummer van source node van edge.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "straatnaam": {
                      "description": "straatnaam die van toepassing is op wegennetwerk object.",
                      "nullable": true,
                      "type": "string"
                    },
                    "target": {
                      "description": "nummer van target node van edge.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "tijdskostenBeginEind": {
                      "description": "tijdskosten om van begin naar eind van link te gaan in seconden.",
                      "format": "double",
                      "nullable": true,
                      "type": "number"
                    },
                    "tijdskostenEindBegin": {
                      "description": "tijdskosten om van eind naar begin van link te gaan in seconden.",
                      "format": "double",
                      "nullable": true,
                      "type": "number"
                    },
                    "tunnelCategorie": {
                      "description": "een Europese categorisering voor tunnels met betrekking op het vervoer van gevaarlijke stoffen.",
                      "nullable": true,
                      "type": "string"
                    },
                    "tunnelNaam": {
                      "description": "naam van de tunnel.",
                      "nullable": true,
                      "type": "string"
                    },
                    "wegFunctie": {
                      "description": "functional road class; geeft de functie van weg.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "wegbeheerder": {
                      "description": "wegbeheerder die hoort bij de weg.",
                      "nullable": true,
                      "type": "string"
                    },
                    "wettelijkeSnelheid": {
                      "description": "wettelijke Snelheid die toegestaan is op weg. Bij verschillende waarde voor de 2 rijrichtingen gaat het om maximum.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    }
                  },
                  "required": [
                    "_links",
                    "id"
                  ],
                  "type": "object"
                }
              },
              "application/hal+json": {
                "schema": {
                  "description": "binnen",
                  "properties": {
                    "_links": {
                      "allOf": [
                        {
                          "description": "The contents of the `binnen._links` field. It contains all relationships with objects.",
                          "properties": {
                            "schema": {
                              "description": "The schema field is exposed with every record",
                              "format": "uri",
                              "readOnly": true,
                              "type": "string"
                            },
                            "self": {
                              "description": "The identifier of the relationship to binnen.",
                              "properties": {
                                "href": {
                                  "format": "uri",
                                  "readOnly": true,
                                  "type": "string"
                                },
                                "id": {
                                  "description": "unieke identificatie van het record.",
                                  "format": "int64",
                                  "maximum": 9223372036854776000,
                                  "minimum": -9223372036854776000,
                                  "type": "integer"
                                },
                                "title": {
                                  "type": "string"
                                }
                              },
                              "required": [
                                "href",
                                "id",
                                "title"
                              ],
                              "type": "object"
                            }
                          },
                          "required": [
                            "schema",
                            "self"
                          ],
                          "type": "object"
                        }
                      ],
                      "title": " links"
                    },
                    "beleidskaderAuto": {
                      "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
                      "nullable": true,
                      "type": "string"
                    },
                    "beleidskaderFiets": {
                      "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
                      "nullable": true,
                      "type": "string"
                    },
                    "beleidskaderOv": {
                      "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
                      "nullable": true,
                      "type": "string"
                    },
                    "geometry": {
                      "allOf": [
                        {
                          "description": "GeoJSON geometry",
                          "discriminator": {
                            "propertyName": "type"
                          },
                          "properties": {
                            "coordinates": {
                              "description": "Based on the geometry type, a point or collection of points.",
                              "items": {
                                "type": "number"
                              },
                              "minItems": 2,
                              "type": "array"
                            },
                            "type": {
                              "description": "the geometry type",
                              "enum": [
                                "Point",
                                "LineString",
                                "Polygon",
                                "MultiPoint",
                                "MultiLineString",
                                "MultiPolygon"
                              ],
                              "type": "string"
                            }
                          },
                          "required": [
                            "type"
                          ],
                          "type": "object"
                        },
                        {
                          "properties": {
                            "coordinates": {
                              "items": {
                                "items": {
                                  "description": "Point in 3D space",
                                  "items": {
                                    "type": "number"
                                  },
                                  "maxItems": 3,
                                  "minItems": 2,
                                  "type": "array"
                                },
                                "type": "array"
                              },
                              "type": "array"
                            },
                            "type": {
                              "enum": [
                                "MultiLineString"
                              ],
                              "type": "string"
                            }
                          }
                        }
                      ],
                      "description": "GeoJSON geometry",
                      "type": "object"
                    },
                    "gevaarlijkeStoffenRoute": {
                      "description": "indicator voor een route voor transport van routeplichtige gevaarlijke stoffen.",
                      "nullable": true,
                      "type": "boolean"
                    },
                    "id": {
                      "description": "unieke identificatie van het record.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "type": "integer"
                    },
                    "indicatieZoneAmsterdam": {
                      "description": "indicator of link valt binnen of grotendeels binnen de gemeente Amsterdam.",
                      "nullable": true,
                      "type": "boolean"
                    },
                    "indicatieZoneMilieu": {
                      "description": "indicator Verkeersbesluit milieuzone Amsterdam (Staatscourant 2020, 32736).",
                      "nullable": true,
                      "type": "boolean"
                    },
                    "indicatieZoneZwaarVerkeer": {
                      "description": "indicator Verkeersbesluit Zone Zwaar Verkeer Amsterdam (Staatscourant 2021, 24726).",
                      "nullable": true,
                      "type": "string"
                    },
                    "laadLosRegime": {
                      "description": "het type laden-en-lossen regime.",
                      "nullable": true,
                      "type": "string"
                    },
                    "laadLosVenstertijden": {
                      "description": "toegestane tijdsperioden voor laden-en-lossen.",
                      "nullable": true,
                      "type": "string"
                    },
                    "laadLosVerbodStilTeStaanTijden": {
                      "description": "dagen en tijden voor verbod laden-en-lossen en stilstaan.",
                      "nullable": true,
                      "type": "string"
                    },
                    "lengte": {
                      "description": "lengte van de link in meters.",
                      "format": "double",
                      "nullable": true,
                      "type": "number"
                    },
                    "linknummer": {
                      "description": "unieke identificatie voor elke opgedeelde wegennetwerk object.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "percLijnInPolygoonWeg": {
                      "description": "welke % van 'lijn lengte' binnen BGT polygonen liggen met een van de volgende functies: ('rijbaan regionale weg','rijbaan autoweg','OV-baan','rijbaan autosnelweg','woonerf','rijbaan lokale weg').",
                      "format": "double",
                      "nullable": true,
                      "type": "number"
                    },
                    "rijrichting": {
                      "description": "toegestane auto rijrichtingen van de weg.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "source": {
                      "description": "nummer van source node van edge.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "straatnaam": {
                      "description": "straatnaam die van toepassing is op wegennetwerk object.",
                      "nullable": true,
                      "type": "string"
                    },
                    "target": {
                      "description": "nummer van target node van edge.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "tijdskostenBeginEind": {
                      "description": "tijdskosten om van begin naar eind van link te gaan in seconden.",
                      "format": "double",
                      "nullable": true,
                      "type": "number"
                    },
                    "tijdskostenEindBegin": {
                      "description": "tijdskosten om van eind naar begin van link te gaan in seconden.",
                      "format": "double",
                      "nullable": true,
                      "type": "number"
                    },
                    "tunnelCategorie": {
                      "description": "een Europese categorisering voor tunnels met betrekking op het vervoer van gevaarlijke stoffen.",
                      "nullable": true,
                      "type": "string"
                    },
                    "tunnelNaam": {
                      "description": "naam van de tunnel.",
                      "nullable": true,
                      "type": "string"
                    },
                    "wegFunctie": {
                      "description": "functional road class; geeft de functie van weg.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "wegbeheerder": {
                      "description": "wegbeheerder die hoort bij de weg.",
                      "nullable": true,
                      "type": "string"
                    },
                    "wettelijkeSnelheid": {
                      "description": "wettelijke Snelheid die toegestaan is op weg. Bij verschillende waarde voor de 2 rijrichtingen gaat het om maximum.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    }
                  },
                  "required": [
                    "_links",
                    "id"
                  ],
                  "type": "object"
                }
              },
              "text/csv": {
                "schema": {
                  "description": "binnen",
                  "properties": {
                    "_links": {
                      "allOf": [
                        {
                          "description": "The contents of the `binnen._links` field. It contains all relationships with objects.",
                          "properties": {
                            "schema": {
                              "description": "The schema field is exposed with every record",
                              "format": "uri",
                              "readOnly": true,
                              "type": "string"
                            },
                            "self": {
                              "description": "The identifier of the relationship to binnen.",
                              "properties": {
                                "href": {
                                  "format": "uri",
                                  "readOnly": true,
                                  "type": "string"
                                },
                                "id": {
                                  "description": "unieke identificatie van het record.",
                                  "format": "int64",
                                  "maximum": 9223372036854776000,
                                  "minimum": -9223372036854776000,
                                  "type": "integer"
                                },
                                "title": {
                                  "type": "string"
                                }
                              },
                              "required": [
                                "href",
                                "id",
                                "title"
                              ],
                              "type": "object"
                            }
                          },
                          "required": [
                            "schema",
                            "self"
                          ],
                          "type": "object"
                        }
                      ],
                      "title": " links"
                    },
                    "beleidskaderAuto": {
                      "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
                      "nullable": true,
                      "type": "string"
                    },
                    "beleidskaderFiets": {
                      "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
                      "nullable": true,
                      "type": "string"
                    },
                    "beleidskaderOv": {
                      "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
                      "nullable": true,
                      "type": "string"
                    },
                    "geometry": {
                      "allOf": [
                        {
                          "description": "GeoJSON geometry",
                          "discriminator": {
                            "propertyName": "type"
                          },
                          "properties": {
                            "coordinates": {
                              "description": "Based on the geometry type, a point or collection of points.",
                              "items": {
                                "type": "number"
                              },
                              "minItems": 2,
                              "type": "array"
                            },
                            "type": {
                              "description": "the geometry type",
                              "enum": [
                                "Point",
                                "LineString",
                                "Polygon",
                                "MultiPoint",
                                "MultiLineString",
                                "MultiPolygon"
                              ],
                              "type": "string"
                            }
                          },
                          "required": [
                            "type"
                          ],
                          "type": "object"
                        },
                        {
                          "properties": {
                            "coordinates": {
                              "items": {
                                "items": {
                                  "description": "Point in 3D space",
                                  "items": {
                                    "type": "number"
                                  },
                                  "maxItems": 3,
                                  "minItems": 2,
                                  "type": "array"
                                },
                                "type": "array"
                              },
                              "type": "array"
                            },
                            "type": {
                              "enum": [
                                "MultiLineString"
                              ],
                              "type": "string"
                            }
                          }
                        }
                      ],
                      "description": "GeoJSON geometry",
                      "type": "object"
                    },
                    "gevaarlijkeStoffenRoute": {
                      "description": "indicator voor een route voor transport van routeplichtige gevaarlijke stoffen.",
                      "nullable": true,
                      "type": "boolean"
                    },
                    "id": {
                      "description": "unieke identificatie van het record.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "type": "integer"
                    },
                    "indicatieZoneAmsterdam": {
                      "description": "indicator of link valt binnen of grotendeels binnen de gemeente Amsterdam.",
                      "nullable": true,
                      "type": "boolean"
                    },
                    "indicatieZoneMilieu": {
                      "description": "indicator Verkeersbesluit milieuzone Amsterdam (Staatscourant 2020, 32736).",
                      "nullable": true,
                      "type": "boolean"
                    },
                    "indicatieZoneZwaarVerkeer": {
                      "description": "indicator Verkeersbesluit Zone Zwaar Verkeer Amsterdam (Staatscourant 2021, 24726).",
                      "nullable": true,
                      "type": "string"
                    },
                    "laadLosRegime": {
                      "description": "het type laden-en-lossen regime.",
                      "nullable": true,
                      "type": "string"
                    },
                    "laadLosVenstertijden": {
                      "description": "toegestane tijdsperioden voor laden-en-lossen.",
                      "nullable": true,
                      "type": "string"
                    },
                    "laadLosVerbodStilTeStaanTijden": {
                      "description": "dagen en tijden voor verbod laden-en-lossen en stilstaan.",
                      "nullable": true,
                      "type": "string"
                    },
                    "lengte": {
                      "description": "lengte van de link in meters.",
                      "format": "double",
                      "nullable": true,
                      "type": "number"
                    },
                    "linknummer": {
                      "description": "unieke identificatie voor elke opgedeelde wegennetwerk object.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "percLijnInPolygoonWeg": {
                      "description": "welke % van 'lijn lengte' binnen BGT polygonen liggen met een van de volgende functies: ('rijbaan regionale weg','rijbaan autoweg','OV-baan','rijbaan autosnelweg','woonerf','rijbaan lokale weg').",
                      "format": "double",
                      "nullable": true,
                      "type": "number"
                    },
                    "rijrichting": {
                      "description": "toegestane auto rijrichtingen van de weg.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "source": {
                      "description": "nummer van source node van edge.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "straatnaam": {
                      "description": "straatnaam die van toepassing is op wegennetwerk object.",
                      "nullable": true,
                      "type": "string"
                    },
                    "target": {
                      "description": "nummer van target node van edge.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "tijdskostenBeginEind": {
                      "description": "tijdskosten om van begin naar eind van link te gaan in seconden.",
                      "format": "double",
                      "nullable": true,
                      "type": "number"
                    },
                    "tijdskostenEindBegin": {
                      "description": "tijdskosten om van eind naar begin van link te gaan in seconden.",
                      "format": "double",
                      "nullable": true,
                      "type": "number"
                    },
                    "tunnelCategorie": {
                      "description": "een Europese categorisering voor tunnels met betrekking op het vervoer van gevaarlijke stoffen.",
                      "nullable": true,
                      "type": "string"
                    },
                    "tunnelNaam": {
                      "description": "naam van de tunnel.",
                      "nullable": true,
                      "type": "string"
                    },
                    "wegFunctie": {
                      "description": "functional road class; geeft de functie van weg.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "wegbeheerder": {
                      "description": "wegbeheerder die hoort bij de weg.",
                      "nullable": true,
                      "type": "string"
                    },
                    "wettelijkeSnelheid": {
                      "description": "wettelijke Snelheid die toegestaan is op weg. Bij verschillende waarde voor de 2 rijrichtingen gaat het om maximum.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    }
                  },
                  "required": [
                    "_links",
                    "id"
                  ],
                  "type": "object"
                }
              }
            },
            "description": ""
          }
        },
        "tags": [
          "binnen"
        ]
      }
    },
    "/breed_opgezette_wegen": {
      "get": {
        "operationId": "wegenbestand_zone_zwaar_verkeer_breed_opgezette_wegen_list",
        "parameters": [
          {
            "description": "Accept-Crs header for Geo queries",
            "in": "header",
            "name": "Accept-Crs",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Content-Crs header for Geo queries",
            "in": "header",
            "name": "Content-Crs",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Api Key for statistical purposes, not for authentication",
            "in": "header",
            "name": "X-Api-Key",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Include a count of the total result set and the number of pages.Only works for responses that return a page.",
            "in": "query",
            "name": "_count",
            "required": false,
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Specify type of header for csv file",
            "in": "query",
            "name": "_csv_header",
            "schema": {
              "enum": [
                "id",
                "title",
                "none"
              ],
              "type": "string"
            }
          },
          {
            "description": "Specify type of separator for csv file",
            "in": "query",
            "name": "_csv_separator",
            "schema": {
              "enum": [
                ",",
                ";"
              ],
              "type": "string"
            }
          },
          {
            "description": "Allow to expand relations.",
            "in": "query",
            "name": "_expand",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Comma separated list of named relations to expand.",
            "in": "query",
            "name": "_expandScope",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Comma-separated list of fields to display",
            "in": "query",
            "name": "_fields",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Select the export format",
            "in": "query",
            "name": "_format",
            "schema": {
              "enum": [
                "json",
                "csv",
                "geojson"
              ],
              "type": "string"
            }
          },
          {
            "description": "Number of results to return per page.",
            "in": "query",
            "name": "_pageSize",
            "required": false,
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Which field to use when ordering the results.",
            "in": "query",
            "name": "_sort",
            "required": false,
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
            "in": "query",
            "name": "beleidskaderAuto",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "beleidskaderAuto[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "beleidskaderAuto[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "beleidskaderAuto[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "beleidskaderAuto[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "beleidskaderAuto[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
            "in": "query",
            "name": "beleidskaderFiets",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "beleidskaderFiets[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "beleidskaderFiets[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "beleidskaderFiets[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "beleidskaderFiets[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "beleidskaderFiets[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
            "in": "query",
            "name": "beleidskaderOv",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "beleidskaderOv[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "beleidskaderOv[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "beleidskaderOv[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "beleidskaderOv[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "beleidskaderOv[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "indicator voor een route voor transport van routeplichtige gevaarlijke stoffen.",
            "in": "query",
            "name": "gevaarlijkeStoffenRoute",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "gevaarlijkeStoffenRoute[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "unieke identificatie van het record.",
            "in": "query",
            "name": "id",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "id[gt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "id[gte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "id[in]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "id[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "id[lt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "id[lte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "id[not]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            }
          },
          {
            "description": "indicator of link valt binnen of grotendeels binnen de gemeente Amsterdam.",
            "in": "query",
            "name": "indicatieZoneAmsterdam",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "indicatieZoneAmsterdam[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "indicator Verkeersbesluit milieuzone Amsterdam (Staatscourant 2020, 32736).",
            "in": "query",
            "name": "indicatieZoneMilieu",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "indicatieZoneMilieu[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "indicator Verkeersbesluit Zone Zwaar Verkeer Amsterdam (Staatscourant 2021, 24726).",
            "in": "query",
            "name": "indicatieZoneZwaarVerkeer",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "indicatieZoneZwaarVerkeer[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "indicatieZoneZwaarVerkeer[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "indicatieZoneZwaarVerkeer[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "indicatieZoneZwaarVerkeer[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "indicatieZoneZwaarVerkeer[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "het type laden-en-lossen regime.",
            "in": "query",
            "name": "laadLosRegime",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "laadLosRegime[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "laadLosRegime[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "laadLosRegime[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "laadLosRegime[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "laadLosRegime[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "toegestane tijdsperioden voor laden-en-lossen.",
            "in": "query",
            "name": "laadLosVenstertijden",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "laadLosVenstertijden[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "laadLosVenstertijden[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "laadLosVenstertijden[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "laadLosVenstertijden[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "laadLosVenstertijden[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "dagen en tijden voor verbod laden-en-lossen en stilstaan.",
            "in": "query",
            "name": "laadLosVerbodStilTeStaanTijden",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "laadLosVerbodStilTeStaanTijden[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "laadLosVerbodStilTeStaanTijden[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "laadLosVerbodStilTeStaanTijden[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "laadLosVerbodStilTeStaanTijden[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "laadLosVerbodStilTeStaanTijden[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "lengte van de link in meters.",
            "in": "query",
            "name": "lengte",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "lengte[gt]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "lengte[gte]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "lengte[in]",
            "schema": {
              "items": {
                "type": "number"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "lengte[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "lengte[lt]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "lengte[lte]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "lengte[not]",
            "schema": {
              "items": {
                "type": "number"
              },
              "type": "array"
            }
          },
          {
            "description": "unieke identificatie voor elke opgedeelde wegennetwerk object.",
            "in": "query",
            "name": "linknummer",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "linknummer[gt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "linknummer[gte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "linknummer[in]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "linknummer[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "linknummer[lt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "linknummer[lte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "linknummer[not]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            }
          },
          {
            "description": "A page number within the paginated result set.",
            "in": "query",
            "name": "page",
            "required": false,
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "welke % van 'lijn lengte' binnen BGT polygonen liggen met een van de volgende functies: ('rijbaan regionale weg','rijbaan autoweg','OV-baan','rijbaan autosnelweg','woonerf','rijbaan lokale weg').",
            "in": "query",
            "name": "percLijnInPolygoonWeg",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "percLijnInPolygoonWeg[gt]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "percLijnInPolygoonWeg[gte]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "percLijnInPolygoonWeg[in]",
            "schema": {
              "items": {
                "type": "number"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "percLijnInPolygoonWeg[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "percLijnInPolygoonWeg[lt]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "percLijnInPolygoonWeg[lte]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "percLijnInPolygoonWeg[not]",
            "schema": {
              "items": {
                "type": "number"
              },
              "type": "array"
            }
          },
          {
            "description": "toegestane auto rijrichtingen van de weg.",
            "in": "query",
            "name": "rijrichting",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "rijrichting[gt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "rijrichting[gte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "rijrichting[in]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "rijrichting[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "rijrichting[lt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "rijrichting[lte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "rijrichting[not]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            }
          },
          {
            "description": "nummer van source node van edge.",
            "in": "query",
            "name": "source",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "source[gt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "source[gte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "source[in]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "source[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "source[lt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "source[lte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "source[not]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            }
          },
          {
            "description": "straatnaam die van toepassing is op wegennetwerk object.",
            "in": "query",
            "name": "straatnaam",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "straatnaam[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "straatnaam[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "straatnaam[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "straatnaam[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "straatnaam[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "nummer van target node van edge.",
            "in": "query",
            "name": "target",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "target[gt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "target[gte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "target[in]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "target[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "target[lt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "target[lte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "target[not]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            }
          },
          {
            "description": "tijdskosten om van begin naar eind van link te gaan in seconden.",
            "in": "query",
            "name": "tijdskostenBeginEind",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "tijdskostenBeginEind[gt]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "tijdskostenBeginEind[gte]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "tijdskostenBeginEind[in]",
            "schema": {
              "items": {
                "type": "number"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "tijdskostenBeginEind[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "tijdskostenBeginEind[lt]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "tijdskostenBeginEind[lte]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "tijdskostenBeginEind[not]",
            "schema": {
              "items": {
                "type": "number"
              },
              "type": "array"
            }
          },
          {
            "description": "tijdskosten om van eind naar begin van link te gaan in seconden.",
            "in": "query",
            "name": "tijdskostenEindBegin",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "tijdskostenEindBegin[gt]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "tijdskostenEindBegin[gte]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "tijdskostenEindBegin[in]",
            "schema": {
              "items": {
                "type": "number"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "tijdskostenEindBegin[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "tijdskostenEindBegin[lt]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "tijdskostenEindBegin[lte]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "tijdskostenEindBegin[not]",
            "schema": {
              "items": {
                "type": "number"
              },
              "type": "array"
            }
          },
          {
            "description": "een Europese categorisering voor tunnels met betrekking op het vervoer van gevaarlijke stoffen.",
            "in": "query",
            "name": "tunnelCategorie",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "tunnelCategorie[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "tunnelCategorie[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "tunnelCategorie[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "tunnelCategorie[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "tunnelCategorie[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "naam van de tunnel.",
            "in": "query",
            "name": "tunnelNaam",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "tunnelNaam[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "tunnelNaam[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "tunnelNaam[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "tunnelNaam[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "tunnelNaam[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "functional road class; geeft de functie van weg.",
            "in": "query",
            "name": "wegFunctie",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "wegFunctie[gt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "wegFunctie[gte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "wegFunctie[in]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "wegFunctie[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "wegFunctie[lt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "wegFunctie[lte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "wegFunctie[not]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            }
          },
          {
            "description": "wegbeheerder die hoort bij de weg.",
            "in": "query",
            "name": "wegbeheerder",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "wegbeheerder[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "wegbeheerder[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "wegbeheerder[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "wegbeheerder[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "wegbeheerder[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "wettelijke Snelheid die toegestaan is op weg. Bij verschillende waarde voor de 2 rijrichtingen gaat het om maximum.",
            "in": "query",
            "name": "wettelijkeSnelheid",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "wettelijkeSnelheid[gt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "wettelijkeSnelheid[gte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "wettelijkeSnelheid[in]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "wettelijkeSnelheid[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "wettelijkeSnelheid[lt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "wettelijkeSnelheid[lte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "wettelijkeSnelheid[not]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/geo+json": {
                "schema": {
                  "properties": {
                    "_embedded": {
                      "properties": {
                        "breed_opgezette_wegen": {
                          "items": {
                            "description": "breedOpgezetteWegen",
                            "properties": {
                              "_links": {
                                "allOf": [
                                  {
                                    "description": "The contents of the `breedOpgezetteWegen._links` field. It contains all relationships with objects.",
                                    "properties": {
                                      "schema": {
                                        "description": "The schema field is exposed with every record",
                                        "format": "uri",
                                        "readOnly": true,
                                        "type": "string"
                                      },
                                      "self": {
                                        "description": "The identifier of the relationship to breedOpgezetteWegen.",
                                        "properties": {
                                          "href": {
                                            "format": "uri",
                                            "readOnly": true,
                                            "type": "string"
                                          },
                                          "id": {
                                            "description": "unieke identificatie van het record.",
                                            "format": "int64",
                                            "maximum": 9223372036854776000,
                                            "minimum": -9223372036854776000,
                                            "type": "integer"
                                          },
                                          "title": {
                                            "type": "string"
                                          }
                                        },
                                        "required": [
                                          "href",
                                          "id",
                                          "title"
                                        ],
                                        "type": "object"
                                      }
                                    },
                                    "required": [
                                      "schema",
                                      "self"
                                    ],
                                    "type": "object"
                                  }
                                ],
                                "title": " links"
                              },
                              "beleidskaderAuto": {
                                "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
                                "nullable": true,
                                "type": "string"
                              },
                              "beleidskaderFiets": {
                                "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
                                "nullable": true,
                                "type": "string"
                              },
                              "beleidskaderOv": {
                                "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
                                "nullable": true,
                                "type": "string"
                              },
                              "geometry": {
                                "allOf": [
                                  {
                                    "description": "GeoJSON geometry",
                                    "discriminator": {
                                      "propertyName": "type"
                                    },
                                    "properties": {
                                      "coordinates": {
                                        "description": "Based on the geometry type, a point or collection of points.",
                                        "items": {
                                          "type": "number"
                                        },
                                        "minItems": 2,
                                        "type": "array"
                                      },
                                      "type": {
                                        "description": "the geometry type",
                                        "enum": [
                                          "Point",
                                          "LineString",
                                          "Polygon",
                                          "MultiPoint",
                                          "MultiLineString",
                                          "MultiPolygon"
                                        ],
                                        "type": "string"
                                      }
                                    },
                                    "required": [
                                      "type"
                                    ],
                                    "type": "object"
                                  },
                                  {
                                    "properties": {
                                      "coordinates": {
                                        "items": {
                                          "items": {
                                            "description": "Point in 3D space",
                                            "items": {
                                              "type": "number"
                                            },
                                            "maxItems": 3,
                                            "minItems": 2,
                                            "type": "array"
                                          },
                                          "type": "array"
                                        },
                                        "type": "array"
                                      },
                                      "type": {
                                        "enum": [
                                          "MultiLineString"
                                        ],
                                        "type": "string"
                                      }
                                    }
                                  }
                                ],
                                "description": "GeoJSON geometry",
                                "type": "object"
                              },
                              "gevaarlijkeStoffenRoute": {
                                "description": "indicator voor een route voor transport van routeplichtige gevaarlijke stoffen.",
                                "nullable": true,
                                "type": "boolean"
                              },
                              "id": {
                                "description": "unieke identificatie van het record.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "type": "integer"
                              },
                              "indicatieZoneAmsterdam": {
                                "description": "indicator of link valt binnen of grotendeels binnen de gemeente Amsterdam.",
                                "nullable": true,
                                "type": "boolean"
                              },
                              "indicatieZoneMilieu": {
                                "description": "indicator Verkeersbesluit milieuzone Amsterdam (Staatscourant 2020, 32736).",
                                "nullable": true,
                                "type": "boolean"
                              },
                              "indicatieZoneZwaarVerkeer": {
                                "description": "indicator Verkeersbesluit Zone Zwaar Verkeer Amsterdam (Staatscourant 2021, 24726).",
                                "nullable": true,
                                "type": "string"
                              },
                              "laadLosRegime": {
                                "description": "het type laden-en-lossen regime.",
                                "nullable": true,
                                "type": "string"
                              },
                              "laadLosVenstertijden": {
                                "description": "toegestane tijdsperioden voor laden-en-lossen.",
                                "nullable": true,
                                "type": "string"
                              },
                              "laadLosVerbodStilTeStaanTijden": {
                                "description": "dagen en tijden voor verbod laden-en-lossen en stilstaan.",
                                "nullable": true,
                                "type": "string"
                              },
                              "lengte": {
                                "description": "lengte van de link in meters.",
                                "format": "double",
                                "nullable": true,
                                "type": "number"
                              },
                              "linknummer": {
                                "description": "unieke identificatie voor elke opgedeelde wegennetwerk object.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "nullable": true,
                                "type": "integer"
                              },
                              "percLijnInPolygoonWeg": {
                                "description": "welke % van 'lijn lengte' binnen BGT polygonen liggen met een van de volgende functies: ('rijbaan regionale weg','rijbaan autoweg','OV-baan','rijbaan autosnelweg','woonerf','rijbaan lokale weg').",
                                "format": "double",
                                "nullable": true,
                                "type": "number"
                              },
                              "rijrichting": {
                                "description": "toegestane auto rijrichtingen van de weg.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "nullable": true,
                                "type": "integer"
                              },
                              "source": {
                                "description": "nummer van source node van edge.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "nullable": true,
                                "type": "integer"
                              },
                              "straatnaam": {
                                "description": "straatnaam die van toepassing is op wegennetwerk object.",
                                "nullable": true,
                                "type": "string"
                              },
                              "target": {
                                "description": "nummer van target node van edge.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "nullable": true,
                                "type": "integer"
                              },
                              "tijdskostenBeginEind": {
                                "description": "tijdskosten om van begin naar eind van link te gaan in seconden.",
                                "format": "double",
                                "nullable": true,
                                "type": "number"
                              },
                              "tijdskostenEindBegin": {
                                "description": "tijdskosten om van eind naar begin van link te gaan in seconden.",
                                "format": "double",
                                "nullable": true,
                                "type": "number"
                              },
                              "tunnelCategorie": {
                                "description": "een Europese categorisering voor tunnels met betrekking op het vervoer van gevaarlijke stoffen.",
                                "nullable": true,
                                "type": "string"
                              },
                              "tunnelNaam": {
                                "description": "naam van de tunnel.",
                                "nullable": true,
                                "type": "string"
                              },
                              "wegFunctie": {
                                "description": "functional road class; geeft de functie van weg.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "nullable": true,
                                "type": "integer"
                              },
                              "wegbeheerder": {
                                "description": "wegbeheerder die hoort bij de weg.",
                                "nullable": true,
                                "type": "string"
                              },
                              "wettelijkeSnelheid": {
                                "description": "wettelijke Snelheid die toegestaan is op weg. Bij verschillende waarde voor de 2 rijrichtingen gaat het om maximum.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "nullable": true,
                                "type": "integer"
                              }
                            },
                            "required": [
                              "_links",
                              "id"
                            ],
                            "type": "object"
                          },
                          "type": "array"
                        }
                      },
                      "type": "object"
                    },
                    "_links": {
                      "properties": {
                        "next": {
                          "properties": {
                            "href": {
                              "example": "https://api.data.amsterdam.nl/v1/.../resource/?page=4",
                              "format": "uri",
                              "nullable": true,
                              "type": "string"
                            }
                          },
                          "type": "object"
                        },
                        "previous": {
                          "properties": {
                            "href": {
                              "example": "https://api.data.amsterdam.nl/v1/.../resource/?page=2",
                              "format": "uri",
                              "nullable": true,
                              "type": "string"
                            }
                          },
                          "type": "object"
                        },
                        "self": {
                          "properties": {
                            "href": {
                              "example": "https://api.data.amsterdam.nl/v1/.../resource/?page=3",
                              "format": "uri",
                              "type": "string"
                            }
                          },
                          "type": "object"
                        }
                      },
                      "type": "object"
                    },
                    "page": {
                      "properties": {
                        "number": {
                          "example": 3,
                          "type": "integer"
                        },
                        "size": {
                          "example": 20,
                          "type": "integer"
                        },
                        "totalElements": {
                          "example": 5,
                          "type": "integer"
                        },
                        "totalPages": {
                          "example": 3,
                          "type": "integer"
                        }
                      },
                      "type": "object"
                    }
                  },
                  "type": "object"
                }
              },
              "application/hal+json": {
                "schema": {
                  "properties": {
                    "_embedded": {
                      "properties": {
                        "breed_opgezette_wegen": {
                          "items": {
                            "description": "breedOpgezetteWegen",
                            "properties": {
                              "_links": {
                                "allOf": [
                                  {
                                    "description": "The contents of the `breedOpgezetteWegen._links` field. It contains all relationships with objects.",
                                    "properties": {
                                      "schema": {
                                        "description": "The schema field is exposed with every record",
                                        "format": "uri",
                                        "readOnly": true,
                                        "type": "string"
                                      },
                                      "self": {
                                        "description": "The identifier of the relationship to breedOpgezetteWegen.",
                                        "properties": {
                                          "href": {
                                            "format": "uri",
                                            "readOnly": true,
                                            "type": "string"
                                          },
                                          "id": {
                                            "description": "unieke identificatie van het record.",
                                            "format": "int64",
                                            "maximum": 9223372036854776000,
                                            "minimum": -9223372036854776000,
                                            "type": "integer"
                                          },
                                          "title": {
                                            "type": "string"
                                          }
                                        },
                                        "required": [
                                          "href",
                                          "id",
                                          "title"
                                        ],
                                        "type": "object"
                                      }
                                    },
                                    "required": [
                                      "schema",
                                      "self"
                                    ],
                                    "type": "object"
                                  }
                                ],
                                "title": " links"
                              },
                              "beleidskaderAuto": {
                                "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
                                "nullable": true,
                                "type": "string"
                              },
                              "beleidskaderFiets": {
                                "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
                                "nullable": true,
                                "type": "string"
                              },
                              "beleidskaderOv": {
                                "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
                                "nullable": true,
                                "type": "string"
                              },
                              "geometry": {
                                "allOf": [
                                  {
                                    "description": "GeoJSON geometry",
                                    "discriminator": {
                                      "propertyName": "type"
                                    },
                                    "properties": {
                                      "coordinates": {
                                        "description": "Based on the geometry type, a point or collection of points.",
                                        "items": {
                                          "type": "number"
                                        },
                                        "minItems": 2,
                                        "type": "array"
                                      },
                                      "type": {
                                        "description": "the geometry type",
                                        "enum": [
                                          "Point",
                                          "LineString",
                                          "Polygon",
                                          "MultiPoint",
                                          "MultiLineString",
                                          "MultiPolygon"
                                        ],
                                        "type": "string"
                                      }
                                    },
                                    "required": [
                                      "type"
                                    ],
                                    "type": "object"
                                  },
                                  {
                                    "properties": {
                                      "coordinates": {
                                        "items": {
                                          "items": {
                                            "description": "Point in 3D space",
                                            "items": {
                                              "type": "number"
                                            },
                                            "maxItems": 3,
                                            "minItems": 2,
                                            "type": "array"
                                          },
                                          "type": "array"
                                        },
                                        "type": "array"
                                      },
                                      "type": {
                                        "enum": [
                                          "MultiLineString"
                                        ],
                                        "type": "string"
                                      }
                                    }
                                  }
                                ],
                                "description": "GeoJSON geometry",
                                "type": "object"
                              },
                              "gevaarlijkeStoffenRoute": {
                                "description": "indicator voor een route voor transport van routeplichtige gevaarlijke stoffen.",
                                "nullable": true,
                                "type": "boolean"
                              },
                              "id": {
                                "description": "unieke identificatie van het record.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "type": "integer"
                              },
                              "indicatieZoneAmsterdam": {
                                "description": "indicator of link valt binnen of grotendeels binnen de gemeente Amsterdam.",
                                "nullable": true,
                                "type": "boolean"
                              },
                              "indicatieZoneMilieu": {
                                "description": "indicator Verkeersbesluit milieuzone Amsterdam (Staatscourant 2020, 32736).",
                                "nullable": true,
                                "type": "boolean"
                              },
                              "indicatieZoneZwaarVerkeer": {
                                "description": "indicator Verkeersbesluit Zone Zwaar Verkeer Amsterdam (Staatscourant 2021, 24726).",
                                "nullable": true,
                                "type": "string"
                              },
                              "laadLosRegime": {
                                "description": "het type laden-en-lossen regime.",
                                "nullable": true,
                                "type": "string"
                              },
                              "laadLosVenstertijden": {
                                "description": "toegestane tijdsperioden voor laden-en-lossen.",
                                "nullable": true,
                                "type": "string"
                              },
                              "laadLosVerbodStilTeStaanTijden": {
                                "description": "dagen en tijden voor verbod laden-en-lossen en stilstaan.",
                                "nullable": true,
                                "type": "string"
                              },
                              "lengte": {
                                "description": "lengte van de link in meters.",
                                "format": "double",
                                "nullable": true,
                                "type": "number"
                              },
                              "linknummer": {
                                "description": "unieke identificatie voor elke opgedeelde wegennetwerk object.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "nullable": true,
                                "type": "integer"
                              },
                              "percLijnInPolygoonWeg": {
                                "description": "welke % van 'lijn lengte' binnen BGT polygonen liggen met een van de volgende functies: ('rijbaan regionale weg','rijbaan autoweg','OV-baan','rijbaan autosnelweg','woonerf','rijbaan lokale weg').",
                                "format": "double",
                                "nullable": true,
                                "type": "number"
                              },
                              "rijrichting": {
                                "description": "toegestane auto rijrichtingen van de weg.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "nullable": true,
                                "type": "integer"
                              },
                              "source": {
                                "description": "nummer van source node van edge.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "nullable": true,
                                "type": "integer"
                              },
                              "straatnaam": {
                                "description": "straatnaam die van toepassing is op wegennetwerk object.",
                                "nullable": true,
                                "type": "string"
                              },
                              "target": {
                                "description": "nummer van target node van edge.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "nullable": true,
                                "type": "integer"
                              },
                              "tijdskostenBeginEind": {
                                "description": "tijdskosten om van begin naar eind van link te gaan in seconden.",
                                "format": "double",
                                "nullable": true,
                                "type": "number"
                              },
                              "tijdskostenEindBegin": {
                                "description": "tijdskosten om van eind naar begin van link te gaan in seconden.",
                                "format": "double",
                                "nullable": true,
                                "type": "number"
                              },
                              "tunnelCategorie": {
                                "description": "een Europese categorisering voor tunnels met betrekking op het vervoer van gevaarlijke stoffen.",
                                "nullable": true,
                                "type": "string"
                              },
                              "tunnelNaam": {
                                "description": "naam van de tunnel.",
                                "nullable": true,
                                "type": "string"
                              },
                              "wegFunctie": {
                                "description": "functional road class; geeft de functie van weg.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "nullable": true,
                                "type": "integer"
                              },
                              "wegbeheerder": {
                                "description": "wegbeheerder die hoort bij de weg.",
                                "nullable": true,
                                "type": "string"
                              },
                              "wettelijkeSnelheid": {
                                "description": "wettelijke Snelheid die toegestaan is op weg. Bij verschillende waarde voor de 2 rijrichtingen gaat het om maximum.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "nullable": true,
                                "type": "integer"
                              }
                            },
                            "required": [
                              "_links",
                              "id"
                            ],
                            "type": "object"
                          },
                          "type": "array"
                        }
                      },
                      "type": "object"
                    },
                    "_links": {
                      "properties": {
                        "next": {
                          "properties": {
                            "href": {
                              "example": "https://api.data.amsterdam.nl/v1/.../resource/?page=4",
                              "format": "uri",
                              "nullable": true,
                              "type": "string"
                            }
                          },
                          "type": "object"
                        },
                        "previous": {
                          "properties": {
                            "href": {
                              "example": "https://api.data.amsterdam.nl/v1/.../resource/?page=2",
                              "format": "uri",
                              "nullable": true,
                              "type": "string"
                            }
                          },
                          "type": "object"
                        },
                        "self": {
                          "properties": {
                            "href": {
                              "example": "https://api.data.amsterdam.nl/v1/.../resource/?page=3",
                              "format": "uri",
                              "type": "string"
                            }
                          },
                          "type": "object"
                        }
                      },
                      "type": "object"
                    },
                    "page": {
                      "properties": {
                        "number": {
                          "example": 3,
                          "type": "integer"
                        },
                        "size": {
                          "example": 20,
                          "type": "integer"
                        },
                        "totalElements": {
                          "example": 5,
                          "type": "integer"
                        },
                        "totalPages": {
                          "example": 3,
                          "type": "integer"
                        }
                      },
                      "type": "object"
                    }
                  },
                  "type": "object"
                }
              },
              "text/csv": {
                "schema": {
                  "properties": {
                    "_embedded": {
                      "properties": {
                        "breed_opgezette_wegen": {
                          "items": {
                            "description": "breedOpgezetteWegen",
                            "properties": {
                              "_links": {
                                "allOf": [
                                  {
                                    "description": "The contents of the `breedOpgezetteWegen._links` field. It contains all relationships with objects.",
                                    "properties": {
                                      "schema": {
                                        "description": "The schema field is exposed with every record",
                                        "format": "uri",
                                        "readOnly": true,
                                        "type": "string"
                                      },
                                      "self": {
                                        "description": "The identifier of the relationship to breedOpgezetteWegen.",
                                        "properties": {
                                          "href": {
                                            "format": "uri",
                                            "readOnly": true,
                                            "type": "string"
                                          },
                                          "id": {
                                            "description": "unieke identificatie van het record.",
                                            "format": "int64",
                                            "maximum": 9223372036854776000,
                                            "minimum": -9223372036854776000,
                                            "type": "integer"
                                          },
                                          "title": {
                                            "type": "string"
                                          }
                                        },
                                        "required": [
                                          "href",
                                          "id",
                                          "title"
                                        ],
                                        "type": "object"
                                      }
                                    },
                                    "required": [
                                      "schema",
                                      "self"
                                    ],
                                    "type": "object"
                                  }
                                ],
                                "title": " links"
                              },
                              "beleidskaderAuto": {
                                "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
                                "nullable": true,
                                "type": "string"
                              },
                              "beleidskaderFiets": {
                                "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
                                "nullable": true,
                                "type": "string"
                              },
                              "beleidskaderOv": {
                                "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
                                "nullable": true,
                                "type": "string"
                              },
                              "geometry": {
                                "allOf": [
                                  {
                                    "description": "GeoJSON geometry",
                                    "discriminator": {
                                      "propertyName": "type"
                                    },
                                    "properties": {
                                      "coordinates": {
                                        "description": "Based on the geometry type, a point or collection of points.",
                                        "items": {
                                          "type": "number"
                                        },
                                        "minItems": 2,
                                        "type": "array"
                                      },
                                      "type": {
                                        "description": "the geometry type",
                                        "enum": [
                                          "Point",
                                          "LineString",
                                          "Polygon",
                                          "MultiPoint",
                                          "MultiLineString",
                                          "MultiPolygon"
                                        ],
                                        "type": "string"
                                      }
                                    },
                                    "required": [
                                      "type"
                                    ],
                                    "type": "object"
                                  },
                                  {
                                    "properties": {
                                      "coordinates": {
                                        "items": {
                                          "items": {
                                            "description": "Point in 3D space",
                                            "items": {
                                              "type": "number"
                                            },
                                            "maxItems": 3,
                                            "minItems": 2,
                                            "type": "array"
                                          },
                                          "type": "array"
                                        },
                                        "type": "array"
                                      },
                                      "type": {
                                        "enum": [
                                          "MultiLineString"
                                        ],
                                        "type": "string"
                                      }
                                    }
                                  }
                                ],
                                "description": "GeoJSON geometry",
                                "type": "object"
                              },
                              "gevaarlijkeStoffenRoute": {
                                "description": "indicator voor een route voor transport van routeplichtige gevaarlijke stoffen.",
                                "nullable": true,
                                "type": "boolean"
                              },
                              "id": {
                                "description": "unieke identificatie van het record.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "type": "integer"
                              },
                              "indicatieZoneAmsterdam": {
                                "description": "indicator of link valt binnen of grotendeels binnen de gemeente Amsterdam.",
                                "nullable": true,
                                "type": "boolean"
                              },
                              "indicatieZoneMilieu": {
                                "description": "indicator Verkeersbesluit milieuzone Amsterdam (Staatscourant 2020, 32736).",
                                "nullable": true,
                                "type": "boolean"
                              },
                              "indicatieZoneZwaarVerkeer": {
                                "description": "indicator Verkeersbesluit Zone Zwaar Verkeer Amsterdam (Staatscourant 2021, 24726).",
                                "nullable": true,
                                "type": "string"
                              },
                              "laadLosRegime": {
                                "description": "het type laden-en-lossen regime.",
                                "nullable": true,
                                "type": "string"
                              },
                              "laadLosVenstertijden": {
                                "description": "toegestane tijdsperioden voor laden-en-lossen.",
                                "nullable": true,
                                "type": "string"
                              },
                              "laadLosVerbodStilTeStaanTijden": {
                                "description": "dagen en tijden voor verbod laden-en-lossen en stilstaan.",
                                "nullable": true,
                                "type": "string"
                              },
                              "lengte": {
                                "description": "lengte van de link in meters.",
                                "format": "double",
                                "nullable": true,
                                "type": "number"
                              },
                              "linknummer": {
                                "description": "unieke identificatie voor elke opgedeelde wegennetwerk object.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "nullable": true,
                                "type": "integer"
                              },
                              "percLijnInPolygoonWeg": {
                                "description": "welke % van 'lijn lengte' binnen BGT polygonen liggen met een van de volgende functies: ('rijbaan regionale weg','rijbaan autoweg','OV-baan','rijbaan autosnelweg','woonerf','rijbaan lokale weg').",
                                "format": "double",
                                "nullable": true,
                                "type": "number"
                              },
                              "rijrichting": {
                                "description": "toegestane auto rijrichtingen van de weg.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "nullable": true,
                                "type": "integer"
                              },
                              "source": {
                                "description": "nummer van source node van edge.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "nullable": true,
                                "type": "integer"
                              },
                              "straatnaam": {
                                "description": "straatnaam die van toepassing is op wegennetwerk object.",
                                "nullable": true,
                                "type": "string"
                              },
                              "target": {
                                "description": "nummer van target node van edge.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "nullable": true,
                                "type": "integer"
                              },
                              "tijdskostenBeginEind": {
                                "description": "tijdskosten om van begin naar eind van link te gaan in seconden.",
                                "format": "double",
                                "nullable": true,
                                "type": "number"
                              },
                              "tijdskostenEindBegin": {
                                "description": "tijdskosten om van eind naar begin van link te gaan in seconden.",
                                "format": "double",
                                "nullable": true,
                                "type": "number"
                              },
                              "tunnelCategorie": {
                                "description": "een Europese categorisering voor tunnels met betrekking op het vervoer van gevaarlijke stoffen.",
                                "nullable": true,
                                "type": "string"
                              },
                              "tunnelNaam": {
                                "description": "naam van de tunnel.",
                                "nullable": true,
                                "type": "string"
                              },
                              "wegFunctie": {
                                "description": "functional road class; geeft de functie van weg.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "nullable": true,
                                "type": "integer"
                              },
                              "wegbeheerder": {
                                "description": "wegbeheerder die hoort bij de weg.",
                                "nullable": true,
                                "type": "string"
                              },
                              "wettelijkeSnelheid": {
                                "description": "wettelijke Snelheid die toegestaan is op weg. Bij verschillende waarde voor de 2 rijrichtingen gaat het om maximum.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "nullable": true,
                                "type": "integer"
                              }
                            },
                            "required": [
                              "_links",
                              "id"
                            ],
                            "type": "object"
                          },
                          "type": "array"
                        }
                      },
                      "type": "object"
                    },
                    "_links": {
                      "properties": {
                        "next": {
                          "properties": {
                            "href": {
                              "example": "https://api.data.amsterdam.nl/v1/.../resource/?page=4",
                              "format": "uri",
                              "nullable": true,
                              "type": "string"
                            }
                          },
                          "type": "object"
                        },
                        "previous": {
                          "properties": {
                            "href": {
                              "example": "https://api.data.amsterdam.nl/v1/.../resource/?page=2",
                              "format": "uri",
                              "nullable": true,
                              "type": "string"
                            }
                          },
                          "type": "object"
                        },
                        "self": {
                          "properties": {
                            "href": {
                              "example": "https://api.data.amsterdam.nl/v1/.../resource/?page=3",
                              "format": "uri",
                              "type": "string"
                            }
                          },
                          "type": "object"
                        }
                      },
                      "type": "object"
                    },
                    "page": {
                      "properties": {
                        "number": {
                          "example": 3,
                          "type": "integer"
                        },
                        "size": {
                          "example": 20,
                          "type": "integer"
                        },
                        "totalElements": {
                          "example": 5,
                          "type": "integer"
                        },
                        "totalPages": {
                          "example": 3,
                          "type": "integer"
                        }
                      },
                      "type": "object"
                    }
                  },
                  "type": "object"
                }
              }
            },
            "description": ""
          }
        },
        "tags": [
          "breed_opgezette_wegen"
        ]
      }
    },
    "/breed_opgezette_wegen/{id}": {
      "get": {
        "operationId": "wegenbestand_zone_zwaar_verkeer_breed_opgezette_wegen_retrieve",
        "parameters": [
          {
            "description": "Accept-Crs header for Geo queries",
            "in": "header",
            "name": "Accept-Crs",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Content-Crs header for Geo queries",
            "in": "header",
            "name": "Content-Crs",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Api Key for statistical purposes, not for authentication",
            "in": "header",
            "name": "X-Api-Key",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Specify type of header for csv file",
            "in": "query",
            "name": "_csv_header",
            "schema": {
              "enum": [
                "id",
                "title",
                "none"
              ],
              "type": "string"
            }
          },
          {
            "description": "Specify type of separator for csv file",
            "in": "query",
            "name": "_csv_separator",
            "schema": {
              "enum": [
                ",",
                ";"
              ],
              "type": "string"
            }
          },
          {
            "description": "Allow to expand relations.",
            "in": "query",
            "name": "_expand",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Comma separated list of named relations to expand.",
            "in": "query",
            "name": "_expandScope",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Comma-separated list of fields to display",
            "in": "query",
            "name": "_fields",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Select the export format",
            "in": "query",
            "name": "_format",
            "schema": {
              "enum": [
                "json",
                "csv",
                "geojson"
              ],
              "type": "string"
            }
          },
          {
            "description": "Which field to use when ordering the results.",
            "in": "query",
            "name": "_sort",
            "required": false,
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
            "in": "query",
            "name": "beleidskaderAuto",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "beleidskaderAuto[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "beleidskaderAuto[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "beleidskaderAuto[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "beleidskaderAuto[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "beleidskaderAuto[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
            "in": "query",
            "name": "beleidskaderFiets",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "beleidskaderFiets[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "beleidskaderFiets[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "beleidskaderFiets[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "beleidskaderFiets[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "beleidskaderFiets[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
            "in": "query",
            "name": "beleidskaderOv",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "beleidskaderOv[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "beleidskaderOv[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "beleidskaderOv[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "beleidskaderOv[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "beleidskaderOv[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "indicator voor een route voor transport van routeplichtige gevaarlijke stoffen.",
            "in": "query",
            "name": "gevaarlijkeStoffenRoute",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "gevaarlijkeStoffenRoute[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "in": "path",
            "name": "id",
            "required": true,
            "schema": {
              "pattern": "^[^/]+$",
              "type": "string"
            }
          },
          {
            "description": "unieke identificatie van het record.",
            "in": "query",
            "name": "id",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "id[gt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "id[gte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "id[in]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "id[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "id[lt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "id[lte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "id[not]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            }
          },
          {
            "description": "indicator of link valt binnen of grotendeels binnen de gemeente Amsterdam.",
            "in": "query",
            "name": "indicatieZoneAmsterdam",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "indicatieZoneAmsterdam[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "indicator Verkeersbesluit milieuzone Amsterdam (Staatscourant 2020, 32736).",
            "in": "query",
            "name": "indicatieZoneMilieu",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "indicatieZoneMilieu[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "indicator Verkeersbesluit Zone Zwaar Verkeer Amsterdam (Staatscourant 2021, 24726).",
            "in": "query",
            "name": "indicatieZoneZwaarVerkeer",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "indicatieZoneZwaarVerkeer[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "indicatieZoneZwaarVerkeer[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "indicatieZoneZwaarVerkeer[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "indicatieZoneZwaarVerkeer[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "indicatieZoneZwaarVerkeer[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "het type laden-en-lossen regime.",
            "in": "query",
            "name": "laadLosRegime",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "laadLosRegime[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "laadLosRegime[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "laadLosRegime[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "laadLosRegime[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "laadLosRegime[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "toegestane tijdsperioden voor laden-en-lossen.",
            "in": "query",
            "name": "laadLosVenstertijden",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "laadLosVenstertijden[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "laadLosVenstertijden[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "laadLosVenstertijden[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "laadLosVenstertijden[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "laadLosVenstertijden[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "dagen en tijden voor verbod laden-en-lossen en stilstaan.",
            "in": "query",
            "name": "laadLosVerbodStilTeStaanTijden",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "laadLosVerbodStilTeStaanTijden[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "laadLosVerbodStilTeStaanTijden[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "laadLosVerbodStilTeStaanTijden[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "laadLosVerbodStilTeStaanTijden[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "laadLosVerbodStilTeStaanTijden[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "lengte van de link in meters.",
            "in": "query",
            "name": "lengte",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "lengte[gt]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "lengte[gte]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "lengte[in]",
            "schema": {
              "items": {
                "type": "number"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "lengte[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "lengte[lt]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "lengte[lte]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "lengte[not]",
            "schema": {
              "items": {
                "type": "number"
              },
              "type": "array"
            }
          },
          {
            "description": "unieke identificatie voor elke opgedeelde wegennetwerk object.",
            "in": "query",
            "name": "linknummer",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "linknummer[gt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "linknummer[gte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "linknummer[in]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "linknummer[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "linknummer[lt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "linknummer[lte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "linknummer[not]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            }
          },
          {
            "description": "welke % van 'lijn lengte' binnen BGT polygonen liggen met een van de volgende functies: ('rijbaan regionale weg','rijbaan autoweg','OV-baan','rijbaan autosnelweg','woonerf','rijbaan lokale weg').",
            "in": "query",
            "name": "percLijnInPolygoonWeg",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "percLijnInPolygoonWeg[gt]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "percLijnInPolygoonWeg[gte]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "percLijnInPolygoonWeg[in]",
            "schema": {
              "items": {
                "type": "number"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "percLijnInPolygoonWeg[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "percLijnInPolygoonWeg[lt]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "percLijnInPolygoonWeg[lte]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "percLijnInPolygoonWeg[not]",
            "schema": {
              "items": {
                "type": "number"
              },
              "type": "array"
            }
          },
          {
            "description": "toegestane auto rijrichtingen van de weg.",
            "in": "query",
            "name": "rijrichting",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "rijrichting[gt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "rijrichting[gte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "rijrichting[in]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "rijrichting[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "rijrichting[lt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "rijrichting[lte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "rijrichting[not]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            }
          },
          {
            "description": "nummer van source node van edge.",
            "in": "query",
            "name": "source",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "source[gt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "source[gte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "source[in]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "source[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "source[lt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "source[lte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "source[not]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            }
          },
          {
            "description": "straatnaam die van toepassing is op wegennetwerk object.",
            "in": "query",
            "name": "straatnaam",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "straatnaam[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "straatnaam[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "straatnaam[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "straatnaam[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "straatnaam[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "nummer van target node van edge.",
            "in": "query",
            "name": "target",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "target[gt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "target[gte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "target[in]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "target[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "target[lt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "target[lte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "target[not]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            }
          },
          {
            "description": "tijdskosten om van begin naar eind van link te gaan in seconden.",
            "in": "query",
            "name": "tijdskostenBeginEind",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "tijdskostenBeginEind[gt]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "tijdskostenBeginEind[gte]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "tijdskostenBeginEind[in]",
            "schema": {
              "items": {
                "type": "number"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "tijdskostenBeginEind[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "tijdskostenBeginEind[lt]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "tijdskostenBeginEind[lte]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "tijdskostenBeginEind[not]",
            "schema": {
              "items": {
                "type": "number"
              },
              "type": "array"
            }
          },
          {
            "description": "tijdskosten om van eind naar begin van link te gaan in seconden.",
            "in": "query",
            "name": "tijdskostenEindBegin",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "tijdskostenEindBegin[gt]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "tijdskostenEindBegin[gte]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "tijdskostenEindBegin[in]",
            "schema": {
              "items": {
                "type": "number"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "tijdskostenEindBegin[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "tijdskostenEindBegin[lt]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "tijdskostenEindBegin[lte]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "tijdskostenEindBegin[not]",
            "schema": {
              "items": {
                "type": "number"
              },
              "type": "array"
            }
          },
          {
            "description": "een Europese categorisering voor tunnels met betrekking op het vervoer van gevaarlijke stoffen.",
            "in": "query",
            "name": "tunnelCategorie",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "tunnelCategorie[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "tunnelCategorie[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "tunnelCategorie[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "tunnelCategorie[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "tunnelCategorie[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "naam van de tunnel.",
            "in": "query",
            "name": "tunnelNaam",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "tunnelNaam[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "tunnelNaam[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "tunnelNaam[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "tunnelNaam[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "tunnelNaam[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "functional road class; geeft de functie van weg.",
            "in": "query",
            "name": "wegFunctie",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "wegFunctie[gt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "wegFunctie[gte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "wegFunctie[in]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "wegFunctie[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "wegFunctie[lt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "wegFunctie[lte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "wegFunctie[not]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            }
          },
          {
            "description": "wegbeheerder die hoort bij de weg.",
            "in": "query",
            "name": "wegbeheerder",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "wegbeheerder[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "wegbeheerder[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "wegbeheerder[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "wegbeheerder[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "wegbeheerder[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "wettelijke Snelheid die toegestaan is op weg. Bij verschillende waarde voor de 2 rijrichtingen gaat het om maximum.",
            "in": "query",
            "name": "wettelijkeSnelheid",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "wettelijkeSnelheid[gt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "wettelijkeSnelheid[gte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "wettelijkeSnelheid[in]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "wettelijkeSnelheid[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "wettelijkeSnelheid[lt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "wettelijkeSnelheid[lte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "wettelijkeSnelheid[not]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/geo+json": {
                "schema": {
                  "description": "breedOpgezetteWegen",
                  "properties": {
                    "_links": {
                      "allOf": [
                        {
                          "description": "The contents of the `breedOpgezetteWegen._links` field. It contains all relationships with objects.",
                          "properties": {
                            "schema": {
                              "description": "The schema field is exposed with every record",
                              "format": "uri",
                              "readOnly": true,
                              "type": "string"
                            },
                            "self": {
                              "description": "The identifier of the relationship to breedOpgezetteWegen.",
                              "properties": {
                                "href": {
                                  "format": "uri",
                                  "readOnly": true,
                                  "type": "string"
                                },
                                "id": {
                                  "description": "unieke identificatie van het record.",
                                  "format": "int64",
                                  "maximum": 9223372036854776000,
                                  "minimum": -9223372036854776000,
                                  "type": "integer"
                                },
                                "title": {
                                  "type": "string"
                                }
                              },
                              "required": [
                                "href",
                                "id",
                                "title"
                              ],
                              "type": "object"
                            }
                          },
                          "required": [
                            "schema",
                            "self"
                          ],
                          "type": "object"
                        }
                      ],
                      "title": " links"
                    },
                    "beleidskaderAuto": {
                      "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
                      "nullable": true,
                      "type": "string"
                    },
                    "beleidskaderFiets": {
                      "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
                      "nullable": true,
                      "type": "string"
                    },
                    "beleidskaderOv": {
                      "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
                      "nullable": true,
                      "type": "string"
                    },
                    "geometry": {
                      "allOf": [
                        {
                          "description": "GeoJSON geometry",
                          "discriminator": {
                            "propertyName": "type"
                          },
                          "properties": {
                            "coordinates": {
                              "description": "Based on the geometry type, a point or collection of points.",
                              "items": {
                                "type": "number"
                              },
                              "minItems": 2,
                              "type": "array"
                            },
                            "type": {
                              "description": "the geometry type",
                              "enum": [
                                "Point",
                                "LineString",
                                "Polygon",
                                "MultiPoint",
                                "MultiLineString",
                                "MultiPolygon"
                              ],
                              "type": "string"
                            }
                          },
                          "required": [
                            "type"
                          ],
                          "type": "object"
                        },
                        {
                          "properties": {
                            "coordinates": {
                              "items": {
                                "items": {
                                  "description": "Point in 3D space",
                                  "items": {
                                    "type": "number"
                                  },
                                  "maxItems": 3,
                                  "minItems": 2,
                                  "type": "array"
                                },
                                "type": "array"
                              },
                              "type": "array"
                            },
                            "type": {
                              "enum": [
                                "MultiLineString"
                              ],
                              "type": "string"
                            }
                          }
                        }
                      ],
                      "description": "GeoJSON geometry",
                      "type": "object"
                    },
                    "gevaarlijkeStoffenRoute": {
                      "description": "indicator voor een route voor transport van routeplichtige gevaarlijke stoffen.",
                      "nullable": true,
                      "type": "boolean"
                    },
                    "id": {
                      "description": "unieke identificatie van het record.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "type": "integer"
                    },
                    "indicatieZoneAmsterdam": {
                      "description": "indicator of link valt binnen of grotendeels binnen de gemeente Amsterdam.",
                      "nullable": true,
                      "type": "boolean"
                    },
                    "indicatieZoneMilieu": {
                      "description": "indicator Verkeersbesluit milieuzone Amsterdam (Staatscourant 2020, 32736).",
                      "nullable": true,
                      "type": "boolean"
                    },
                    "indicatieZoneZwaarVerkeer": {
                      "description": "indicator Verkeersbesluit Zone Zwaar Verkeer Amsterdam (Staatscourant 2021, 24726).",
                      "nullable": true,
                      "type": "string"
                    },
                    "laadLosRegime": {
                      "description": "het type laden-en-lossen regime.",
                      "nullable": true,
                      "type": "string"
                    },
                    "laadLosVenstertijden": {
                      "description": "toegestane tijdsperioden voor laden-en-lossen.",
                      "nullable": true,
                      "type": "string"
                    },
                    "laadLosVerbodStilTeStaanTijden": {
                      "description": "dagen en tijden voor verbod laden-en-lossen en stilstaan.",
                      "nullable": true,
                      "type": "string"
                    },
                    "lengte": {
                      "description": "lengte van de link in meters.",
                      "format": "double",
                      "nullable": true,
                      "type": "number"
                    },
                    "linknummer": {
                      "description": "unieke identificatie voor elke opgedeelde wegennetwerk object.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "percLijnInPolygoonWeg": {
                      "description": "welke % van 'lijn lengte' binnen BGT polygonen liggen met een van de volgende functies: ('rijbaan regionale weg','rijbaan autoweg','OV-baan','rijbaan autosnelweg','woonerf','rijbaan lokale weg').",
                      "format": "double",
                      "nullable": true,
                      "type": "number"
                    },
                    "rijrichting": {
                      "description": "toegestane auto rijrichtingen van de weg.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "source": {
                      "description": "nummer van source node van edge.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "straatnaam": {
                      "description": "straatnaam die van toepassing is op wegennetwerk object.",
                      "nullable": true,
                      "type": "string"
                    },
                    "target": {
                      "description": "nummer van target node van edge.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "tijdskostenBeginEind": {
                      "description": "tijdskosten om van begin naar eind van link te gaan in seconden.",
                      "format": "double",
                      "nullable": true,
                      "type": "number"
                    },
                    "tijdskostenEindBegin": {
                      "description": "tijdskosten om van eind naar begin van link te gaan in seconden.",
                      "format": "double",
                      "nullable": true,
                      "type": "number"
                    },
                    "tunnelCategorie": {
                      "description": "een Europese categorisering voor tunnels met betrekking op het vervoer van gevaarlijke stoffen.",
                      "nullable": true,
                      "type": "string"
                    },
                    "tunnelNaam": {
                      "description": "naam van de tunnel.",
                      "nullable": true,
                      "type": "string"
                    },
                    "wegFunctie": {
                      "description": "functional road class; geeft de functie van weg.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "wegbeheerder": {
                      "description": "wegbeheerder die hoort bij de weg.",
                      "nullable": true,
                      "type": "string"
                    },
                    "wettelijkeSnelheid": {
                      "description": "wettelijke Snelheid die toegestaan is op weg. Bij verschillende waarde voor de 2 rijrichtingen gaat het om maximum.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    }
                  },
                  "required": [
                    "_links",
                    "id"
                  ],
                  "type": "object"
                }
              },
              "application/hal+json": {
                "schema": {
                  "description": "breedOpgezetteWegen",
                  "properties": {
                    "_links": {
                      "allOf": [
                        {
                          "description": "The contents of the `breedOpgezetteWegen._links` field. It contains all relationships with objects.",
                          "properties": {
                            "schema": {
                              "description": "The schema field is exposed with every record",
                              "format": "uri",
                              "readOnly": true,
                              "type": "string"
                            },
                            "self": {
                              "description": "The identifier of the relationship to breedOpgezetteWegen.",
                              "properties": {
                                "href": {
                                  "format": "uri",
                                  "readOnly": true,
                                  "type": "string"
                                },
                                "id": {
                                  "description": "unieke identificatie van het record.",
                                  "format": "int64",
                                  "maximum": 9223372036854776000,
                                  "minimum": -9223372036854776000,
                                  "type": "integer"
                                },
                                "title": {
                                  "type": "string"
                                }
                              },
                              "required": [
                                "href",
                                "id",
                                "title"
                              ],
                              "type": "object"
                            }
                          },
                          "required": [
                            "schema",
                            "self"
                          ],
                          "type": "object"
                        }
                      ],
                      "title": " links"
                    },
                    "beleidskaderAuto": {
                      "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
                      "nullable": true,
                      "type": "string"
                    },
                    "beleidskaderFiets": {
                      "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
                      "nullable": true,
                      "type": "string"
                    },
                    "beleidskaderOv": {
                      "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
                      "nullable": true,
                      "type": "string"
                    },
                    "geometry": {
                      "allOf": [
                        {
                          "description": "GeoJSON geometry",
                          "discriminator": {
                            "propertyName": "type"
                          },
                          "properties": {
                            "coordinates": {
                              "description": "Based on the geometry type, a point or collection of points.",
                              "items": {
                                "type": "number"
                              },
                              "minItems": 2,
                              "type": "array"
                            },
                            "type": {
                              "description": "the geometry type",
                              "enum": [
                                "Point",
                                "LineString",
                                "Polygon",
                                "MultiPoint",
                                "MultiLineString",
                                "MultiPolygon"
                              ],
                              "type": "string"
                            }
                          },
                          "required": [
                            "type"
                          ],
                          "type": "object"
                        },
                        {
                          "properties": {
                            "coordinates": {
                              "items": {
                                "items": {
                                  "description": "Point in 3D space",
                                  "items": {
                                    "type": "number"
                                  },
                                  "maxItems": 3,
                                  "minItems": 2,
                                  "type": "array"
                                },
                                "type": "array"
                              },
                              "type": "array"
                            },
                            "type": {
                              "enum": [
                                "MultiLineString"
                              ],
                              "type": "string"
                            }
                          }
                        }
                      ],
                      "description": "GeoJSON geometry",
                      "type": "object"
                    },
                    "gevaarlijkeStoffenRoute": {
                      "description": "indicator voor een route voor transport van routeplichtige gevaarlijke stoffen.",
                      "nullable": true,
                      "type": "boolean"
                    },
                    "id": {
                      "description": "unieke identificatie van het record.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "type": "integer"
                    },
                    "indicatieZoneAmsterdam": {
                      "description": "indicator of link valt binnen of grotendeels binnen de gemeente Amsterdam.",
                      "nullable": true,
                      "type": "boolean"
                    },
                    "indicatieZoneMilieu": {
                      "description": "indicator Verkeersbesluit milieuzone Amsterdam (Staatscourant 2020, 32736).",
                      "nullable": true,
                      "type": "boolean"
                    },
                    "indicatieZoneZwaarVerkeer": {
                      "description": "indicator Verkeersbesluit Zone Zwaar Verkeer Amsterdam (Staatscourant 2021, 24726).",
                      "nullable": true,
                      "type": "string"
                    },
                    "laadLosRegime": {
                      "description": "het type laden-en-lossen regime.",
                      "nullable": true,
                      "type": "string"
                    },
                    "laadLosVenstertijden": {
                      "description": "toegestane tijdsperioden voor laden-en-lossen.",
                      "nullable": true,
                      "type": "string"
                    },
                    "laadLosVerbodStilTeStaanTijden": {
                      "description": "dagen en tijden voor verbod laden-en-lossen en stilstaan.",
                      "nullable": true,
                      "type": "string"
                    },
                    "lengte": {
                      "description": "lengte van de link in meters.",
                      "format": "double",
                      "nullable": true,
                      "type": "number"
                    },
                    "linknummer": {
                      "description": "unieke identificatie voor elke opgedeelde wegennetwerk object.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "percLijnInPolygoonWeg": {
                      "description": "welke % van 'lijn lengte' binnen BGT polygonen liggen met een van de volgende functies: ('rijbaan regionale weg','rijbaan autoweg','OV-baan','rijbaan autosnelweg','woonerf','rijbaan lokale weg').",
                      "format": "double",
                      "nullable": true,
                      "type": "number"
                    },
                    "rijrichting": {
                      "description": "toegestane auto rijrichtingen van de weg.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "source": {
                      "description": "nummer van source node van edge.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "straatnaam": {
                      "description": "straatnaam die van toepassing is op wegennetwerk object.",
                      "nullable": true,
                      "type": "string"
                    },
                    "target": {
                      "description": "nummer van target node van edge.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "tijdskostenBeginEind": {
                      "description": "tijdskosten om van begin naar eind van link te gaan in seconden.",
                      "format": "double",
                      "nullable": true,
                      "type": "number"
                    },
                    "tijdskostenEindBegin": {
                      "description": "tijdskosten om van eind naar begin van link te gaan in seconden.",
                      "format": "double",
                      "nullable": true,
                      "type": "number"
                    },
                    "tunnelCategorie": {
                      "description": "een Europese categorisering voor tunnels met betrekking op het vervoer van gevaarlijke stoffen.",
                      "nullable": true,
                      "type": "string"
                    },
                    "tunnelNaam": {
                      "description": "naam van de tunnel.",
                      "nullable": true,
                      "type": "string"
                    },
                    "wegFunctie": {
                      "description": "functional road class; geeft de functie van weg.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "wegbeheerder": {
                      "description": "wegbeheerder die hoort bij de weg.",
                      "nullable": true,
                      "type": "string"
                    },
                    "wettelijkeSnelheid": {
                      "description": "wettelijke Snelheid die toegestaan is op weg. Bij verschillende waarde voor de 2 rijrichtingen gaat het om maximum.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    }
                  },
                  "required": [
                    "_links",
                    "id"
                  ],
                  "type": "object"
                }
              },
              "text/csv": {
                "schema": {
                  "description": "breedOpgezetteWegen",
                  "properties": {
                    "_links": {
                      "allOf": [
                        {
                          "description": "The contents of the `breedOpgezetteWegen._links` field. It contains all relationships with objects.",
                          "properties": {
                            "schema": {
                              "description": "The schema field is exposed with every record",
                              "format": "uri",
                              "readOnly": true,
                              "type": "string"
                            },
                            "self": {
                              "description": "The identifier of the relationship to breedOpgezetteWegen.",
                              "properties": {
                                "href": {
                                  "format": "uri",
                                  "readOnly": true,
                                  "type": "string"
                                },
                                "id": {
                                  "description": "unieke identificatie van het record.",
                                  "format": "int64",
                                  "maximum": 9223372036854776000,
                                  "minimum": -9223372036854776000,
                                  "type": "integer"
                                },
                                "title": {
                                  "type": "string"
                                }
                              },
                              "required": [
                                "href",
                                "id",
                                "title"
                              ],
                              "type": "object"
                            }
                          },
                          "required": [
                            "schema",
                            "self"
                          ],
                          "type": "object"
                        }
                      ],
                      "title": " links"
                    },
                    "beleidskaderAuto": {
                      "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
                      "nullable": true,
                      "type": "string"
                    },
                    "beleidskaderFiets": {
                      "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
                      "nullable": true,
                      "type": "string"
                    },
                    "beleidskaderOv": {
                      "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
                      "nullable": true,
                      "type": "string"
                    },
                    "geometry": {
                      "allOf": [
                        {
                          "description": "GeoJSON geometry",
                          "discriminator": {
                            "propertyName": "type"
                          },
                          "properties": {
                            "coordinates": {
                              "description": "Based on the geometry type, a point or collection of points.",
                              "items": {
                                "type": "number"
                              },
                              "minItems": 2,
                              "type": "array"
                            },
                            "type": {
                              "description": "the geometry type",
                              "enum": [
                                "Point",
                                "LineString",
                                "Polygon",
                                "MultiPoint",
                                "MultiLineString",
                                "MultiPolygon"
                              ],
                              "type": "string"
                            }
                          },
                          "required": [
                            "type"
                          ],
                          "type": "object"
                        },
                        {
                          "properties": {
                            "coordinates": {
                              "items": {
                                "items": {
                                  "description": "Point in 3D space",
                                  "items": {
                                    "type": "number"
                                  },
                                  "maxItems": 3,
                                  "minItems": 2,
                                  "type": "array"
                                },
                                "type": "array"
                              },
                              "type": "array"
                            },
                            "type": {
                              "enum": [
                                "MultiLineString"
                              ],
                              "type": "string"
                            }
                          }
                        }
                      ],
                      "description": "GeoJSON geometry",
                      "type": "object"
                    },
                    "gevaarlijkeStoffenRoute": {
                      "description": "indicator voor een route voor transport van routeplichtige gevaarlijke stoffen.",
                      "nullable": true,
                      "type": "boolean"
                    },
                    "id": {
                      "description": "unieke identificatie van het record.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "type": "integer"
                    },
                    "indicatieZoneAmsterdam": {
                      "description": "indicator of link valt binnen of grotendeels binnen de gemeente Amsterdam.",
                      "nullable": true,
                      "type": "boolean"
                    },
                    "indicatieZoneMilieu": {
                      "description": "indicator Verkeersbesluit milieuzone Amsterdam (Staatscourant 2020, 32736).",
                      "nullable": true,
                      "type": "boolean"
                    },
                    "indicatieZoneZwaarVerkeer": {
                      "description": "indicator Verkeersbesluit Zone Zwaar Verkeer Amsterdam (Staatscourant 2021, 24726).",
                      "nullable": true,
                      "type": "string"
                    },
                    "laadLosRegime": {
                      "description": "het type laden-en-lossen regime.",
                      "nullable": true,
                      "type": "string"
                    },
                    "laadLosVenstertijden": {
                      "description": "toegestane tijdsperioden voor laden-en-lossen.",
                      "nullable": true,
                      "type": "string"
                    },
                    "laadLosVerbodStilTeStaanTijden": {
                      "description": "dagen en tijden voor verbod laden-en-lossen en stilstaan.",
                      "nullable": true,
                      "type": "string"
                    },
                    "lengte": {
                      "description": "lengte van de link in meters.",
                      "format": "double",
                      "nullable": true,
                      "type": "number"
                    },
                    "linknummer": {
                      "description": "unieke identificatie voor elke opgedeelde wegennetwerk object.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "percLijnInPolygoonWeg": {
                      "description": "welke % van 'lijn lengte' binnen BGT polygonen liggen met een van de volgende functies: ('rijbaan regionale weg','rijbaan autoweg','OV-baan','rijbaan autosnelweg','woonerf','rijbaan lokale weg').",
                      "format": "double",
                      "nullable": true,
                      "type": "number"
                    },
                    "rijrichting": {
                      "description": "toegestane auto rijrichtingen van de weg.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "source": {
                      "description": "nummer van source node van edge.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "straatnaam": {
                      "description": "straatnaam die van toepassing is op wegennetwerk object.",
                      "nullable": true,
                      "type": "string"
                    },
                    "target": {
                      "description": "nummer van target node van edge.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "tijdskostenBeginEind": {
                      "description": "tijdskosten om van begin naar eind van link te gaan in seconden.",
                      "format": "double",
                      "nullable": true,
                      "type": "number"
                    },
                    "tijdskostenEindBegin": {
                      "description": "tijdskosten om van eind naar begin van link te gaan in seconden.",
                      "format": "double",
                      "nullable": true,
                      "type": "number"
                    },
                    "tunnelCategorie": {
                      "description": "een Europese categorisering voor tunnels met betrekking op het vervoer van gevaarlijke stoffen.",
                      "nullable": true,
                      "type": "string"
                    },
                    "tunnelNaam": {
                      "description": "naam van de tunnel.",
                      "nullable": true,
                      "type": "string"
                    },
                    "wegFunctie": {
                      "description": "functional road class; geeft de functie van weg.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "wegbeheerder": {
                      "description": "wegbeheerder die hoort bij de weg.",
                      "nullable": true,
                      "type": "string"
                    },
                    "wettelijkeSnelheid": {
                      "description": "wettelijke Snelheid die toegestaan is op weg. Bij verschillende waarde voor de 2 rijrichtingen gaat het om maximum.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    }
                  },
                  "required": [
                    "_links",
                    "id"
                  ],
                  "type": "object"
                }
              }
            },
            "description": ""
          }
        },
        "tags": [
          "breed_opgezette_wegen"
        ]
      }
    },
    "/buiten": {
      "get": {
        "operationId": "wegenbestand_zone_zwaar_verkeer_buiten_list",
        "parameters": [
          {
            "description": "Accept-Crs header for Geo queries",
            "in": "header",
            "name": "Accept-Crs",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Content-Crs header for Geo queries",
            "in": "header",
            "name": "Content-Crs",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Api Key for statistical purposes, not for authentication",
            "in": "header",
            "name": "X-Api-Key",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Include a count of the total result set and the number of pages.Only works for responses that return a page.",
            "in": "query",
            "name": "_count",
            "required": false,
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Specify type of header for csv file",
            "in": "query",
            "name": "_csv_header",
            "schema": {
              "enum": [
                "id",
                "title",
                "none"
              ],
              "type": "string"
            }
          },
          {
            "description": "Specify type of separator for csv file",
            "in": "query",
            "name": "_csv_separator",
            "schema": {
              "enum": [
                ",",
                ";"
              ],
              "type": "string"
            }
          },
          {
            "description": "Allow to expand relations.",
            "in": "query",
            "name": "_expand",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Comma separated list of named relations to expand.",
            "in": "query",
            "name": "_expandScope",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Comma-separated list of fields to display",
            "in": "query",
            "name": "_fields",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Select the export format",
            "in": "query",
            "name": "_format",
            "schema": {
              "enum": [
                "json",
                "csv",
                "geojson"
              ],
              "type": "string"
            }
          },
          {
            "description": "Number of results to return per page.",
            "in": "query",
            "name": "_pageSize",
            "required": false,
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Which field to use when ordering the results.",
            "in": "query",
            "name": "_sort",
            "required": false,
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
            "in": "query",
            "name": "beleidskaderAuto",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "beleidskaderAuto[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "beleidskaderAuto[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "beleidskaderAuto[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "beleidskaderAuto[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "beleidskaderAuto[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
            "in": "query",
            "name": "beleidskaderFiets",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "beleidskaderFiets[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "beleidskaderFiets[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "beleidskaderFiets[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "beleidskaderFiets[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "beleidskaderFiets[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
            "in": "query",
            "name": "beleidskaderOv",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "beleidskaderOv[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "beleidskaderOv[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "beleidskaderOv[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "beleidskaderOv[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "beleidskaderOv[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "indicator voor een route voor transport van routeplichtige gevaarlijke stoffen.",
            "in": "query",
            "name": "gevaarlijkeStoffenRoute",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "gevaarlijkeStoffenRoute[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "unieke identificatie van het record.",
            "in": "query",
            "name": "id",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "id[gt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "id[gte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "id[in]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "id[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "id[lt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "id[lte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "id[not]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            }
          },
          {
            "description": "indicator of link valt binnen of grotendeels binnen de gemeente Amsterdam.",
            "in": "query",
            "name": "indicatieZoneAmsterdam",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "indicatieZoneAmsterdam[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "indicator Verkeersbesluit milieuzone Amsterdam (Staatscourant 2020, 32736).",
            "in": "query",
            "name": "indicatieZoneMilieu",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "indicatieZoneMilieu[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "indicator Verkeersbesluit Zone Zwaar Verkeer Amsterdam (Staatscourant 2021, 24726).",
            "in": "query",
            "name": "indicatieZoneZwaarVerkeer",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "indicatieZoneZwaarVerkeer[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "indicatieZoneZwaarVerkeer[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "indicatieZoneZwaarVerkeer[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "indicatieZoneZwaarVerkeer[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "indicatieZoneZwaarVerkeer[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "het type laden-en-lossen regime.",
            "in": "query",
            "name": "laadLosRegime",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "laadLosRegime[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "laadLosRegime[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "laadLosRegime[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "laadLosRegime[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "laadLosRegime[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "toegestane tijdsperioden voor laden-en-lossen.",
            "in": "query",
            "name": "laadLosVenstertijden",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "laadLosVenstertijden[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "laadLosVenstertijden[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "laadLosVenstertijden[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "laadLosVenstertijden[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "laadLosVenstertijden[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "dagen en tijden voor verbod laden-en-lossen en stilstaan.",
            "in": "query",
            "name": "laadLosVerbodStilTeStaanTijden",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "laadLosVerbodStilTeStaanTijden[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "laadLosVerbodStilTeStaanTijden[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "laadLosVerbodStilTeStaanTijden[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "laadLosVerbodStilTeStaanTijden[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "laadLosVerbodStilTeStaanTijden[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "lengte van de link in meters.",
            "in": "query",
            "name": "lengte",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "lengte[gt]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "lengte[gte]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "lengte[in]",
            "schema": {
              "items": {
                "type": "number"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "lengte[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "lengte[lt]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "lengte[lte]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "lengte[not]",
            "schema": {
              "items": {
                "type": "number"
              },
              "type": "array"
            }
          },
          {
            "description": "unieke identificatie voor elke opgedeelde wegennetwerk object.",
            "in": "query",
            "name": "linknummer",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "linknummer[gt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "linknummer[gte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "linknummer[in]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "linknummer[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "linknummer[lt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "linknummer[lte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "linknummer[not]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            }
          },
          {
            "description": "A page number within the paginated result set.",
            "in": "query",
            "name": "page",
            "required": false,
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "welke % van 'lijn lengte' binnen BGT polygonen liggen met een van de volgende functies: ('rijbaan regionale weg','rijbaan autoweg','OV-baan','rijbaan autosnelweg','woonerf','rijbaan lokale weg').",
            "in": "query",
            "name": "percLijnInPolygoonWeg",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "percLijnInPolygoonWeg[gt]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "percLijnInPolygoonWeg[gte]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "percLijnInPolygoonWeg[in]",
            "schema": {
              "items": {
                "type": "number"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "percLijnInPolygoonWeg[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "percLijnInPolygoonWeg[lt]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "percLijnInPolygoonWeg[lte]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "percLijnInPolygoonWeg[not]",
            "schema": {
              "items": {
                "type": "number"
              },
              "type": "array"
            }
          },
          {
            "description": "toegestane auto rijrichtingen van de weg.",
            "in": "query",
            "name": "rijrichting",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "rijrichting[gt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "rijrichting[gte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "rijrichting[in]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "rijrichting[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "rijrichting[lt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "rijrichting[lte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "rijrichting[not]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            }
          },
          {
            "description": "nummer van source node van edge.",
            "in": "query",
            "name": "source",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "source[gt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "source[gte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "source[in]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "source[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "source[lt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "source[lte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "source[not]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            }
          },
          {
            "description": "straatnaam die van toepassing is op wegennetwerk object.",
            "in": "query",
            "name": "straatnaam",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "straatnaam[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "straatnaam[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "straatnaam[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "straatnaam[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "straatnaam[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "nummer van target node van edge.",
            "in": "query",
            "name": "target",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "target[gt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "target[gte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "target[in]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "target[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "target[lt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "target[lte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "target[not]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            }
          },
          {
            "description": "tijdskosten om van begin naar eind van link te gaan in seconden.",
            "in": "query",
            "name": "tijdskostenBeginEind",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "tijdskostenBeginEind[gt]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "tijdskostenBeginEind[gte]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "tijdskostenBeginEind[in]",
            "schema": {
              "items": {
                "type": "number"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "tijdskostenBeginEind[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "tijdskostenBeginEind[lt]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "tijdskostenBeginEind[lte]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "tijdskostenBeginEind[not]",
            "schema": {
              "items": {
                "type": "number"
              },
              "type": "array"
            }
          },
          {
            "description": "tijdskosten om van eind naar begin van link te gaan in seconden.",
            "in": "query",
            "name": "tijdskostenEindBegin",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "tijdskostenEindBegin[gt]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "tijdskostenEindBegin[gte]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "tijdskostenEindBegin[in]",
            "schema": {
              "items": {
                "type": "number"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "tijdskostenEindBegin[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "tijdskostenEindBegin[lt]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "tijdskostenEindBegin[lte]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "tijdskostenEindBegin[not]",
            "schema": {
              "items": {
                "type": "number"
              },
              "type": "array"
            }
          },
          {
            "description": "een Europese categorisering voor tunnels met betrekking op het vervoer van gevaarlijke stoffen.",
            "in": "query",
            "name": "tunnelCategorie",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "tunnelCategorie[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "tunnelCategorie[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "tunnelCategorie[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "tunnelCategorie[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "tunnelCategorie[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "naam van de tunnel.",
            "in": "query",
            "name": "tunnelNaam",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "tunnelNaam[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "tunnelNaam[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "tunnelNaam[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "tunnelNaam[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "tunnelNaam[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "functional road class; geeft de functie van weg.",
            "in": "query",
            "name": "wegFunctie",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "wegFunctie[gt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "wegFunctie[gte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "wegFunctie[in]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "wegFunctie[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "wegFunctie[lt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "wegFunctie[lte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "wegFunctie[not]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            }
          },
          {
            "description": "wegbeheerder die hoort bij de weg.",
            "in": "query",
            "name": "wegbeheerder",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "wegbeheerder[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "wegbeheerder[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "wegbeheerder[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "wegbeheerder[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "wegbeheerder[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "wettelijke Snelheid die toegestaan is op weg. Bij verschillende waarde voor de 2 rijrichtingen gaat het om maximum.",
            "in": "query",
            "name": "wettelijkeSnelheid",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "wettelijkeSnelheid[gt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "wettelijkeSnelheid[gte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "wettelijkeSnelheid[in]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "wettelijkeSnelheid[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "wettelijkeSnelheid[lt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "wettelijkeSnelheid[lte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "wettelijkeSnelheid[not]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/geo+json": {
                "schema": {
                  "properties": {
                    "_embedded": {
                      "properties": {
                        "buiten": {
                          "items": {
                            "description": "buiten",
                            "properties": {
                              "_links": {
                                "allOf": [
                                  {
                                    "description": "The contents of the `buiten._links` field. It contains all relationships with objects.",
                                    "properties": {
                                      "schema": {
                                        "description": "The schema field is exposed with every record",
                                        "format": "uri",
                                        "readOnly": true,
                                        "type": "string"
                                      },
                                      "self": {
                                        "description": "The identifier of the relationship to buiten.",
                                        "properties": {
                                          "href": {
                                            "format": "uri",
                                            "readOnly": true,
                                            "type": "string"
                                          },
                                          "id": {
                                            "description": "unieke identificatie van het record.",
                                            "format": "int64",
                                            "maximum": 9223372036854776000,
                                            "minimum": -9223372036854776000,
                                            "type": "integer"
                                          },
                                          "title": {
                                            "type": "string"
                                          }
                                        },
                                        "required": [
                                          "href",
                                          "id",
                                          "title"
                                        ],
                                        "type": "object"
                                      }
                                    },
                                    "required": [
                                      "schema",
                                      "self"
                                    ],
                                    "type": "object"
                                  }
                                ],
                                "title": " links"
                              },
                              "beleidskaderAuto": {
                                "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
                                "nullable": true,
                                "type": "string"
                              },
                              "beleidskaderFiets": {
                                "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
                                "nullable": true,
                                "type": "string"
                              },
                              "beleidskaderOv": {
                                "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
                                "nullable": true,
                                "type": "string"
                              },
                              "geometry": {
                                "allOf": [
                                  {
                                    "description": "GeoJSON geometry",
                                    "discriminator": {
                                      "propertyName": "type"
                                    },
                                    "properties": {
                                      "coordinates": {
                                        "description": "Based on the geometry type, a point or collection of points.",
                                        "items": {
                                          "type": "number"
                                        },
                                        "minItems": 2,
                                        "type": "array"
                                      },
                                      "type": {
                                        "description": "the geometry type",
                                        "enum": [
                                          "Point",
                                          "LineString",
                                          "Polygon",
                                          "MultiPoint",
                                          "MultiLineString",
                                          "MultiPolygon"
                                        ],
                                        "type": "string"
                                      }
                                    },
                                    "required": [
                                      "type"
                                    ],
                                    "type": "object"
                                  },
                                  {
                                    "properties": {
                                      "coordinates": {
                                        "items": {
                                          "items": {
                                            "description": "Point in 3D space",
                                            "items": {
                                              "type": "number"
                                            },
                                            "maxItems": 3,
                                            "minItems": 2,
                                            "type": "array"
                                          },
                                          "type": "array"
                                        },
                                        "type": "array"
                                      },
                                      "type": {
                                        "enum": [
                                          "MultiLineString"
                                        ],
                                        "type": "string"
                                      }
                                    }
                                  }
                                ],
                                "description": "GeoJSON geometry",
                                "type": "object"
                              },
                              "gevaarlijkeStoffenRoute": {
                                "description": "indicator voor een route voor transport van routeplichtige gevaarlijke stoffen.",
                                "nullable": true,
                                "type": "boolean"
                              },
                              "id": {
                                "description": "unieke identificatie van het record.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "type": "integer"
                              },
                              "indicatieZoneAmsterdam": {
                                "description": "indicator of link valt binnen of grotendeels binnen de gemeente Amsterdam.",
                                "nullable": true,
                                "type": "boolean"
                              },
                              "indicatieZoneMilieu": {
                                "description": "indicator Verkeersbesluit milieuzone Amsterdam (Staatscourant 2020, 32736).",
                                "nullable": true,
                                "type": "boolean"
                              },
                              "indicatieZoneZwaarVerkeer": {
                                "description": "indicator Verkeersbesluit Zone Zwaar Verkeer Amsterdam (Staatscourant 2021, 24726).",
                                "nullable": true,
                                "type": "string"
                              },
                              "laadLosRegime": {
                                "description": "het type laden-en-lossen regime.",
                                "nullable": true,
                                "type": "string"
                              },
                              "laadLosVenstertijden": {
                                "description": "toegestane tijdsperioden voor laden-en-lossen.",
                                "nullable": true,
                                "type": "string"
                              },
                              "laadLosVerbodStilTeStaanTijden": {
                                "description": "dagen en tijden voor verbod laden-en-lossen en stilstaan.",
                                "nullable": true,
                                "type": "string"
                              },
                              "lengte": {
                                "description": "lengte van de link in meters.",
                                "format": "double",
                                "nullable": true,
                                "type": "number"
                              },
                              "linknummer": {
                                "description": "unieke identificatie voor elke opgedeelde wegennetwerk object.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "nullable": true,
                                "type": "integer"
                              },
                              "percLijnInPolygoonWeg": {
                                "description": "welke % van 'lijn lengte' binnen BGT polygonen liggen met een van de volgende functies: ('rijbaan regionale weg','rijbaan autoweg','OV-baan','rijbaan autosnelweg','woonerf','rijbaan lokale weg').",
                                "format": "double",
                                "nullable": true,
                                "type": "number"
                              },
                              "rijrichting": {
                                "description": "toegestane auto rijrichtingen van de weg.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "nullable": true,
                                "type": "integer"
                              },
                              "source": {
                                "description": "nummer van source node van edge.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "nullable": true,
                                "type": "integer"
                              },
                              "straatnaam": {
                                "description": "straatnaam die van toepassing is op wegennetwerk object.",
                                "nullable": true,
                                "type": "string"
                              },
                              "target": {
                                "description": "nummer van target node van edge.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "nullable": true,
                                "type": "integer"
                              },
                              "tijdskostenBeginEind": {
                                "description": "tijdskosten om van begin naar eind van link te gaan in seconden.",
                                "format": "double",
                                "nullable": true,
                                "type": "number"
                              },
                              "tijdskostenEindBegin": {
                                "description": "tijdskosten om van eind naar begin van link te gaan in seconden.",
                                "format": "double",
                                "nullable": true,
                                "type": "number"
                              },
                              "tunnelCategorie": {
                                "description": "een Europese categorisering voor tunnels met betrekking op het vervoer van gevaarlijke stoffen.",
                                "nullable": true,
                                "type": "string"
                              },
                              "tunnelNaam": {
                                "description": "naam van de tunnel.",
                                "nullable": true,
                                "type": "string"
                              },
                              "wegFunctie": {
                                "description": "functional road class; geeft de functie van weg.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "nullable": true,
                                "type": "integer"
                              },
                              "wegbeheerder": {
                                "description": "wegbeheerder die hoort bij de weg.",
                                "nullable": true,
                                "type": "string"
                              },
                              "wettelijkeSnelheid": {
                                "description": "wettelijke Snelheid die toegestaan is op weg. Bij verschillende waarde voor de 2 rijrichtingen gaat het om maximum.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "nullable": true,
                                "type": "integer"
                              }
                            },
                            "required": [
                              "_links",
                              "id"
                            ],
                            "type": "object"
                          },
                          "type": "array"
                        }
                      },
                      "type": "object"
                    },
                    "_links": {
                      "properties": {
                        "next": {
                          "properties": {
                            "href": {
                              "example": "https://api.data.amsterdam.nl/v1/.../resource/?page=4",
                              "format": "uri",
                              "nullable": true,
                              "type": "string"
                            }
                          },
                          "type": "object"
                        },
                        "previous": {
                          "properties": {
                            "href": {
                              "example": "https://api.data.amsterdam.nl/v1/.../resource/?page=2",
                              "format": "uri",
                              "nullable": true,
                              "type": "string"
                            }
                          },
                          "type": "object"
                        },
                        "self": {
                          "properties": {
                            "href": {
                              "example": "https://api.data.amsterdam.nl/v1/.../resource/?page=3",
                              "format": "uri",
                              "type": "string"
                            }
                          },
                          "type": "object"
                        }
                      },
                      "type": "object"
                    },
                    "page": {
                      "properties": {
                        "number": {
                          "example": 3,
                          "type": "integer"
                        },
                        "size": {
                          "example": 20,
                          "type": "integer"
                        },
                        "totalElements": {
                          "example": 5,
                          "type": "integer"
                        },
                        "totalPages": {
                          "example": 3,
                          "type": "integer"
                        }
                      },
                      "type": "object"
                    }
                  },
                  "type": "object"
                }
              },
              "application/hal+json": {
                "schema": {
                  "properties": {
                    "_embedded": {
                      "properties": {
                        "buiten": {
                          "items": {
                            "description": "buiten",
                            "properties": {
                              "_links": {
                                "allOf": [
                                  {
                                    "description": "The contents of the `buiten._links` field. It contains all relationships with objects.",
                                    "properties": {
                                      "schema": {
                                        "description": "The schema field is exposed with every record",
                                        "format": "uri",
                                        "readOnly": true,
                                        "type": "string"
                                      },
                                      "self": {
                                        "description": "The identifier of the relationship to buiten.",
                                        "properties": {
                                          "href": {
                                            "format": "uri",
                                            "readOnly": true,
                                            "type": "string"
                                          },
                                          "id": {
                                            "description": "unieke identificatie van het record.",
                                            "format": "int64",
                                            "maximum": 9223372036854776000,
                                            "minimum": -9223372036854776000,
                                            "type": "integer"
                                          },
                                          "title": {
                                            "type": "string"
                                          }
                                        },
                                        "required": [
                                          "href",
                                          "id",
                                          "title"
                                        ],
                                        "type": "object"
                                      }
                                    },
                                    "required": [
                                      "schema",
                                      "self"
                                    ],
                                    "type": "object"
                                  }
                                ],
                                "title": " links"
                              },
                              "beleidskaderAuto": {
                                "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
                                "nullable": true,
                                "type": "string"
                              },
                              "beleidskaderFiets": {
                                "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
                                "nullable": true,
                                "type": "string"
                              },
                              "beleidskaderOv": {
                                "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
                                "nullable": true,
                                "type": "string"
                              },
                              "geometry": {
                                "allOf": [
                                  {
                                    "description": "GeoJSON geometry",
                                    "discriminator": {
                                      "propertyName": "type"
                                    },
                                    "properties": {
                                      "coordinates": {
                                        "description": "Based on the geometry type, a point or collection of points.",
                                        "items": {
                                          "type": "number"
                                        },
                                        "minItems": 2,
                                        "type": "array"
                                      },
                                      "type": {
                                        "description": "the geometry type",
                                        "enum": [
                                          "Point",
                                          "LineString",
                                          "Polygon",
                                          "MultiPoint",
                                          "MultiLineString",
                                          "MultiPolygon"
                                        ],
                                        "type": "string"
                                      }
                                    },
                                    "required": [
                                      "type"
                                    ],
                                    "type": "object"
                                  },
                                  {
                                    "properties": {
                                      "coordinates": {
                                        "items": {
                                          "items": {
                                            "description": "Point in 3D space",
                                            "items": {
                                              "type": "number"
                                            },
                                            "maxItems": 3,
                                            "minItems": 2,
                                            "type": "array"
                                          },
                                          "type": "array"
                                        },
                                        "type": "array"
                                      },
                                      "type": {
                                        "enum": [
                                          "MultiLineString"
                                        ],
                                        "type": "string"
                                      }
                                    }
                                  }
                                ],
                                "description": "GeoJSON geometry",
                                "type": "object"
                              },
                              "gevaarlijkeStoffenRoute": {
                                "description": "indicator voor een route voor transport van routeplichtige gevaarlijke stoffen.",
                                "nullable": true,
                                "type": "boolean"
                              },
                              "id": {
                                "description": "unieke identificatie van het record.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "type": "integer"
                              },
                              "indicatieZoneAmsterdam": {
                                "description": "indicator of link valt binnen of grotendeels binnen de gemeente Amsterdam.",
                                "nullable": true,
                                "type": "boolean"
                              },
                              "indicatieZoneMilieu": {
                                "description": "indicator Verkeersbesluit milieuzone Amsterdam (Staatscourant 2020, 32736).",
                                "nullable": true,
                                "type": "boolean"
                              },
                              "indicatieZoneZwaarVerkeer": {
                                "description": "indicator Verkeersbesluit Zone Zwaar Verkeer Amsterdam (Staatscourant 2021, 24726).",
                                "nullable": true,
                                "type": "string"
                              },
                              "laadLosRegime": {
                                "description": "het type laden-en-lossen regime.",
                                "nullable": true,
                                "type": "string"
                              },
                              "laadLosVenstertijden": {
                                "description": "toegestane tijdsperioden voor laden-en-lossen.",
                                "nullable": true,
                                "type": "string"
                              },
                              "laadLosVerbodStilTeStaanTijden": {
                                "description": "dagen en tijden voor verbod laden-en-lossen en stilstaan.",
                                "nullable": true,
                                "type": "string"
                              },
                              "lengte": {
                                "description": "lengte van de link in meters.",
                                "format": "double",
                                "nullable": true,
                                "type": "number"
                              },
                              "linknummer": {
                                "description": "unieke identificatie voor elke opgedeelde wegennetwerk object.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "nullable": true,
                                "type": "integer"
                              },
                              "percLijnInPolygoonWeg": {
                                "description": "welke % van 'lijn lengte' binnen BGT polygonen liggen met een van de volgende functies: ('rijbaan regionale weg','rijbaan autoweg','OV-baan','rijbaan autosnelweg','woonerf','rijbaan lokale weg').",
                                "format": "double",
                                "nullable": true,
                                "type": "number"
                              },
                              "rijrichting": {
                                "description": "toegestane auto rijrichtingen van de weg.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "nullable": true,
                                "type": "integer"
                              },
                              "source": {
                                "description": "nummer van source node van edge.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "nullable": true,
                                "type": "integer"
                              },
                              "straatnaam": {
                                "description": "straatnaam die van toepassing is op wegennetwerk object.",
                                "nullable": true,
                                "type": "string"
                              },
                              "target": {
                                "description": "nummer van target node van edge.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "nullable": true,
                                "type": "integer"
                              },
                              "tijdskostenBeginEind": {
                                "description": "tijdskosten om van begin naar eind van link te gaan in seconden.",
                                "format": "double",
                                "nullable": true,
                                "type": "number"
                              },
                              "tijdskostenEindBegin": {
                                "description": "tijdskosten om van eind naar begin van link te gaan in seconden.",
                                "format": "double",
                                "nullable": true,
                                "type": "number"
                              },
                              "tunnelCategorie": {
                                "description": "een Europese categorisering voor tunnels met betrekking op het vervoer van gevaarlijke stoffen.",
                                "nullable": true,
                                "type": "string"
                              },
                              "tunnelNaam": {
                                "description": "naam van de tunnel.",
                                "nullable": true,
                                "type": "string"
                              },
                              "wegFunctie": {
                                "description": "functional road class; geeft de functie van weg.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "nullable": true,
                                "type": "integer"
                              },
                              "wegbeheerder": {
                                "description": "wegbeheerder die hoort bij de weg.",
                                "nullable": true,
                                "type": "string"
                              },
                              "wettelijkeSnelheid": {
                                "description": "wettelijke Snelheid die toegestaan is op weg. Bij verschillende waarde voor de 2 rijrichtingen gaat het om maximum.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "nullable": true,
                                "type": "integer"
                              }
                            },
                            "required": [
                              "_links",
                              "id"
                            ],
                            "type": "object"
                          },
                          "type": "array"
                        }
                      },
                      "type": "object"
                    },
                    "_links": {
                      "properties": {
                        "next": {
                          "properties": {
                            "href": {
                              "example": "https://api.data.amsterdam.nl/v1/.../resource/?page=4",
                              "format": "uri",
                              "nullable": true,
                              "type": "string"
                            }
                          },
                          "type": "object"
                        },
                        "previous": {
                          "properties": {
                            "href": {
                              "example": "https://api.data.amsterdam.nl/v1/.../resource/?page=2",
                              "format": "uri",
                              "nullable": true,
                              "type": "string"
                            }
                          },
                          "type": "object"
                        },
                        "self": {
                          "properties": {
                            "href": {
                              "example": "https://api.data.amsterdam.nl/v1/.../resource/?page=3",
                              "format": "uri",
                              "type": "string"
                            }
                          },
                          "type": "object"
                        }
                      },
                      "type": "object"
                    },
                    "page": {
                      "properties": {
                        "number": {
                          "example": 3,
                          "type": "integer"
                        },
                        "size": {
                          "example": 20,
                          "type": "integer"
                        },
                        "totalElements": {
                          "example": 5,
                          "type": "integer"
                        },
                        "totalPages": {
                          "example": 3,
                          "type": "integer"
                        }
                      },
                      "type": "object"
                    }
                  },
                  "type": "object"
                }
              },
              "text/csv": {
                "schema": {
                  "properties": {
                    "_embedded": {
                      "properties": {
                        "buiten": {
                          "items": {
                            "description": "buiten",
                            "properties": {
                              "_links": {
                                "allOf": [
                                  {
                                    "description": "The contents of the `buiten._links` field. It contains all relationships with objects.",
                                    "properties": {
                                      "schema": {
                                        "description": "The schema field is exposed with every record",
                                        "format": "uri",
                                        "readOnly": true,
                                        "type": "string"
                                      },
                                      "self": {
                                        "description": "The identifier of the relationship to buiten.",
                                        "properties": {
                                          "href": {
                                            "format": "uri",
                                            "readOnly": true,
                                            "type": "string"
                                          },
                                          "id": {
                                            "description": "unieke identificatie van het record.",
                                            "format": "int64",
                                            "maximum": 9223372036854776000,
                                            "minimum": -9223372036854776000,
                                            "type": "integer"
                                          },
                                          "title": {
                                            "type": "string"
                                          }
                                        },
                                        "required": [
                                          "href",
                                          "id",
                                          "title"
                                        ],
                                        "type": "object"
                                      }
                                    },
                                    "required": [
                                      "schema",
                                      "self"
                                    ],
                                    "type": "object"
                                  }
                                ],
                                "title": " links"
                              },
                              "beleidskaderAuto": {
                                "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
                                "nullable": true,
                                "type": "string"
                              },
                              "beleidskaderFiets": {
                                "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
                                "nullable": true,
                                "type": "string"
                              },
                              "beleidskaderOv": {
                                "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
                                "nullable": true,
                                "type": "string"
                              },
                              "geometry": {
                                "allOf": [
                                  {
                                    "description": "GeoJSON geometry",
                                    "discriminator": {
                                      "propertyName": "type"
                                    },
                                    "properties": {
                                      "coordinates": {
                                        "description": "Based on the geometry type, a point or collection of points.",
                                        "items": {
                                          "type": "number"
                                        },
                                        "minItems": 2,
                                        "type": "array"
                                      },
                                      "type": {
                                        "description": "the geometry type",
                                        "enum": [
                                          "Point",
                                          "LineString",
                                          "Polygon",
                                          "MultiPoint",
                                          "MultiLineString",
                                          "MultiPolygon"
                                        ],
                                        "type": "string"
                                      }
                                    },
                                    "required": [
                                      "type"
                                    ],
                                    "type": "object"
                                  },
                                  {
                                    "properties": {
                                      "coordinates": {
                                        "items": {
                                          "items": {
                                            "description": "Point in 3D space",
                                            "items": {
                                              "type": "number"
                                            },
                                            "maxItems": 3,
                                            "minItems": 2,
                                            "type": "array"
                                          },
                                          "type": "array"
                                        },
                                        "type": "array"
                                      },
                                      "type": {
                                        "enum": [
                                          "MultiLineString"
                                        ],
                                        "type": "string"
                                      }
                                    }
                                  }
                                ],
                                "description": "GeoJSON geometry",
                                "type": "object"
                              },
                              "gevaarlijkeStoffenRoute": {
                                "description": "indicator voor een route voor transport van routeplichtige gevaarlijke stoffen.",
                                "nullable": true,
                                "type": "boolean"
                              },
                              "id": {
                                "description": "unieke identificatie van het record.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "type": "integer"
                              },
                              "indicatieZoneAmsterdam": {
                                "description": "indicator of link valt binnen of grotendeels binnen de gemeente Amsterdam.",
                                "nullable": true,
                                "type": "boolean"
                              },
                              "indicatieZoneMilieu": {
                                "description": "indicator Verkeersbesluit milieuzone Amsterdam (Staatscourant 2020, 32736).",
                                "nullable": true,
                                "type": "boolean"
                              },
                              "indicatieZoneZwaarVerkeer": {
                                "description": "indicator Verkeersbesluit Zone Zwaar Verkeer Amsterdam (Staatscourant 2021, 24726).",
                                "nullable": true,
                                "type": "string"
                              },
                              "laadLosRegime": {
                                "description": "het type laden-en-lossen regime.",
                                "nullable": true,
                                "type": "string"
                              },
                              "laadLosVenstertijden": {
                                "description": "toegestane tijdsperioden voor laden-en-lossen.",
                                "nullable": true,
                                "type": "string"
                              },
                              "laadLosVerbodStilTeStaanTijden": {
                                "description": "dagen en tijden voor verbod laden-en-lossen en stilstaan.",
                                "nullable": true,
                                "type": "string"
                              },
                              "lengte": {
                                "description": "lengte van de link in meters.",
                                "format": "double",
                                "nullable": true,
                                "type": "number"
                              },
                              "linknummer": {
                                "description": "unieke identificatie voor elke opgedeelde wegennetwerk object.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "nullable": true,
                                "type": "integer"
                              },
                              "percLijnInPolygoonWeg": {
                                "description": "welke % van 'lijn lengte' binnen BGT polygonen liggen met een van de volgende functies: ('rijbaan regionale weg','rijbaan autoweg','OV-baan','rijbaan autosnelweg','woonerf','rijbaan lokale weg').",
                                "format": "double",
                                "nullable": true,
                                "type": "number"
                              },
                              "rijrichting": {
                                "description": "toegestane auto rijrichtingen van de weg.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "nullable": true,
                                "type": "integer"
                              },
                              "source": {
                                "description": "nummer van source node van edge.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "nullable": true,
                                "type": "integer"
                              },
                              "straatnaam": {
                                "description": "straatnaam die van toepassing is op wegennetwerk object.",
                                "nullable": true,
                                "type": "string"
                              },
                              "target": {
                                "description": "nummer van target node van edge.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "nullable": true,
                                "type": "integer"
                              },
                              "tijdskostenBeginEind": {
                                "description": "tijdskosten om van begin naar eind van link te gaan in seconden.",
                                "format": "double",
                                "nullable": true,
                                "type": "number"
                              },
                              "tijdskostenEindBegin": {
                                "description": "tijdskosten om van eind naar begin van link te gaan in seconden.",
                                "format": "double",
                                "nullable": true,
                                "type": "number"
                              },
                              "tunnelCategorie": {
                                "description": "een Europese categorisering voor tunnels met betrekking op het vervoer van gevaarlijke stoffen.",
                                "nullable": true,
                                "type": "string"
                              },
                              "tunnelNaam": {
                                "description": "naam van de tunnel.",
                                "nullable": true,
                                "type": "string"
                              },
                              "wegFunctie": {
                                "description": "functional road class; geeft de functie van weg.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "nullable": true,
                                "type": "integer"
                              },
                              "wegbeheerder": {
                                "description": "wegbeheerder die hoort bij de weg.",
                                "nullable": true,
                                "type": "string"
                              },
                              "wettelijkeSnelheid": {
                                "description": "wettelijke Snelheid die toegestaan is op weg. Bij verschillende waarde voor de 2 rijrichtingen gaat het om maximum.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "nullable": true,
                                "type": "integer"
                              }
                            },
                            "required": [
                              "_links",
                              "id"
                            ],
                            "type": "object"
                          },
                          "type": "array"
                        }
                      },
                      "type": "object"
                    },
                    "_links": {
                      "properties": {
                        "next": {
                          "properties": {
                            "href": {
                              "example": "https://api.data.amsterdam.nl/v1/.../resource/?page=4",
                              "format": "uri",
                              "nullable": true,
                              "type": "string"
                            }
                          },
                          "type": "object"
                        },
                        "previous": {
                          "properties": {
                            "href": {
                              "example": "https://api.data.amsterdam.nl/v1/.../resource/?page=2",
                              "format": "uri",
                              "nullable": true,
                              "type": "string"
                            }
                          },
                          "type": "object"
                        },
                        "self": {
                          "properties": {
                            "href": {
                              "example": "https://api.data.amsterdam.nl/v1/.../resource/?page=3",
                              "format": "uri",
                              "type": "string"
                            }
                          },
                          "type": "object"
                        }
                      },
                      "type": "object"
                    },
                    "page": {
                      "properties": {
                        "number": {
                          "example": 3,
                          "type": "integer"
                        },
                        "size": {
                          "example": 20,
                          "type": "integer"
                        },
                        "totalElements": {
                          "example": 5,
                          "type": "integer"
                        },
                        "totalPages": {
                          "example": 3,
                          "type": "integer"
                        }
                      },
                      "type": "object"
                    }
                  },
                  "type": "object"
                }
              }
            },
            "description": ""
          }
        },
        "tags": [
          "buiten"
        ]
      }
    },
    "/buiten/{id}": {
      "get": {
        "operationId": "wegenbestand_zone_zwaar_verkeer_buiten_retrieve",
        "parameters": [
          {
            "description": "Accept-Crs header for Geo queries",
            "in": "header",
            "name": "Accept-Crs",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Content-Crs header for Geo queries",
            "in": "header",
            "name": "Content-Crs",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Api Key for statistical purposes, not for authentication",
            "in": "header",
            "name": "X-Api-Key",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Specify type of header for csv file",
            "in": "query",
            "name": "_csv_header",
            "schema": {
              "enum": [
                "id",
                "title",
                "none"
              ],
              "type": "string"
            }
          },
          {
            "description": "Specify type of separator for csv file",
            "in": "query",
            "name": "_csv_separator",
            "schema": {
              "enum": [
                ",",
                ";"
              ],
              "type": "string"
            }
          },
          {
            "description": "Allow to expand relations.",
            "in": "query",
            "name": "_expand",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Comma separated list of named relations to expand.",
            "in": "query",
            "name": "_expandScope",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Comma-separated list of fields to display",
            "in": "query",
            "name": "_fields",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Select the export format",
            "in": "query",
            "name": "_format",
            "schema": {
              "enum": [
                "json",
                "csv",
                "geojson"
              ],
              "type": "string"
            }
          },
          {
            "description": "Which field to use when ordering the results.",
            "in": "query",
            "name": "_sort",
            "required": false,
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
            "in": "query",
            "name": "beleidskaderAuto",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "beleidskaderAuto[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "beleidskaderAuto[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "beleidskaderAuto[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "beleidskaderAuto[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "beleidskaderAuto[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
            "in": "query",
            "name": "beleidskaderFiets",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "beleidskaderFiets[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "beleidskaderFiets[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "beleidskaderFiets[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "beleidskaderFiets[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "beleidskaderFiets[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
            "in": "query",
            "name": "beleidskaderOv",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "beleidskaderOv[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "beleidskaderOv[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "beleidskaderOv[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "beleidskaderOv[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "beleidskaderOv[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "indicator voor een route voor transport van routeplichtige gevaarlijke stoffen.",
            "in": "query",
            "name": "gevaarlijkeStoffenRoute",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "gevaarlijkeStoffenRoute[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "in": "path",
            "name": "id",
            "required": true,
            "schema": {
              "pattern": "^[^/]+$",
              "type": "string"
            }
          },
          {
            "description": "unieke identificatie van het record.",
            "in": "query",
            "name": "id",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "id[gt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "id[gte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "id[in]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "id[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "id[lt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "id[lte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "id[not]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            }
          },
          {
            "description": "indicator of link valt binnen of grotendeels binnen de gemeente Amsterdam.",
            "in": "query",
            "name": "indicatieZoneAmsterdam",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "indicatieZoneAmsterdam[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "indicator Verkeersbesluit milieuzone Amsterdam (Staatscourant 2020, 32736).",
            "in": "query",
            "name": "indicatieZoneMilieu",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "indicatieZoneMilieu[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "indicator Verkeersbesluit Zone Zwaar Verkeer Amsterdam (Staatscourant 2021, 24726).",
            "in": "query",
            "name": "indicatieZoneZwaarVerkeer",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "indicatieZoneZwaarVerkeer[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "indicatieZoneZwaarVerkeer[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "indicatieZoneZwaarVerkeer[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "indicatieZoneZwaarVerkeer[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "indicatieZoneZwaarVerkeer[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "het type laden-en-lossen regime.",
            "in": "query",
            "name": "laadLosRegime",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "laadLosRegime[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "laadLosRegime[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "laadLosRegime[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "laadLosRegime[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "laadLosRegime[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "toegestane tijdsperioden voor laden-en-lossen.",
            "in": "query",
            "name": "laadLosVenstertijden",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "laadLosVenstertijden[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "laadLosVenstertijden[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "laadLosVenstertijden[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "laadLosVenstertijden[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "laadLosVenstertijden[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "dagen en tijden voor verbod laden-en-lossen en stilstaan.",
            "in": "query",
            "name": "laadLosVerbodStilTeStaanTijden",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "laadLosVerbodStilTeStaanTijden[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "laadLosVerbodStilTeStaanTijden[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "laadLosVerbodStilTeStaanTijden[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "laadLosVerbodStilTeStaanTijden[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "laadLosVerbodStilTeStaanTijden[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "lengte van de link in meters.",
            "in": "query",
            "name": "lengte",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "lengte[gt]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "lengte[gte]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "lengte[in]",
            "schema": {
              "items": {
                "type": "number"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "lengte[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "lengte[lt]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "lengte[lte]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "lengte[not]",
            "schema": {
              "items": {
                "type": "number"
              },
              "type": "array"
            }
          },
          {
            "description": "unieke identificatie voor elke opgedeelde wegennetwerk object.",
            "in": "query",
            "name": "linknummer",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "linknummer[gt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "linknummer[gte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "linknummer[in]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "linknummer[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "linknummer[lt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "linknummer[lte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "linknummer[not]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            }
          },
          {
            "description": "welke % van 'lijn lengte' binnen BGT polygonen liggen met een van de volgende functies: ('rijbaan regionale weg','rijbaan autoweg','OV-baan','rijbaan autosnelweg','woonerf','rijbaan lokale weg').",
            "in": "query",
            "name": "percLijnInPolygoonWeg",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "percLijnInPolygoonWeg[gt]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "percLijnInPolygoonWeg[gte]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "percLijnInPolygoonWeg[in]",
            "schema": {
              "items": {
                "type": "number"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "percLijnInPolygoonWeg[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "percLijnInPolygoonWeg[lt]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "percLijnInPolygoonWeg[lte]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "percLijnInPolygoonWeg[not]",
            "schema": {
              "items": {
                "type": "number"
              },
              "type": "array"
            }
          },
          {
            "description": "toegestane auto rijrichtingen van de weg.",
            "in": "query",
            "name": "rijrichting",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "rijrichting[gt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "rijrichting[gte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "rijrichting[in]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "rijrichting[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "rijrichting[lt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "rijrichting[lte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "rijrichting[not]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            }
          },
          {
            "description": "nummer van source node van edge.",
            "in": "query",
            "name": "source",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "source[gt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "source[gte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "source[in]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "source[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "source[lt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "source[lte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "source[not]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            }
          },
          {
            "description": "straatnaam die van toepassing is op wegennetwerk object.",
            "in": "query",
            "name": "straatnaam",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "straatnaam[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "straatnaam[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "straatnaam[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "straatnaam[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "straatnaam[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "nummer van target node van edge.",
            "in": "query",
            "name": "target",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "target[gt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "target[gte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "target[in]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "target[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "target[lt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "target[lte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "target[not]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            }
          },
          {
            "description": "tijdskosten om van begin naar eind van link te gaan in seconden.",
            "in": "query",
            "name": "tijdskostenBeginEind",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "tijdskostenBeginEind[gt]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "tijdskostenBeginEind[gte]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "tijdskostenBeginEind[in]",
            "schema": {
              "items": {
                "type": "number"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "tijdskostenBeginEind[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "tijdskostenBeginEind[lt]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "tijdskostenBeginEind[lte]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "tijdskostenBeginEind[not]",
            "schema": {
              "items": {
                "type": "number"
              },
              "type": "array"
            }
          },
          {
            "description": "tijdskosten om van eind naar begin van link te gaan in seconden.",
            "in": "query",
            "name": "tijdskostenEindBegin",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "tijdskostenEindBegin[gt]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "tijdskostenEindBegin[gte]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "tijdskostenEindBegin[in]",
            "schema": {
              "items": {
                "type": "number"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "tijdskostenEindBegin[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "tijdskostenEindBegin[lt]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "tijdskostenEindBegin[lte]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "tijdskostenEindBegin[not]",
            "schema": {
              "items": {
                "type": "number"
              },
              "type": "array"
            }
          },
          {
            "description": "een Europese categorisering voor tunnels met betrekking op het vervoer van gevaarlijke stoffen.",
            "in": "query",
            "name": "tunnelCategorie",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "tunnelCategorie[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "tunnelCategorie[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "tunnelCategorie[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "tunnelCategorie[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "tunnelCategorie[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "naam van de tunnel.",
            "in": "query",
            "name": "tunnelNaam",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "tunnelNaam[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "tunnelNaam[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "tunnelNaam[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "tunnelNaam[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "tunnelNaam[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "functional road class; geeft de functie van weg.",
            "in": "query",
            "name": "wegFunctie",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "wegFunctie[gt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "wegFunctie[gte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "wegFunctie[in]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "wegFunctie[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "wegFunctie[lt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "wegFunctie[lte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "wegFunctie[not]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            }
          },
          {
            "description": "wegbeheerder die hoort bij de weg.",
            "in": "query",
            "name": "wegbeheerder",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "wegbeheerder[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "wegbeheerder[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "wegbeheerder[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "wegbeheerder[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "wegbeheerder[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "wettelijke Snelheid die toegestaan is op weg. Bij verschillende waarde voor de 2 rijrichtingen gaat het om maximum.",
            "in": "query",
            "name": "wettelijkeSnelheid",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "wettelijkeSnelheid[gt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "wettelijkeSnelheid[gte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "wettelijkeSnelheid[in]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "wettelijkeSnelheid[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "wettelijkeSnelheid[lt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "wettelijkeSnelheid[lte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "wettelijkeSnelheid[not]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/geo+json": {
                "schema": {
                  "description": "buiten",
                  "properties": {
                    "_links": {
                      "allOf": [
                        {
                          "description": "The contents of the `buiten._links` field. It contains all relationships with objects.",
                          "properties": {
                            "schema": {
                              "description": "The schema field is exposed with every record",
                              "format": "uri",
                              "readOnly": true,
                              "type": "string"
                            },
                            "self": {
                              "description": "The identifier of the relationship to buiten.",
                              "properties": {
                                "href": {
                                  "format": "uri",
                                  "readOnly": true,
                                  "type": "string"
                                },
                                "id": {
                                  "description": "unieke identificatie van het record.",
                                  "format": "int64",
                                  "maximum": 9223372036854776000,
                                  "minimum": -9223372036854776000,
                                  "type": "integer"
                                },
                                "title": {
                                  "type": "string"
                                }
                              },
                              "required": [
                                "href",
                                "id",
                                "title"
                              ],
                              "type": "object"
                            }
                          },
                          "required": [
                            "schema",
                            "self"
                          ],
                          "type": "object"
                        }
                      ],
                      "title": " links"
                    },
                    "beleidskaderAuto": {
                      "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
                      "nullable": true,
                      "type": "string"
                    },
                    "beleidskaderFiets": {
                      "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
                      "nullable": true,
                      "type": "string"
                    },
                    "beleidskaderOv": {
                      "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
                      "nullable": true,
                      "type": "string"
                    },
                    "geometry": {
                      "allOf": [
                        {
                          "description": "GeoJSON geometry",
                          "discriminator": {
                            "propertyName": "type"
                          },
                          "properties": {
                            "coordinates": {
                              "description": "Based on the geometry type, a point or collection of points.",
                              "items": {
                                "type": "number"
                              },
                              "minItems": 2,
                              "type": "array"
                            },
                            "type": {
                              "description": "the geometry type",
                              "enum": [
                                "Point",
                                "LineString",
                                "Polygon",
                                "MultiPoint",
                                "MultiLineString",
                                "MultiPolygon"
                              ],
                              "type": "string"
                            }
                          },
                          "required": [
                            "type"
                          ],
                          "type": "object"
                        },
                        {
                          "properties": {
                            "coordinates": {
                              "items": {
                                "items": {
                                  "description": "Point in 3D space",
                                  "items": {
                                    "type": "number"
                                  },
                                  "maxItems": 3,
                                  "minItems": 2,
                                  "type": "array"
                                },
                                "type": "array"
                              },
                              "type": "array"
                            },
                            "type": {
                              "enum": [
                                "MultiLineString"
                              ],
                              "type": "string"
                            }
                          }
                        }
                      ],
                      "description": "GeoJSON geometry",
                      "type": "object"
                    },
                    "gevaarlijkeStoffenRoute": {
                      "description": "indicator voor een route voor transport van routeplichtige gevaarlijke stoffen.",
                      "nullable": true,
                      "type": "boolean"
                    },
                    "id": {
                      "description": "unieke identificatie van het record.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "type": "integer"
                    },
                    "indicatieZoneAmsterdam": {
                      "description": "indicator of link valt binnen of grotendeels binnen de gemeente Amsterdam.",
                      "nullable": true,
                      "type": "boolean"
                    },
                    "indicatieZoneMilieu": {
                      "description": "indicator Verkeersbesluit milieuzone Amsterdam (Staatscourant 2020, 32736).",
                      "nullable": true,
                      "type": "boolean"
                    },
                    "indicatieZoneZwaarVerkeer": {
                      "description": "indicator Verkeersbesluit Zone Zwaar Verkeer Amsterdam (Staatscourant 2021, 24726).",
                      "nullable": true,
                      "type": "string"
                    },
                    "laadLosRegime": {
                      "description": "het type laden-en-lossen regime.",
                      "nullable": true,
                      "type": "string"
                    },
                    "laadLosVenstertijden": {
                      "description": "toegestane tijdsperioden voor laden-en-lossen.",
                      "nullable": true,
                      "type": "string"
                    },
                    "laadLosVerbodStilTeStaanTijden": {
                      "description": "dagen en tijden voor verbod laden-en-lossen en stilstaan.",
                      "nullable": true,
                      "type": "string"
                    },
                    "lengte": {
                      "description": "lengte van de link in meters.",
                      "format": "double",
                      "nullable": true,
                      "type": "number"
                    },
                    "linknummer": {
                      "description": "unieke identificatie voor elke opgedeelde wegennetwerk object.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "percLijnInPolygoonWeg": {
                      "description": "welke % van 'lijn lengte' binnen BGT polygonen liggen met een van de volgende functies: ('rijbaan regionale weg','rijbaan autoweg','OV-baan','rijbaan autosnelweg','woonerf','rijbaan lokale weg').",
                      "format": "double",
                      "nullable": true,
                      "type": "number"
                    },
                    "rijrichting": {
                      "description": "toegestane auto rijrichtingen van de weg.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "source": {
                      "description": "nummer van source node van edge.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "straatnaam": {
                      "description": "straatnaam die van toepassing is op wegennetwerk object.",
                      "nullable": true,
                      "type": "string"
                    },
                    "target": {
                      "description": "nummer van target node van edge.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "tijdskostenBeginEind": {
                      "description": "tijdskosten om van begin naar eind van link te gaan in seconden.",
                      "format": "double",
                      "nullable": true,
                      "type": "number"
                    },
                    "tijdskostenEindBegin": {
                      "description": "tijdskosten om van eind naar begin van link te gaan in seconden.",
                      "format": "double",
                      "nullable": true,
                      "type": "number"
                    },
                    "tunnelCategorie": {
                      "description": "een Europese categorisering voor tunnels met betrekking op het vervoer van gevaarlijke stoffen.",
                      "nullable": true,
                      "type": "string"
                    },
                    "tunnelNaam": {
                      "description": "naam van de tunnel.",
                      "nullable": true,
                      "type": "string"
                    },
                    "wegFunctie": {
                      "description": "functional road class; geeft de functie van weg.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "wegbeheerder": {
                      "description": "wegbeheerder die hoort bij de weg.",
                      "nullable": true,
                      "type": "string"
                    },
                    "wettelijkeSnelheid": {
                      "description": "wettelijke Snelheid die toegestaan is op weg. Bij verschillende waarde voor de 2 rijrichtingen gaat het om maximum.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    }
                  },
                  "required": [
                    "_links",
                    "id"
                  ],
                  "type": "object"
                }
              },
              "application/hal+json": {
                "schema": {
                  "description": "buiten",
                  "properties": {
                    "_links": {
                      "allOf": [
                        {
                          "description": "The contents of the `buiten._links` field. It contains all relationships with objects.",
                          "properties": {
                            "schema": {
                              "description": "The schema field is exposed with every record",
                              "format": "uri",
                              "readOnly": true,
                              "type": "string"
                            },
                            "self": {
                              "description": "The identifier of the relationship to buiten.",
                              "properties": {
                                "href": {
                                  "format": "uri",
                                  "readOnly": true,
                                  "type": "string"
                                },
                                "id": {
                                  "description": "unieke identificatie van het record.",
                                  "format": "int64",
                                  "maximum": 9223372036854776000,
                                  "minimum": -9223372036854776000,
                                  "type": "integer"
                                },
                                "title": {
                                  "type": "string"
                                }
                              },
                              "required": [
                                "href",
                                "id",
                                "title"
                              ],
                              "type": "object"
                            }
                          },
                          "required": [
                            "schema",
                            "self"
                          ],
                          "type": "object"
                        }
                      ],
                      "title": " links"
                    },
                    "beleidskaderAuto": {
                      "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
                      "nullable": true,
                      "type": "string"
                    },
                    "beleidskaderFiets": {
                      "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
                      "nullable": true,
                      "type": "string"
                    },
                    "beleidskaderOv": {
                      "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
                      "nullable": true,
                      "type": "string"
                    },
                    "geometry": {
                      "allOf": [
                        {
                          "description": "GeoJSON geometry",
                          "discriminator": {
                            "propertyName": "type"
                          },
                          "properties": {
                            "coordinates": {
                              "description": "Based on the geometry type, a point or collection of points.",
                              "items": {
                                "type": "number"
                              },
                              "minItems": 2,
                              "type": "array"
                            },
                            "type": {
                              "description": "the geometry type",
                              "enum": [
                                "Point",
                                "LineString",
                                "Polygon",
                                "MultiPoint",
                                "MultiLineString",
                                "MultiPolygon"
                              ],
                              "type": "string"
                            }
                          },
                          "required": [
                            "type"
                          ],
                          "type": "object"
                        },
                        {
                          "properties": {
                            "coordinates": {
                              "items": {
                                "items": {
                                  "description": "Point in 3D space",
                                  "items": {
                                    "type": "number"
                                  },
                                  "maxItems": 3,
                                  "minItems": 2,
                                  "type": "array"
                                },
                                "type": "array"
                              },
                              "type": "array"
                            },
                            "type": {
                              "enum": [
                                "MultiLineString"
                              ],
                              "type": "string"
                            }
                          }
                        }
                      ],
                      "description": "GeoJSON geometry",
                      "type": "object"
                    },
                    "gevaarlijkeStoffenRoute": {
                      "description": "indicator voor een route voor transport van routeplichtige gevaarlijke stoffen.",
                      "nullable": true,
                      "type": "boolean"
                    },
                    "id": {
                      "description": "unieke identificatie van het record.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "type": "integer"
                    },
                    "indicatieZoneAmsterdam": {
                      "description": "indicator of link valt binnen of grotendeels binnen de gemeente Amsterdam.",
                      "nullable": true,
                      "type": "boolean"
                    },
                    "indicatieZoneMilieu": {
                      "description": "indicator Verkeersbesluit milieuzone Amsterdam (Staatscourant 2020, 32736).",
                      "nullable": true,
                      "type": "boolean"
                    },
                    "indicatieZoneZwaarVerkeer": {
                      "description": "indicator Verkeersbesluit Zone Zwaar Verkeer Amsterdam (Staatscourant 2021, 24726).",
                      "nullable": true,
                      "type": "string"
                    },
                    "laadLosRegime": {
                      "description": "het type laden-en-lossen regime.",
                      "nullable": true,
                      "type": "string"
                    },
                    "laadLosVenstertijden": {
                      "description": "toegestane tijdsperioden voor laden-en-lossen.",
                      "nullable": true,
                      "type": "string"
                    },
                    "laadLosVerbodStilTeStaanTijden": {
                      "description": "dagen en tijden voor verbod laden-en-lossen en stilstaan.",
                      "nullable": true,
                      "type": "string"
                    },
                    "lengte": {
                      "description": "lengte van de link in meters.",
                      "format": "double",
                      "nullable": true,
                      "type": "number"
                    },
                    "linknummer": {
                      "description": "unieke identificatie voor elke opgedeelde wegennetwerk object.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "percLijnInPolygoonWeg": {
                      "description": "welke % van 'lijn lengte' binnen BGT polygonen liggen met een van de volgende functies: ('rijbaan regionale weg','rijbaan autoweg','OV-baan','rijbaan autosnelweg','woonerf','rijbaan lokale weg').",
                      "format": "double",
                      "nullable": true,
                      "type": "number"
                    },
                    "rijrichting": {
                      "description": "toegestane auto rijrichtingen van de weg.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "source": {
                      "description": "nummer van source node van edge.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "straatnaam": {
                      "description": "straatnaam die van toepassing is op wegennetwerk object.",
                      "nullable": true,
                      "type": "string"
                    },
                    "target": {
                      "description": "nummer van target node van edge.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "tijdskostenBeginEind": {
                      "description": "tijdskosten om van begin naar eind van link te gaan in seconden.",
                      "format": "double",
                      "nullable": true,
                      "type": "number"
                    },
                    "tijdskostenEindBegin": {
                      "description": "tijdskosten om van eind naar begin van link te gaan in seconden.",
                      "format": "double",
                      "nullable": true,
                      "type": "number"
                    },
                    "tunnelCategorie": {
                      "description": "een Europese categorisering voor tunnels met betrekking op het vervoer van gevaarlijke stoffen.",
                      "nullable": true,
                      "type": "string"
                    },
                    "tunnelNaam": {
                      "description": "naam van de tunnel.",
                      "nullable": true,
                      "type": "string"
                    },
                    "wegFunctie": {
                      "description": "functional road class; geeft de functie van weg.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "wegbeheerder": {
                      "description": "wegbeheerder die hoort bij de weg.",
                      "nullable": true,
                      "type": "string"
                    },
                    "wettelijkeSnelheid": {
                      "description": "wettelijke Snelheid die toegestaan is op weg. Bij verschillende waarde voor de 2 rijrichtingen gaat het om maximum.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    }
                  },
                  "required": [
                    "_links",
                    "id"
                  ],
                  "type": "object"
                }
              },
              "text/csv": {
                "schema": {
                  "description": "buiten",
                  "properties": {
                    "_links": {
                      "allOf": [
                        {
                          "description": "The contents of the `buiten._links` field. It contains all relationships with objects.",
                          "properties": {
                            "schema": {
                              "description": "The schema field is exposed with every record",
                              "format": "uri",
                              "readOnly": true,
                              "type": "string"
                            },
                            "self": {
                              "description": "The identifier of the relationship to buiten.",
                              "properties": {
                                "href": {
                                  "format": "uri",
                                  "readOnly": true,
                                  "type": "string"
                                },
                                "id": {
                                  "description": "unieke identificatie van het record.",
                                  "format": "int64",
                                  "maximum": 9223372036854776000,
                                  "minimum": -9223372036854776000,
                                  "type": "integer"
                                },
                                "title": {
                                  "type": "string"
                                }
                              },
                              "required": [
                                "href",
                                "id",
                                "title"
                              ],
                              "type": "object"
                            }
                          },
                          "required": [
                            "schema",
                            "self"
                          ],
                          "type": "object"
                        }
                      ],
                      "title": " links"
                    },
                    "beleidskaderAuto": {
                      "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
                      "nullable": true,
                      "type": "string"
                    },
                    "beleidskaderFiets": {
                      "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
                      "nullable": true,
                      "type": "string"
                    },
                    "beleidskaderOv": {
                      "description": "beleidsfunctie van weg conform Beleidskader Verkeersnetten Gemeente Amsterdam, 24 januari 2018.",
                      "nullable": true,
                      "type": "string"
                    },
                    "geometry": {
                      "allOf": [
                        {
                          "description": "GeoJSON geometry",
                          "discriminator": {
                            "propertyName": "type"
                          },
                          "properties": {
                            "coordinates": {
                              "description": "Based on the geometry type, a point or collection of points.",
                              "items": {
                                "type": "number"
                              },
                              "minItems": 2,
                              "type": "array"
                            },
                            "type": {
                              "description": "the geometry type",
                              "enum": [
                                "Point",
                                "LineString",
                                "Polygon",
                                "MultiPoint",
                                "MultiLineString",
                                "MultiPolygon"
                              ],
                              "type": "string"
                            }
                          },
                          "required": [
                            "type"
                          ],
                          "type": "object"
                        },
                        {
                          "properties": {
                            "coordinates": {
                              "items": {
                                "items": {
                                  "description": "Point in 3D space",
                                  "items": {
                                    "type": "number"
                                  },
                                  "maxItems": 3,
                                  "minItems": 2,
                                  "type": "array"
                                },
                                "type": "array"
                              },
                              "type": "array"
                            },
                            "type": {
                              "enum": [
                                "MultiLineString"
                              ],
                              "type": "string"
                            }
                          }
                        }
                      ],
                      "description": "GeoJSON geometry",
                      "type": "object"
                    },
                    "gevaarlijkeStoffenRoute": {
                      "description": "indicator voor een route voor transport van routeplichtige gevaarlijke stoffen.",
                      "nullable": true,
                      "type": "boolean"
                    },
                    "id": {
                      "description": "unieke identificatie van het record.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "type": "integer"
                    },
                    "indicatieZoneAmsterdam": {
                      "description": "indicator of link valt binnen of grotendeels binnen de gemeente Amsterdam.",
                      "nullable": true,
                      "type": "boolean"
                    },
                    "indicatieZoneMilieu": {
                      "description": "indicator Verkeersbesluit milieuzone Amsterdam (Staatscourant 2020, 32736).",
                      "nullable": true,
                      "type": "boolean"
                    },
                    "indicatieZoneZwaarVerkeer": {
                      "description": "indicator Verkeersbesluit Zone Zwaar Verkeer Amsterdam (Staatscourant 2021, 24726).",
                      "nullable": true,
                      "type": "string"
                    },
                    "laadLosRegime": {
                      "description": "het type laden-en-lossen regime.",
                      "nullable": true,
                      "type": "string"
                    },
                    "laadLosVenstertijden": {
                      "description": "toegestane tijdsperioden voor laden-en-lossen.",
                      "nullable": true,
                      "type": "string"
                    },
                    "laadLosVerbodStilTeStaanTijden": {
                      "description": "dagen en tijden voor verbod laden-en-lossen en stilstaan.",
                      "nullable": true,
                      "type": "string"
                    },
                    "lengte": {
                      "description": "lengte van de link in meters.",
                      "format": "double",
                      "nullable": true,
                      "type": "number"
                    },
                    "linknummer": {
                      "description": "unieke identificatie voor elke opgedeelde wegennetwerk object.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "percLijnInPolygoonWeg": {
                      "description": "welke % van 'lijn lengte' binnen BGT polygonen liggen met een van de volgende functies: ('rijbaan regionale weg','rijbaan autoweg','OV-baan','rijbaan autosnelweg','woonerf','rijbaan lokale weg').",
                      "format": "double",
                      "nullable": true,
                      "type": "number"
                    },
                    "rijrichting": {
                      "description": "toegestane auto rijrichtingen van de weg.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "source": {
                      "description": "nummer van source node van edge.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "straatnaam": {
                      "description": "straatnaam die van toepassing is op wegennetwerk object.",
                      "nullable": true,
                      "type": "string"
                    },
                    "target": {
                      "description": "nummer van target node van edge.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "tijdskostenBeginEind": {
                      "description": "tijdskosten om van begin naar eind van link te gaan in seconden.",
                      "format": "double",
                      "nullable": true,
                      "type": "number"
                    },
                    "tijdskostenEindBegin": {
                      "description": "tijdskosten om van eind naar begin van link te gaan in seconden.",
                      "format": "double",
                      "nullable": true,
                      "type": "number"
                    },
                    "tunnelCategorie": {
                      "description": "een Europese categorisering voor tunnels met betrekking op het vervoer van gevaarlijke stoffen.",
                      "nullable": true,
                      "type": "string"
                    },
                    "tunnelNaam": {
                      "description": "naam van de tunnel.",
                      "nullable": true,
                      "type": "string"
                    },
                    "wegFunctie": {
                      "description": "functional road class; geeft de functie van weg.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "wegbeheerder": {
                      "description": "wegbeheerder die hoort bij de weg.",
                      "nullable": true,
                      "type": "string"
                    },
                    "wettelijkeSnelheid": {
                      "description": "wettelijke Snelheid die toegestaan is op weg. Bij verschillende waarde voor de 2 rijrichtingen gaat het om maximum.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    }
                  },
                  "required": [
                    "_links",
                    "id"
                  ],
                  "type": "object"
                }
              }
            },
            "description": ""
          }
        },
        "tags": [
          "buiten"
        ]
      }
    }
  },
  "security": [
    {
      "oauth2": []
    }
  ],
  "servers": [
    {
      "url": "https://api.data.amsterdam.nl/"
    }
  ],
  "x-versions": {
    "default": {
      "default": true,
      "endSupportDate": null,
      "paths": {
        "binnen": "stable",
        "breed_opgezette_wegen": "stable",
        "buiten": "stable"
      },
      "pathsUnderDevelopment": false,
      "status": "stable",
      "statusDescription": "stabiel",
      "url": "https://api.data.amsterdam.nl/v1/wegenbestand/zone_zwaar_verkeer"
    },
    "v1": {
      "default": true,
      "endSupportDate": null,
      "paths": {
        "binnen": "stable",
        "breed_opgezette_wegen": "stable",
        "buiten": "stable"
      },
      "pathsUnderDevelopment": false,
      "status": "stable",
      "statusDescription": "stabiel",
      "url": "https://api.data.amsterdam.nl/v1/wegenbestand/zone_zwaar_verkeer/v1"
    }
  }
}