{
  "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"
      },
      "PaginatedStoringsmeldingenOvlEnKlokkenklokkenList": {
        "properties": {
          "_embedded": {
            "properties": {
              "klokken": {
                "items": {
                  "description": "Gegevens over de storingsmeldingen van de klokken van de Gemeente van Amsterdam. Deze klokken zijn te herkennen aan de 3 rode kruizen op de klok.",
                  "properties": {
                    "_links": {
                      "allOf": [
                        {
                          "description": "The contents of the `klokken._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 klokken.",
                              "properties": {
                                "href": {
                                  "format": "uri",
                                  "readOnly": true,
                                  "type": "string"
                                },
                                "objectId": {
                                  "description": "Een unieke aanduiding van een klok door de bron.",
                                  "format": "int64",
                                  "maximum": 9223372036854776000,
                                  "minimum": -9223372036854776000,
                                  "type": "integer"
                                },
                                "title": {
                                  "type": "string"
                                }
                              },
                              "required": [
                                "href",
                                "objectId",
                                "title"
                              ],
                              "type": "object"
                            }
                          },
                          "required": [
                            "schema",
                            "self"
                          ],
                          "type": "object"
                        }
                      ],
                      "title": " links"
                    },
                    "breedtegraad": {
                      "description": "Breedtegraad van een klok.",
                      "format": "double",
                      "nullable": true,
                      "type": "number"
                    },
                    "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"
                    },
                    "lengtegraad": {
                      "description": "Lengtegraad van een klok.",
                      "format": "double",
                      "nullable": true,
                      "type": "number"
                    },
                    "meldingstatus": {
                      "description": "Indicatie of een melding is gemaakt op een klok. Waarde 1 is melding, waarde 0 geen melding.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "objectId": {
                      "description": "Een unieke aanduiding van een klok door de bron.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "type": "integer"
                    },
                    "objectnummer": {
                      "description": "Een unieke aanduiding van een klok door de bron.",
                      "nullable": true,
                      "type": "string"
                    },
                    "objecttype": {
                      "description": "Type aanduiding van een klok.",
                      "nullable": true,
                      "type": "string"
                    },
                    "objecttypeOmschrijving": {
                      "description": "Omschrijving van type aanduiding van een klok.",
                      "nullable": true,
                      "type": "string"
                    },
                    "storingstatus": {
                      "description": "Indicatie of een storing bekend is van een klok. Waarde 1 is storing, waarde 0 geen storing.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    }
                  },
                  "required": [
                    "_links",
                    "objectId"
                  ],
                  "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"
      },
      "PaginatedStoringsmeldingenOvlEnKlokkenopenbare_verlichtingList": {
        "properties": {
          "_embedded": {
            "properties": {
              "openbare_verlichting": {
                "items": {
                  "description": "Gegevens over de storingsmeldingen van de openbare verlichting van de Gemeente van Amsterdam.",
                  "properties": {
                    "_links": {
                      "allOf": [
                        {
                          "description": "The contents of the `openbareVerlichting._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 openbareVerlichting.",
                              "properties": {
                                "href": {
                                  "format": "uri",
                                  "readOnly": true,
                                  "type": "string"
                                },
                                "objectId": {
                                  "description": "Een unieke aanduiding van een openbare verlichting door bron.",
                                  "format": "int64",
                                  "maximum": 9223372036854776000,
                                  "minimum": -9223372036854776000,
                                  "type": "integer"
                                },
                                "title": {
                                  "type": "string"
                                }
                              },
                              "required": [
                                "href",
                                "objectId",
                                "title"
                              ],
                              "type": "object"
                            }
                          },
                          "required": [
                            "schema",
                            "self"
                          ],
                          "type": "object"
                        }
                      ],
                      "title": " links"
                    },
                    "breedtegraad": {
                      "description": "Breedtegraad van een openbare verlichting.",
                      "format": "double",
                      "nullable": true,
                      "type": "number"
                    },
                    "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"
                    },
                    "lengtegraad": {
                      "description": "Lengtegraad van een openbare verlichting.",
                      "format": "double",
                      "nullable": true,
                      "type": "number"
                    },
                    "meldingstatus": {
                      "description": "Indicatie of een melding is gemaakt op een openbare verlichting. Waarde 1 is melding, waarde 0 geen melding.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "objectId": {
                      "description": "Een unieke aanduiding van een openbare verlichting door bron.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "type": "integer"
                    },
                    "objectnummer": {
                      "description": "Een unieke aanduiding van een openbare verlichting door bron.",
                      "nullable": true,
                      "type": "string"
                    },
                    "objecttype": {
                      "description": "Type aanduiding van een openbare verlichting.",
                      "nullable": true,
                      "type": "string"
                    },
                    "objecttypeOmschrijving": {
                      "description": "Omschrijving van type aanduiding van een openbare verlichting.",
                      "nullable": true,
                      "type": "string"
                    },
                    "storingstatus": {
                      "description": "Indicatie of een storing bekend is van een openbare verlichting. Waarde 1 is storing, waarde 0 geen storing.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    }
                  },
                  "required": [
                    "_links",
                    "objectId"
                  ],
                  "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"
      },
      "StoringsmeldingenOvlEnKlokkendefaultKlokkenLinks": {
        "description": "The contents of the `klokken._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 klokken.",
            "properties": {
              "href": {
                "format": "uri",
                "readOnly": true,
                "type": "string"
              },
              "objectId": {
                "description": "Een unieke aanduiding van een klok door de bron.",
                "format": "int64",
                "maximum": 9223372036854776000,
                "minimum": -9223372036854776000,
                "type": "integer"
              },
              "title": {
                "type": "string"
              }
            },
            "required": [
              "href",
              "objectId",
              "title"
            ],
            "type": "object"
          }
        },
        "required": [
          "schema",
          "self"
        ],
        "type": "object"
      },
      "StoringsmeldingenOvlEnKlokkendefaultOpenbareVerlichtingLinks": {
        "description": "The contents of the `openbareVerlichting._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 openbareVerlichting.",
            "properties": {
              "href": {
                "format": "uri",
                "readOnly": true,
                "type": "string"
              },
              "objectId": {
                "description": "Een unieke aanduiding van een openbare verlichting door bron.",
                "format": "int64",
                "maximum": 9223372036854776000,
                "minimum": -9223372036854776000,
                "type": "integer"
              },
              "title": {
                "type": "string"
              }
            },
            "required": [
              "href",
              "objectId",
              "title"
            ],
            "type": "object"
          }
        },
        "required": [
          "schema",
          "self"
        ],
        "type": "object"
      },
      "StoringsmeldingenOvlEnKlokkenklokken": {
        "description": "Gegevens over de storingsmeldingen van de klokken van de Gemeente van Amsterdam. Deze klokken zijn te herkennen aan de 3 rode kruizen op de klok.",
        "properties": {
          "_links": {
            "allOf": [
              {
                "description": "The contents of the `klokken._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 klokken.",
                    "properties": {
                      "href": {
                        "format": "uri",
                        "readOnly": true,
                        "type": "string"
                      },
                      "objectId": {
                        "description": "Een unieke aanduiding van een klok door de bron.",
                        "format": "int64",
                        "maximum": 9223372036854776000,
                        "minimum": -9223372036854776000,
                        "type": "integer"
                      },
                      "title": {
                        "type": "string"
                      }
                    },
                    "required": [
                      "href",
                      "objectId",
                      "title"
                    ],
                    "type": "object"
                  }
                },
                "required": [
                  "schema",
                  "self"
                ],
                "type": "object"
              }
            ],
            "title": " links"
          },
          "breedtegraad": {
            "description": "Breedtegraad van een klok.",
            "format": "double",
            "nullable": true,
            "type": "number"
          },
          "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"
          },
          "lengtegraad": {
            "description": "Lengtegraad van een klok.",
            "format": "double",
            "nullable": true,
            "type": "number"
          },
          "meldingstatus": {
            "description": "Indicatie of een melding is gemaakt op een klok. Waarde 1 is melding, waarde 0 geen melding.",
            "format": "int64",
            "maximum": 9223372036854776000,
            "minimum": -9223372036854776000,
            "nullable": true,
            "type": "integer"
          },
          "objectId": {
            "description": "Een unieke aanduiding van een klok door de bron.",
            "format": "int64",
            "maximum": 9223372036854776000,
            "minimum": -9223372036854776000,
            "type": "integer"
          },
          "objectnummer": {
            "description": "Een unieke aanduiding van een klok door de bron.",
            "nullable": true,
            "type": "string"
          },
          "objecttype": {
            "description": "Type aanduiding van een klok.",
            "nullable": true,
            "type": "string"
          },
          "objecttypeOmschrijving": {
            "description": "Omschrijving van type aanduiding van een klok.",
            "nullable": true,
            "type": "string"
          },
          "storingstatus": {
            "description": "Indicatie of een storing bekend is van een klok. Waarde 1 is storing, waarde 0 geen storing.",
            "format": "int64",
            "maximum": 9223372036854776000,
            "minimum": -9223372036854776000,
            "nullable": true,
            "type": "integer"
          }
        },
        "required": [
          "_links",
          "objectId"
        ],
        "type": "object"
      },
      "StoringsmeldingenOvlEnKlokkenklokkenLink": {
        "description": "The identifier of the relationship to klokken.",
        "properties": {
          "href": {
            "format": "uri",
            "readOnly": true,
            "type": "string"
          },
          "objectId": {
            "description": "Een unieke aanduiding van een klok door de bron.",
            "format": "int64",
            "maximum": 9223372036854776000,
            "minimum": -9223372036854776000,
            "type": "integer"
          },
          "title": {
            "type": "string"
          }
        },
        "required": [
          "href",
          "objectId",
          "title"
        ],
        "type": "object"
      },
      "StoringsmeldingenOvlEnKlokkenopenbare_verlichting": {
        "description": "Gegevens over de storingsmeldingen van de openbare verlichting van de Gemeente van Amsterdam.",
        "properties": {
          "_links": {
            "allOf": [
              {
                "description": "The contents of the `openbareVerlichting._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 openbareVerlichting.",
                    "properties": {
                      "href": {
                        "format": "uri",
                        "readOnly": true,
                        "type": "string"
                      },
                      "objectId": {
                        "description": "Een unieke aanduiding van een openbare verlichting door bron.",
                        "format": "int64",
                        "maximum": 9223372036854776000,
                        "minimum": -9223372036854776000,
                        "type": "integer"
                      },
                      "title": {
                        "type": "string"
                      }
                    },
                    "required": [
                      "href",
                      "objectId",
                      "title"
                    ],
                    "type": "object"
                  }
                },
                "required": [
                  "schema",
                  "self"
                ],
                "type": "object"
              }
            ],
            "title": " links"
          },
          "breedtegraad": {
            "description": "Breedtegraad van een openbare verlichting.",
            "format": "double",
            "nullable": true,
            "type": "number"
          },
          "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"
          },
          "lengtegraad": {
            "description": "Lengtegraad van een openbare verlichting.",
            "format": "double",
            "nullable": true,
            "type": "number"
          },
          "meldingstatus": {
            "description": "Indicatie of een melding is gemaakt op een openbare verlichting. Waarde 1 is melding, waarde 0 geen melding.",
            "format": "int64",
            "maximum": 9223372036854776000,
            "minimum": -9223372036854776000,
            "nullable": true,
            "type": "integer"
          },
          "objectId": {
            "description": "Een unieke aanduiding van een openbare verlichting door bron.",
            "format": "int64",
            "maximum": 9223372036854776000,
            "minimum": -9223372036854776000,
            "type": "integer"
          },
          "objectnummer": {
            "description": "Een unieke aanduiding van een openbare verlichting door bron.",
            "nullable": true,
            "type": "string"
          },
          "objecttype": {
            "description": "Type aanduiding van een openbare verlichting.",
            "nullable": true,
            "type": "string"
          },
          "objecttypeOmschrijving": {
            "description": "Omschrijving van type aanduiding van een openbare verlichting.",
            "nullable": true,
            "type": "string"
          },
          "storingstatus": {
            "description": "Indicatie of een storing bekend is van een openbare verlichting. Waarde 1 is storing, waarde 0 geen storing.",
            "format": "int64",
            "maximum": 9223372036854776000,
            "minimum": -9223372036854776000,
            "nullable": true,
            "type": "integer"
          }
        },
        "required": [
          "_links",
          "objectId"
        ],
        "type": "object"
      },
      "StoringsmeldingenOvlEnKlokkenopenbare_verlichtingLink": {
        "description": "The identifier of the relationship to openbareVerlichting.",
        "properties": {
          "href": {
            "format": "uri",
            "readOnly": true,
            "type": "string"
          },
          "objectId": {
            "description": "Een unieke aanduiding van een openbare verlichting door bron.",
            "format": "int64",
            "maximum": 9223372036854776000,
            "minimum": -9223372036854776000,
            "type": "integer"
          },
          "title": {
            "type": "string"
          }
        },
        "required": [
          "href",
          "objectId",
          "title"
        ],
        "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/storingsmeldingen_ovl_en_klokken.html"
  },
  "info": {
    "contact": {
      "email": "datapunt@amsterdam.nl"
    },
    "description": "De dataset bevat gegevens over de storingsmeldingen van openbare verlichting en klokken van de Gemeente van Amsterdam.",
    "license": {
      "name": "public"
    },
    "termsOfService": "https://data.amsterdam.nl/",
    "title": "Storingsmeldingen openbare verlichting en klokken",
    "version": "1.0.0"
  },
  "openapi": "3.1.0",
  "paths": {
    "/klokken": {
      "get": {
        "description": "Gegevens over de storingsmeldingen van de klokken van de Gemeente van Amsterdam. Deze klokken zijn te herkennen aan de 3 rode kruizen op de klok.",
        "operationId": "storingsmeldingen_ovl_en_klokken_klokken_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": "Breedtegraad van een klok.",
            "in": "query",
            "name": "breedtegraad",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "breedtegraad[gt]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "breedtegraad[gte]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "breedtegraad[in]",
            "schema": {
              "items": {
                "type": "number"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "breedtegraad[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "breedtegraad[lt]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "breedtegraad[lte]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "breedtegraad[not]",
            "schema": {
              "items": {
                "type": "number"
              },
              "type": "array"
            }
          },
          {
            "description": "Punt definitie van een klok.",
            "in": "query",
            "name": "geometry",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "GeoJSON | GEOMETRY(...)",
            "in": "query",
            "name": "geometry[contains]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "GeoJSON | GEOMETRY(...)",
            "in": "query",
            "name": "geometry[intersects]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "geometry[isnull]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "GeoJSON | GEOMETRY(...)",
            "in": "query",
            "name": "geometry[not]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Lengtegraad van een klok.",
            "in": "query",
            "name": "lengtegraad",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "lengtegraad[gt]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "lengtegraad[gte]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "lengtegraad[in]",
            "schema": {
              "items": {
                "type": "number"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "lengtegraad[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "lengtegraad[lt]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "lengtegraad[lte]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "lengtegraad[not]",
            "schema": {
              "items": {
                "type": "number"
              },
              "type": "array"
            }
          },
          {
            "description": "Indicatie of een melding is gemaakt op een klok. Waarde 1 is melding, waarde 0 geen melding.",
            "in": "query",
            "name": "meldingstatus",
            "schema": {
              "enum": [
                0,
                1
              ],
              "type": "integer"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "meldingstatus[gt]",
            "schema": {
              "enum": [
                0,
                1
              ],
              "type": "integer"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "meldingstatus[gte]",
            "schema": {
              "enum": [
                0,
                1
              ],
              "type": "integer"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "meldingstatus[in]",
            "schema": {
              "enum": [
                0,
                1
              ],
              "items": {
                "type": "integer"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "meldingstatus[isnull]",
            "schema": {
              "enum": [
                0,
                1
              ],
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "meldingstatus[lt]",
            "schema": {
              "enum": [
                0,
                1
              ],
              "type": "integer"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "meldingstatus[lte]",
            "schema": {
              "enum": [
                0,
                1
              ],
              "type": "integer"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "meldingstatus[not]",
            "schema": {
              "enum": [
                0,
                1
              ],
              "items": {
                "type": "integer"
              },
              "type": "array"
            }
          },
          {
            "description": "Een unieke aanduiding van een klok door de bron.",
            "in": "query",
            "name": "objectId",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "objectId[gt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "objectId[gte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "objectId[in]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "objectId[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "objectId[lt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "objectId[lte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "objectId[not]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            }
          },
          {
            "description": "Een unieke aanduiding van een klok door de bron.",
            "in": "query",
            "name": "objectnummer",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "objectnummer[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "objectnummer[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "objectnummer[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "objectnummer[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "objectnummer[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "Type aanduiding van een klok.",
            "in": "query",
            "name": "objecttype",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Omschrijving van type aanduiding van een klok.",
            "in": "query",
            "name": "objecttypeOmschrijving",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "objecttypeOmschrijving[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "objecttypeOmschrijving[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "objecttypeOmschrijving[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "objecttypeOmschrijving[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "objecttypeOmschrijving[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "objecttype[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "objecttype[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "objecttype[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "objecttype[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "objecttype[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "A page number within the paginated result set.",
            "in": "query",
            "name": "page",
            "required": false,
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Indicatie of een storing bekend is van een klok. Waarde 1 is storing, waarde 0 geen storing.",
            "in": "query",
            "name": "storingstatus",
            "schema": {
              "enum": [
                0,
                1
              ],
              "type": "integer"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "storingstatus[gt]",
            "schema": {
              "enum": [
                0,
                1
              ],
              "type": "integer"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "storingstatus[gte]",
            "schema": {
              "enum": [
                0,
                1
              ],
              "type": "integer"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "storingstatus[in]",
            "schema": {
              "enum": [
                0,
                1
              ],
              "items": {
                "type": "integer"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "storingstatus[isnull]",
            "schema": {
              "enum": [
                0,
                1
              ],
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "storingstatus[lt]",
            "schema": {
              "enum": [
                0,
                1
              ],
              "type": "integer"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "storingstatus[lte]",
            "schema": {
              "enum": [
                0,
                1
              ],
              "type": "integer"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "storingstatus[not]",
            "schema": {
              "enum": [
                0,
                1
              ],
              "items": {
                "type": "integer"
              },
              "type": "array"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/geo+json": {
                "schema": {
                  "properties": {
                    "_embedded": {
                      "properties": {
                        "klokken": {
                          "items": {
                            "description": "Gegevens over de storingsmeldingen van de klokken van de Gemeente van Amsterdam. Deze klokken zijn te herkennen aan de 3 rode kruizen op de klok.",
                            "properties": {
                              "_links": {
                                "allOf": [
                                  {
                                    "description": "The contents of the `klokken._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 klokken.",
                                        "properties": {
                                          "href": {
                                            "format": "uri",
                                            "readOnly": true,
                                            "type": "string"
                                          },
                                          "objectId": {
                                            "description": "Een unieke aanduiding van een klok door de bron.",
                                            "format": "int64",
                                            "maximum": 9223372036854776000,
                                            "minimum": -9223372036854776000,
                                            "type": "integer"
                                          },
                                          "title": {
                                            "type": "string"
                                          }
                                        },
                                        "required": [
                                          "href",
                                          "objectId",
                                          "title"
                                        ],
                                        "type": "object"
                                      }
                                    },
                                    "required": [
                                      "schema",
                                      "self"
                                    ],
                                    "type": "object"
                                  }
                                ],
                                "title": " links"
                              },
                              "breedtegraad": {
                                "description": "Breedtegraad van een klok.",
                                "format": "double",
                                "nullable": true,
                                "type": "number"
                              },
                              "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"
                              },
                              "lengtegraad": {
                                "description": "Lengtegraad van een klok.",
                                "format": "double",
                                "nullable": true,
                                "type": "number"
                              },
                              "meldingstatus": {
                                "description": "Indicatie of een melding is gemaakt op een klok. Waarde 1 is melding, waarde 0 geen melding.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "nullable": true,
                                "type": "integer"
                              },
                              "objectId": {
                                "description": "Een unieke aanduiding van een klok door de bron.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "type": "integer"
                              },
                              "objectnummer": {
                                "description": "Een unieke aanduiding van een klok door de bron.",
                                "nullable": true,
                                "type": "string"
                              },
                              "objecttype": {
                                "description": "Type aanduiding van een klok.",
                                "nullable": true,
                                "type": "string"
                              },
                              "objecttypeOmschrijving": {
                                "description": "Omschrijving van type aanduiding van een klok.",
                                "nullable": true,
                                "type": "string"
                              },
                              "storingstatus": {
                                "description": "Indicatie of een storing bekend is van een klok. Waarde 1 is storing, waarde 0 geen storing.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "nullable": true,
                                "type": "integer"
                              }
                            },
                            "required": [
                              "_links",
                              "objectId"
                            ],
                            "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": {
                        "klokken": {
                          "items": {
                            "description": "Gegevens over de storingsmeldingen van de klokken van de Gemeente van Amsterdam. Deze klokken zijn te herkennen aan de 3 rode kruizen op de klok.",
                            "properties": {
                              "_links": {
                                "allOf": [
                                  {
                                    "description": "The contents of the `klokken._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 klokken.",
                                        "properties": {
                                          "href": {
                                            "format": "uri",
                                            "readOnly": true,
                                            "type": "string"
                                          },
                                          "objectId": {
                                            "description": "Een unieke aanduiding van een klok door de bron.",
                                            "format": "int64",
                                            "maximum": 9223372036854776000,
                                            "minimum": -9223372036854776000,
                                            "type": "integer"
                                          },
                                          "title": {
                                            "type": "string"
                                          }
                                        },
                                        "required": [
                                          "href",
                                          "objectId",
                                          "title"
                                        ],
                                        "type": "object"
                                      }
                                    },
                                    "required": [
                                      "schema",
                                      "self"
                                    ],
                                    "type": "object"
                                  }
                                ],
                                "title": " links"
                              },
                              "breedtegraad": {
                                "description": "Breedtegraad van een klok.",
                                "format": "double",
                                "nullable": true,
                                "type": "number"
                              },
                              "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"
                              },
                              "lengtegraad": {
                                "description": "Lengtegraad van een klok.",
                                "format": "double",
                                "nullable": true,
                                "type": "number"
                              },
                              "meldingstatus": {
                                "description": "Indicatie of een melding is gemaakt op een klok. Waarde 1 is melding, waarde 0 geen melding.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "nullable": true,
                                "type": "integer"
                              },
                              "objectId": {
                                "description": "Een unieke aanduiding van een klok door de bron.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "type": "integer"
                              },
                              "objectnummer": {
                                "description": "Een unieke aanduiding van een klok door de bron.",
                                "nullable": true,
                                "type": "string"
                              },
                              "objecttype": {
                                "description": "Type aanduiding van een klok.",
                                "nullable": true,
                                "type": "string"
                              },
                              "objecttypeOmschrijving": {
                                "description": "Omschrijving van type aanduiding van een klok.",
                                "nullable": true,
                                "type": "string"
                              },
                              "storingstatus": {
                                "description": "Indicatie of een storing bekend is van een klok. Waarde 1 is storing, waarde 0 geen storing.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "nullable": true,
                                "type": "integer"
                              }
                            },
                            "required": [
                              "_links",
                              "objectId"
                            ],
                            "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": {
                        "klokken": {
                          "items": {
                            "description": "Gegevens over de storingsmeldingen van de klokken van de Gemeente van Amsterdam. Deze klokken zijn te herkennen aan de 3 rode kruizen op de klok.",
                            "properties": {
                              "_links": {
                                "allOf": [
                                  {
                                    "description": "The contents of the `klokken._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 klokken.",
                                        "properties": {
                                          "href": {
                                            "format": "uri",
                                            "readOnly": true,
                                            "type": "string"
                                          },
                                          "objectId": {
                                            "description": "Een unieke aanduiding van een klok door de bron.",
                                            "format": "int64",
                                            "maximum": 9223372036854776000,
                                            "minimum": -9223372036854776000,
                                            "type": "integer"
                                          },
                                          "title": {
                                            "type": "string"
                                          }
                                        },
                                        "required": [
                                          "href",
                                          "objectId",
                                          "title"
                                        ],
                                        "type": "object"
                                      }
                                    },
                                    "required": [
                                      "schema",
                                      "self"
                                    ],
                                    "type": "object"
                                  }
                                ],
                                "title": " links"
                              },
                              "breedtegraad": {
                                "description": "Breedtegraad van een klok.",
                                "format": "double",
                                "nullable": true,
                                "type": "number"
                              },
                              "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"
                              },
                              "lengtegraad": {
                                "description": "Lengtegraad van een klok.",
                                "format": "double",
                                "nullable": true,
                                "type": "number"
                              },
                              "meldingstatus": {
                                "description": "Indicatie of een melding is gemaakt op een klok. Waarde 1 is melding, waarde 0 geen melding.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "nullable": true,
                                "type": "integer"
                              },
                              "objectId": {
                                "description": "Een unieke aanduiding van een klok door de bron.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "type": "integer"
                              },
                              "objectnummer": {
                                "description": "Een unieke aanduiding van een klok door de bron.",
                                "nullable": true,
                                "type": "string"
                              },
                              "objecttype": {
                                "description": "Type aanduiding van een klok.",
                                "nullable": true,
                                "type": "string"
                              },
                              "objecttypeOmschrijving": {
                                "description": "Omschrijving van type aanduiding van een klok.",
                                "nullable": true,
                                "type": "string"
                              },
                              "storingstatus": {
                                "description": "Indicatie of een storing bekend is van een klok. Waarde 1 is storing, waarde 0 geen storing.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "nullable": true,
                                "type": "integer"
                              }
                            },
                            "required": [
                              "_links",
                              "objectId"
                            ],
                            "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": [
          "klokken"
        ]
      }
    },
    "/klokken/{object_id}": {
      "get": {
        "operationId": "storingsmeldingen_ovl_en_klokken_klokken_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": "Breedtegraad van een klok.",
            "in": "query",
            "name": "breedtegraad",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "breedtegraad[gt]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "breedtegraad[gte]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "breedtegraad[in]",
            "schema": {
              "items": {
                "type": "number"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "breedtegraad[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "breedtegraad[lt]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "breedtegraad[lte]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "breedtegraad[not]",
            "schema": {
              "items": {
                "type": "number"
              },
              "type": "array"
            }
          },
          {
            "description": "Punt definitie van een klok.",
            "in": "query",
            "name": "geometry",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "GeoJSON | GEOMETRY(...)",
            "in": "query",
            "name": "geometry[contains]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "GeoJSON | GEOMETRY(...)",
            "in": "query",
            "name": "geometry[intersects]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "geometry[isnull]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "GeoJSON | GEOMETRY(...)",
            "in": "query",
            "name": "geometry[not]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Lengtegraad van een klok.",
            "in": "query",
            "name": "lengtegraad",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "lengtegraad[gt]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "lengtegraad[gte]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "lengtegraad[in]",
            "schema": {
              "items": {
                "type": "number"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "lengtegraad[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "lengtegraad[lt]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "lengtegraad[lte]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "lengtegraad[not]",
            "schema": {
              "items": {
                "type": "number"
              },
              "type": "array"
            }
          },
          {
            "description": "Indicatie of een melding is gemaakt op een klok. Waarde 1 is melding, waarde 0 geen melding.",
            "in": "query",
            "name": "meldingstatus",
            "schema": {
              "enum": [
                0,
                1
              ],
              "type": "integer"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "meldingstatus[gt]",
            "schema": {
              "enum": [
                0,
                1
              ],
              "type": "integer"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "meldingstatus[gte]",
            "schema": {
              "enum": [
                0,
                1
              ],
              "type": "integer"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "meldingstatus[in]",
            "schema": {
              "enum": [
                0,
                1
              ],
              "items": {
                "type": "integer"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "meldingstatus[isnull]",
            "schema": {
              "enum": [
                0,
                1
              ],
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "meldingstatus[lt]",
            "schema": {
              "enum": [
                0,
                1
              ],
              "type": "integer"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "meldingstatus[lte]",
            "schema": {
              "enum": [
                0,
                1
              ],
              "type": "integer"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "meldingstatus[not]",
            "schema": {
              "enum": [
                0,
                1
              ],
              "items": {
                "type": "integer"
              },
              "type": "array"
            }
          },
          {
            "description": "Een unieke aanduiding van een klok door de bron.",
            "in": "query",
            "name": "objectId",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "objectId[gt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "objectId[gte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "objectId[in]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "objectId[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "objectId[lt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "objectId[lte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "objectId[not]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            }
          },
          {
            "in": "path",
            "name": "object_id",
            "required": true,
            "schema": {
              "description": "Een unieke aanduiding van een klok door de bron.",
              "format": "int64",
              "maximum": 9223372036854776000,
              "minimum": -9223372036854776000,
              "type": "integer"
            }
          },
          {
            "description": "Een unieke aanduiding van een klok door de bron.",
            "in": "query",
            "name": "objectnummer",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "objectnummer[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "objectnummer[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "objectnummer[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "objectnummer[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "objectnummer[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "Type aanduiding van een klok.",
            "in": "query",
            "name": "objecttype",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Omschrijving van type aanduiding van een klok.",
            "in": "query",
            "name": "objecttypeOmschrijving",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "objecttypeOmschrijving[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "objecttypeOmschrijving[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "objecttypeOmschrijving[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "objecttypeOmschrijving[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "objecttypeOmschrijving[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "objecttype[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "objecttype[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "objecttype[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "objecttype[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "objecttype[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "Indicatie of een storing bekend is van een klok. Waarde 1 is storing, waarde 0 geen storing.",
            "in": "query",
            "name": "storingstatus",
            "schema": {
              "enum": [
                0,
                1
              ],
              "type": "integer"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "storingstatus[gt]",
            "schema": {
              "enum": [
                0,
                1
              ],
              "type": "integer"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "storingstatus[gte]",
            "schema": {
              "enum": [
                0,
                1
              ],
              "type": "integer"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "storingstatus[in]",
            "schema": {
              "enum": [
                0,
                1
              ],
              "items": {
                "type": "integer"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "storingstatus[isnull]",
            "schema": {
              "enum": [
                0,
                1
              ],
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "storingstatus[lt]",
            "schema": {
              "enum": [
                0,
                1
              ],
              "type": "integer"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "storingstatus[lte]",
            "schema": {
              "enum": [
                0,
                1
              ],
              "type": "integer"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "storingstatus[not]",
            "schema": {
              "enum": [
                0,
                1
              ],
              "items": {
                "type": "integer"
              },
              "type": "array"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/geo+json": {
                "schema": {
                  "description": "Gegevens over de storingsmeldingen van de klokken van de Gemeente van Amsterdam. Deze klokken zijn te herkennen aan de 3 rode kruizen op de klok.",
                  "properties": {
                    "_links": {
                      "allOf": [
                        {
                          "description": "The contents of the `klokken._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 klokken.",
                              "properties": {
                                "href": {
                                  "format": "uri",
                                  "readOnly": true,
                                  "type": "string"
                                },
                                "objectId": {
                                  "description": "Een unieke aanduiding van een klok door de bron.",
                                  "format": "int64",
                                  "maximum": 9223372036854776000,
                                  "minimum": -9223372036854776000,
                                  "type": "integer"
                                },
                                "title": {
                                  "type": "string"
                                }
                              },
                              "required": [
                                "href",
                                "objectId",
                                "title"
                              ],
                              "type": "object"
                            }
                          },
                          "required": [
                            "schema",
                            "self"
                          ],
                          "type": "object"
                        }
                      ],
                      "title": " links"
                    },
                    "breedtegraad": {
                      "description": "Breedtegraad van een klok.",
                      "format": "double",
                      "nullable": true,
                      "type": "number"
                    },
                    "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"
                    },
                    "lengtegraad": {
                      "description": "Lengtegraad van een klok.",
                      "format": "double",
                      "nullable": true,
                      "type": "number"
                    },
                    "meldingstatus": {
                      "description": "Indicatie of een melding is gemaakt op een klok. Waarde 1 is melding, waarde 0 geen melding.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "objectId": {
                      "description": "Een unieke aanduiding van een klok door de bron.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "type": "integer"
                    },
                    "objectnummer": {
                      "description": "Een unieke aanduiding van een klok door de bron.",
                      "nullable": true,
                      "type": "string"
                    },
                    "objecttype": {
                      "description": "Type aanduiding van een klok.",
                      "nullable": true,
                      "type": "string"
                    },
                    "objecttypeOmschrijving": {
                      "description": "Omschrijving van type aanduiding van een klok.",
                      "nullable": true,
                      "type": "string"
                    },
                    "storingstatus": {
                      "description": "Indicatie of een storing bekend is van een klok. Waarde 1 is storing, waarde 0 geen storing.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    }
                  },
                  "required": [
                    "_links",
                    "objectId"
                  ],
                  "type": "object"
                }
              },
              "application/hal+json": {
                "schema": {
                  "description": "Gegevens over de storingsmeldingen van de klokken van de Gemeente van Amsterdam. Deze klokken zijn te herkennen aan de 3 rode kruizen op de klok.",
                  "properties": {
                    "_links": {
                      "allOf": [
                        {
                          "description": "The contents of the `klokken._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 klokken.",
                              "properties": {
                                "href": {
                                  "format": "uri",
                                  "readOnly": true,
                                  "type": "string"
                                },
                                "objectId": {
                                  "description": "Een unieke aanduiding van een klok door de bron.",
                                  "format": "int64",
                                  "maximum": 9223372036854776000,
                                  "minimum": -9223372036854776000,
                                  "type": "integer"
                                },
                                "title": {
                                  "type": "string"
                                }
                              },
                              "required": [
                                "href",
                                "objectId",
                                "title"
                              ],
                              "type": "object"
                            }
                          },
                          "required": [
                            "schema",
                            "self"
                          ],
                          "type": "object"
                        }
                      ],
                      "title": " links"
                    },
                    "breedtegraad": {
                      "description": "Breedtegraad van een klok.",
                      "format": "double",
                      "nullable": true,
                      "type": "number"
                    },
                    "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"
                    },
                    "lengtegraad": {
                      "description": "Lengtegraad van een klok.",
                      "format": "double",
                      "nullable": true,
                      "type": "number"
                    },
                    "meldingstatus": {
                      "description": "Indicatie of een melding is gemaakt op een klok. Waarde 1 is melding, waarde 0 geen melding.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "objectId": {
                      "description": "Een unieke aanduiding van een klok door de bron.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "type": "integer"
                    },
                    "objectnummer": {
                      "description": "Een unieke aanduiding van een klok door de bron.",
                      "nullable": true,
                      "type": "string"
                    },
                    "objecttype": {
                      "description": "Type aanduiding van een klok.",
                      "nullable": true,
                      "type": "string"
                    },
                    "objecttypeOmschrijving": {
                      "description": "Omschrijving van type aanduiding van een klok.",
                      "nullable": true,
                      "type": "string"
                    },
                    "storingstatus": {
                      "description": "Indicatie of een storing bekend is van een klok. Waarde 1 is storing, waarde 0 geen storing.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    }
                  },
                  "required": [
                    "_links",
                    "objectId"
                  ],
                  "type": "object"
                }
              },
              "text/csv": {
                "schema": {
                  "description": "Gegevens over de storingsmeldingen van de klokken van de Gemeente van Amsterdam. Deze klokken zijn te herkennen aan de 3 rode kruizen op de klok.",
                  "properties": {
                    "_links": {
                      "allOf": [
                        {
                          "description": "The contents of the `klokken._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 klokken.",
                              "properties": {
                                "href": {
                                  "format": "uri",
                                  "readOnly": true,
                                  "type": "string"
                                },
                                "objectId": {
                                  "description": "Een unieke aanduiding van een klok door de bron.",
                                  "format": "int64",
                                  "maximum": 9223372036854776000,
                                  "minimum": -9223372036854776000,
                                  "type": "integer"
                                },
                                "title": {
                                  "type": "string"
                                }
                              },
                              "required": [
                                "href",
                                "objectId",
                                "title"
                              ],
                              "type": "object"
                            }
                          },
                          "required": [
                            "schema",
                            "self"
                          ],
                          "type": "object"
                        }
                      ],
                      "title": " links"
                    },
                    "breedtegraad": {
                      "description": "Breedtegraad van een klok.",
                      "format": "double",
                      "nullable": true,
                      "type": "number"
                    },
                    "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"
                    },
                    "lengtegraad": {
                      "description": "Lengtegraad van een klok.",
                      "format": "double",
                      "nullable": true,
                      "type": "number"
                    },
                    "meldingstatus": {
                      "description": "Indicatie of een melding is gemaakt op een klok. Waarde 1 is melding, waarde 0 geen melding.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "objectId": {
                      "description": "Een unieke aanduiding van een klok door de bron.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "type": "integer"
                    },
                    "objectnummer": {
                      "description": "Een unieke aanduiding van een klok door de bron.",
                      "nullable": true,
                      "type": "string"
                    },
                    "objecttype": {
                      "description": "Type aanduiding van een klok.",
                      "nullable": true,
                      "type": "string"
                    },
                    "objecttypeOmschrijving": {
                      "description": "Omschrijving van type aanduiding van een klok.",
                      "nullable": true,
                      "type": "string"
                    },
                    "storingstatus": {
                      "description": "Indicatie of een storing bekend is van een klok. Waarde 1 is storing, waarde 0 geen storing.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    }
                  },
                  "required": [
                    "_links",
                    "objectId"
                  ],
                  "type": "object"
                }
              }
            },
            "description": ""
          }
        },
        "tags": [
          "klokken"
        ]
      }
    },
    "/openbare_verlichting": {
      "get": {
        "description": "Gegevens over de storingsmeldingen van de openbare verlichting van de Gemeente van Amsterdam.",
        "operationId": "storingsmeldingen_ovl_en_klokken_openbare_verlichting_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": "Breedtegraad van een openbare verlichting.",
            "in": "query",
            "name": "breedtegraad",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "breedtegraad[gt]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "breedtegraad[gte]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "breedtegraad[in]",
            "schema": {
              "items": {
                "type": "number"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "breedtegraad[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "breedtegraad[lt]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "breedtegraad[lte]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "breedtegraad[not]",
            "schema": {
              "items": {
                "type": "number"
              },
              "type": "array"
            }
          },
          {
            "description": "Punt definitie van een openbare verlichting.",
            "in": "query",
            "name": "geometry",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "GeoJSON | GEOMETRY(...)",
            "in": "query",
            "name": "geometry[contains]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "GeoJSON | GEOMETRY(...)",
            "in": "query",
            "name": "geometry[intersects]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "geometry[isnull]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "GeoJSON | GEOMETRY(...)",
            "in": "query",
            "name": "geometry[not]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Lengtegraad van een openbare verlichting.",
            "in": "query",
            "name": "lengtegraad",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "lengtegraad[gt]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "lengtegraad[gte]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "lengtegraad[in]",
            "schema": {
              "items": {
                "type": "number"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "lengtegraad[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "lengtegraad[lt]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "lengtegraad[lte]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "lengtegraad[not]",
            "schema": {
              "items": {
                "type": "number"
              },
              "type": "array"
            }
          },
          {
            "description": "Indicatie of een melding is gemaakt op een openbare verlichting. Waarde 1 is melding, waarde 0 geen melding.",
            "in": "query",
            "name": "meldingstatus",
            "schema": {
              "enum": [
                0,
                1
              ],
              "type": "integer"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "meldingstatus[gt]",
            "schema": {
              "enum": [
                0,
                1
              ],
              "type": "integer"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "meldingstatus[gte]",
            "schema": {
              "enum": [
                0,
                1
              ],
              "type": "integer"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "meldingstatus[in]",
            "schema": {
              "enum": [
                0,
                1
              ],
              "items": {
                "type": "integer"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "meldingstatus[isnull]",
            "schema": {
              "enum": [
                0,
                1
              ],
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "meldingstatus[lt]",
            "schema": {
              "enum": [
                0,
                1
              ],
              "type": "integer"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "meldingstatus[lte]",
            "schema": {
              "enum": [
                0,
                1
              ],
              "type": "integer"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "meldingstatus[not]",
            "schema": {
              "enum": [
                0,
                1
              ],
              "items": {
                "type": "integer"
              },
              "type": "array"
            }
          },
          {
            "description": "Een unieke aanduiding van een openbare verlichting door bron.",
            "in": "query",
            "name": "objectId",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "objectId[gt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "objectId[gte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "objectId[in]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "objectId[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "objectId[lt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "objectId[lte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "objectId[not]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            }
          },
          {
            "description": "Een unieke aanduiding van een openbare verlichting door bron.",
            "in": "query",
            "name": "objectnummer",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "objectnummer[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "objectnummer[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "objectnummer[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "objectnummer[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "objectnummer[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "Type aanduiding van een openbare verlichting.",
            "in": "query",
            "name": "objecttype",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Omschrijving van type aanduiding van een openbare verlichting.",
            "in": "query",
            "name": "objecttypeOmschrijving",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "objecttypeOmschrijving[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "objecttypeOmschrijving[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "objecttypeOmschrijving[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "objecttypeOmschrijving[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "objecttypeOmschrijving[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "objecttype[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "objecttype[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "objecttype[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "objecttype[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "objecttype[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "A page number within the paginated result set.",
            "in": "query",
            "name": "page",
            "required": false,
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Indicatie of een storing bekend is van een openbare verlichting. Waarde 1 is storing, waarde 0 geen storing.",
            "in": "query",
            "name": "storingstatus",
            "schema": {
              "enum": [
                0,
                1
              ],
              "type": "integer"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "storingstatus[gt]",
            "schema": {
              "enum": [
                0,
                1
              ],
              "type": "integer"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "storingstatus[gte]",
            "schema": {
              "enum": [
                0,
                1
              ],
              "type": "integer"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "storingstatus[in]",
            "schema": {
              "enum": [
                0,
                1
              ],
              "items": {
                "type": "integer"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "storingstatus[isnull]",
            "schema": {
              "enum": [
                0,
                1
              ],
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "storingstatus[lt]",
            "schema": {
              "enum": [
                0,
                1
              ],
              "type": "integer"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "storingstatus[lte]",
            "schema": {
              "enum": [
                0,
                1
              ],
              "type": "integer"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "storingstatus[not]",
            "schema": {
              "enum": [
                0,
                1
              ],
              "items": {
                "type": "integer"
              },
              "type": "array"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/geo+json": {
                "schema": {
                  "properties": {
                    "_embedded": {
                      "properties": {
                        "openbare_verlichting": {
                          "items": {
                            "description": "Gegevens over de storingsmeldingen van de openbare verlichting van de Gemeente van Amsterdam.",
                            "properties": {
                              "_links": {
                                "allOf": [
                                  {
                                    "description": "The contents of the `openbareVerlichting._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 openbareVerlichting.",
                                        "properties": {
                                          "href": {
                                            "format": "uri",
                                            "readOnly": true,
                                            "type": "string"
                                          },
                                          "objectId": {
                                            "description": "Een unieke aanduiding van een openbare verlichting door bron.",
                                            "format": "int64",
                                            "maximum": 9223372036854776000,
                                            "minimum": -9223372036854776000,
                                            "type": "integer"
                                          },
                                          "title": {
                                            "type": "string"
                                          }
                                        },
                                        "required": [
                                          "href",
                                          "objectId",
                                          "title"
                                        ],
                                        "type": "object"
                                      }
                                    },
                                    "required": [
                                      "schema",
                                      "self"
                                    ],
                                    "type": "object"
                                  }
                                ],
                                "title": " links"
                              },
                              "breedtegraad": {
                                "description": "Breedtegraad van een openbare verlichting.",
                                "format": "double",
                                "nullable": true,
                                "type": "number"
                              },
                              "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"
                              },
                              "lengtegraad": {
                                "description": "Lengtegraad van een openbare verlichting.",
                                "format": "double",
                                "nullable": true,
                                "type": "number"
                              },
                              "meldingstatus": {
                                "description": "Indicatie of een melding is gemaakt op een openbare verlichting. Waarde 1 is melding, waarde 0 geen melding.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "nullable": true,
                                "type": "integer"
                              },
                              "objectId": {
                                "description": "Een unieke aanduiding van een openbare verlichting door bron.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "type": "integer"
                              },
                              "objectnummer": {
                                "description": "Een unieke aanduiding van een openbare verlichting door bron.",
                                "nullable": true,
                                "type": "string"
                              },
                              "objecttype": {
                                "description": "Type aanduiding van een openbare verlichting.",
                                "nullable": true,
                                "type": "string"
                              },
                              "objecttypeOmschrijving": {
                                "description": "Omschrijving van type aanduiding van een openbare verlichting.",
                                "nullable": true,
                                "type": "string"
                              },
                              "storingstatus": {
                                "description": "Indicatie of een storing bekend is van een openbare verlichting. Waarde 1 is storing, waarde 0 geen storing.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "nullable": true,
                                "type": "integer"
                              }
                            },
                            "required": [
                              "_links",
                              "objectId"
                            ],
                            "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": {
                        "openbare_verlichting": {
                          "items": {
                            "description": "Gegevens over de storingsmeldingen van de openbare verlichting van de Gemeente van Amsterdam.",
                            "properties": {
                              "_links": {
                                "allOf": [
                                  {
                                    "description": "The contents of the `openbareVerlichting._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 openbareVerlichting.",
                                        "properties": {
                                          "href": {
                                            "format": "uri",
                                            "readOnly": true,
                                            "type": "string"
                                          },
                                          "objectId": {
                                            "description": "Een unieke aanduiding van een openbare verlichting door bron.",
                                            "format": "int64",
                                            "maximum": 9223372036854776000,
                                            "minimum": -9223372036854776000,
                                            "type": "integer"
                                          },
                                          "title": {
                                            "type": "string"
                                          }
                                        },
                                        "required": [
                                          "href",
                                          "objectId",
                                          "title"
                                        ],
                                        "type": "object"
                                      }
                                    },
                                    "required": [
                                      "schema",
                                      "self"
                                    ],
                                    "type": "object"
                                  }
                                ],
                                "title": " links"
                              },
                              "breedtegraad": {
                                "description": "Breedtegraad van een openbare verlichting.",
                                "format": "double",
                                "nullable": true,
                                "type": "number"
                              },
                              "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"
                              },
                              "lengtegraad": {
                                "description": "Lengtegraad van een openbare verlichting.",
                                "format": "double",
                                "nullable": true,
                                "type": "number"
                              },
                              "meldingstatus": {
                                "description": "Indicatie of een melding is gemaakt op een openbare verlichting. Waarde 1 is melding, waarde 0 geen melding.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "nullable": true,
                                "type": "integer"
                              },
                              "objectId": {
                                "description": "Een unieke aanduiding van een openbare verlichting door bron.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "type": "integer"
                              },
                              "objectnummer": {
                                "description": "Een unieke aanduiding van een openbare verlichting door bron.",
                                "nullable": true,
                                "type": "string"
                              },
                              "objecttype": {
                                "description": "Type aanduiding van een openbare verlichting.",
                                "nullable": true,
                                "type": "string"
                              },
                              "objecttypeOmschrijving": {
                                "description": "Omschrijving van type aanduiding van een openbare verlichting.",
                                "nullable": true,
                                "type": "string"
                              },
                              "storingstatus": {
                                "description": "Indicatie of een storing bekend is van een openbare verlichting. Waarde 1 is storing, waarde 0 geen storing.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "nullable": true,
                                "type": "integer"
                              }
                            },
                            "required": [
                              "_links",
                              "objectId"
                            ],
                            "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": {
                        "openbare_verlichting": {
                          "items": {
                            "description": "Gegevens over de storingsmeldingen van de openbare verlichting van de Gemeente van Amsterdam.",
                            "properties": {
                              "_links": {
                                "allOf": [
                                  {
                                    "description": "The contents of the `openbareVerlichting._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 openbareVerlichting.",
                                        "properties": {
                                          "href": {
                                            "format": "uri",
                                            "readOnly": true,
                                            "type": "string"
                                          },
                                          "objectId": {
                                            "description": "Een unieke aanduiding van een openbare verlichting door bron.",
                                            "format": "int64",
                                            "maximum": 9223372036854776000,
                                            "minimum": -9223372036854776000,
                                            "type": "integer"
                                          },
                                          "title": {
                                            "type": "string"
                                          }
                                        },
                                        "required": [
                                          "href",
                                          "objectId",
                                          "title"
                                        ],
                                        "type": "object"
                                      }
                                    },
                                    "required": [
                                      "schema",
                                      "self"
                                    ],
                                    "type": "object"
                                  }
                                ],
                                "title": " links"
                              },
                              "breedtegraad": {
                                "description": "Breedtegraad van een openbare verlichting.",
                                "format": "double",
                                "nullable": true,
                                "type": "number"
                              },
                              "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"
                              },
                              "lengtegraad": {
                                "description": "Lengtegraad van een openbare verlichting.",
                                "format": "double",
                                "nullable": true,
                                "type": "number"
                              },
                              "meldingstatus": {
                                "description": "Indicatie of een melding is gemaakt op een openbare verlichting. Waarde 1 is melding, waarde 0 geen melding.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "nullable": true,
                                "type": "integer"
                              },
                              "objectId": {
                                "description": "Een unieke aanduiding van een openbare verlichting door bron.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "type": "integer"
                              },
                              "objectnummer": {
                                "description": "Een unieke aanduiding van een openbare verlichting door bron.",
                                "nullable": true,
                                "type": "string"
                              },
                              "objecttype": {
                                "description": "Type aanduiding van een openbare verlichting.",
                                "nullable": true,
                                "type": "string"
                              },
                              "objecttypeOmschrijving": {
                                "description": "Omschrijving van type aanduiding van een openbare verlichting.",
                                "nullable": true,
                                "type": "string"
                              },
                              "storingstatus": {
                                "description": "Indicatie of een storing bekend is van een openbare verlichting. Waarde 1 is storing, waarde 0 geen storing.",
                                "format": "int64",
                                "maximum": 9223372036854776000,
                                "minimum": -9223372036854776000,
                                "nullable": true,
                                "type": "integer"
                              }
                            },
                            "required": [
                              "_links",
                              "objectId"
                            ],
                            "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": [
          "openbare_verlichting"
        ]
      }
    },
    "/openbare_verlichting/{object_id}": {
      "get": {
        "operationId": "storingsmeldingen_ovl_en_klokken_openbare_verlichting_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": "Breedtegraad van een openbare verlichting.",
            "in": "query",
            "name": "breedtegraad",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "breedtegraad[gt]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "breedtegraad[gte]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "breedtegraad[in]",
            "schema": {
              "items": {
                "type": "number"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "breedtegraad[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "breedtegraad[lt]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "breedtegraad[lte]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "breedtegraad[not]",
            "schema": {
              "items": {
                "type": "number"
              },
              "type": "array"
            }
          },
          {
            "description": "Punt definitie van een openbare verlichting.",
            "in": "query",
            "name": "geometry",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "GeoJSON | GEOMETRY(...)",
            "in": "query",
            "name": "geometry[contains]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "GeoJSON | GEOMETRY(...)",
            "in": "query",
            "name": "geometry[intersects]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "geometry[isnull]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "GeoJSON | GEOMETRY(...)",
            "in": "query",
            "name": "geometry[not]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Lengtegraad van een openbare verlichting.",
            "in": "query",
            "name": "lengtegraad",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "lengtegraad[gt]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "lengtegraad[gte]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "lengtegraad[in]",
            "schema": {
              "items": {
                "type": "number"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "lengtegraad[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "lengtegraad[lt]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "lengtegraad[lte]",
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "lengtegraad[not]",
            "schema": {
              "items": {
                "type": "number"
              },
              "type": "array"
            }
          },
          {
            "description": "Indicatie of een melding is gemaakt op een openbare verlichting. Waarde 1 is melding, waarde 0 geen melding.",
            "in": "query",
            "name": "meldingstatus",
            "schema": {
              "enum": [
                0,
                1
              ],
              "type": "integer"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "meldingstatus[gt]",
            "schema": {
              "enum": [
                0,
                1
              ],
              "type": "integer"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "meldingstatus[gte]",
            "schema": {
              "enum": [
                0,
                1
              ],
              "type": "integer"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "meldingstatus[in]",
            "schema": {
              "enum": [
                0,
                1
              ],
              "items": {
                "type": "integer"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "meldingstatus[isnull]",
            "schema": {
              "enum": [
                0,
                1
              ],
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "meldingstatus[lt]",
            "schema": {
              "enum": [
                0,
                1
              ],
              "type": "integer"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "meldingstatus[lte]",
            "schema": {
              "enum": [
                0,
                1
              ],
              "type": "integer"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "meldingstatus[not]",
            "schema": {
              "enum": [
                0,
                1
              ],
              "items": {
                "type": "integer"
              },
              "type": "array"
            }
          },
          {
            "description": "Een unieke aanduiding van een openbare verlichting door bron.",
            "in": "query",
            "name": "objectId",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "objectId[gt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "objectId[gte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "objectId[in]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "objectId[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "objectId[lt]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "objectId[lte]",
            "schema": {
              "type": "integer"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "objectId[not]",
            "schema": {
              "items": {
                "type": "integer"
              },
              "type": "array"
            }
          },
          {
            "in": "path",
            "name": "object_id",
            "required": true,
            "schema": {
              "description": "Een unieke aanduiding van een openbare verlichting door bron.",
              "format": "int64",
              "maximum": 9223372036854776000,
              "minimum": -9223372036854776000,
              "type": "integer"
            }
          },
          {
            "description": "Een unieke aanduiding van een openbare verlichting door bron.",
            "in": "query",
            "name": "objectnummer",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "objectnummer[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "objectnummer[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "objectnummer[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "objectnummer[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "objectnummer[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "Type aanduiding van een openbare verlichting.",
            "in": "query",
            "name": "objecttype",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Omschrijving van type aanduiding van een openbare verlichting.",
            "in": "query",
            "name": "objecttypeOmschrijving",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "objecttypeOmschrijving[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "objecttypeOmschrijving[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "objecttypeOmschrijving[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "objecttypeOmschrijving[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "objecttypeOmschrijving[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "objecttype[in]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field is empty or not.",
            "in": "query",
            "name": "objecttype[isempty]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "objecttype[isnull]",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Matches text using wildcards (? and *).",
            "in": "query",
            "name": "objecttype[like]",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Exclude matches; text",
            "in": "query",
            "name": "objecttype[not]",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "Indicatie of een storing bekend is van een openbare verlichting. Waarde 1 is storing, waarde 0 geen storing.",
            "in": "query",
            "name": "storingstatus",
            "schema": {
              "enum": [
                0,
                1
              ],
              "type": "integer"
            }
          },
          {
            "description": "Greater than; number",
            "in": "query",
            "name": "storingstatus[gt]",
            "schema": {
              "enum": [
                0,
                1
              ],
              "type": "integer"
            }
          },
          {
            "description": "Greater than or equal to; number",
            "in": "query",
            "name": "storingstatus[gte]",
            "schema": {
              "enum": [
                0,
                1
              ],
              "type": "integer"
            }
          },
          {
            "description": "Matches any value from a comma-separated list: val1,val2,valN.",
            "explode": false,
            "in": "query",
            "name": "storingstatus[in]",
            "schema": {
              "enum": [
                0,
                1
              ],
              "items": {
                "type": "integer"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Whether the field has a NULL value or not.",
            "in": "query",
            "name": "storingstatus[isnull]",
            "schema": {
              "enum": [
                0,
                1
              ],
              "type": "boolean"
            }
          },
          {
            "description": "Less than; number",
            "in": "query",
            "name": "storingstatus[lt]",
            "schema": {
              "enum": [
                0,
                1
              ],
              "type": "integer"
            }
          },
          {
            "description": "Less than or equal to; number",
            "in": "query",
            "name": "storingstatus[lte]",
            "schema": {
              "enum": [
                0,
                1
              ],
              "type": "integer"
            }
          },
          {
            "description": "Exclude matches; number",
            "in": "query",
            "name": "storingstatus[not]",
            "schema": {
              "enum": [
                0,
                1
              ],
              "items": {
                "type": "integer"
              },
              "type": "array"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/geo+json": {
                "schema": {
                  "description": "Gegevens over de storingsmeldingen van de openbare verlichting van de Gemeente van Amsterdam.",
                  "properties": {
                    "_links": {
                      "allOf": [
                        {
                          "description": "The contents of the `openbareVerlichting._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 openbareVerlichting.",
                              "properties": {
                                "href": {
                                  "format": "uri",
                                  "readOnly": true,
                                  "type": "string"
                                },
                                "objectId": {
                                  "description": "Een unieke aanduiding van een openbare verlichting door bron.",
                                  "format": "int64",
                                  "maximum": 9223372036854776000,
                                  "minimum": -9223372036854776000,
                                  "type": "integer"
                                },
                                "title": {
                                  "type": "string"
                                }
                              },
                              "required": [
                                "href",
                                "objectId",
                                "title"
                              ],
                              "type": "object"
                            }
                          },
                          "required": [
                            "schema",
                            "self"
                          ],
                          "type": "object"
                        }
                      ],
                      "title": " links"
                    },
                    "breedtegraad": {
                      "description": "Breedtegraad van een openbare verlichting.",
                      "format": "double",
                      "nullable": true,
                      "type": "number"
                    },
                    "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"
                    },
                    "lengtegraad": {
                      "description": "Lengtegraad van een openbare verlichting.",
                      "format": "double",
                      "nullable": true,
                      "type": "number"
                    },
                    "meldingstatus": {
                      "description": "Indicatie of een melding is gemaakt op een openbare verlichting. Waarde 1 is melding, waarde 0 geen melding.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "objectId": {
                      "description": "Een unieke aanduiding van een openbare verlichting door bron.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "type": "integer"
                    },
                    "objectnummer": {
                      "description": "Een unieke aanduiding van een openbare verlichting door bron.",
                      "nullable": true,
                      "type": "string"
                    },
                    "objecttype": {
                      "description": "Type aanduiding van een openbare verlichting.",
                      "nullable": true,
                      "type": "string"
                    },
                    "objecttypeOmschrijving": {
                      "description": "Omschrijving van type aanduiding van een openbare verlichting.",
                      "nullable": true,
                      "type": "string"
                    },
                    "storingstatus": {
                      "description": "Indicatie of een storing bekend is van een openbare verlichting. Waarde 1 is storing, waarde 0 geen storing.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    }
                  },
                  "required": [
                    "_links",
                    "objectId"
                  ],
                  "type": "object"
                }
              },
              "application/hal+json": {
                "schema": {
                  "description": "Gegevens over de storingsmeldingen van de openbare verlichting van de Gemeente van Amsterdam.",
                  "properties": {
                    "_links": {
                      "allOf": [
                        {
                          "description": "The contents of the `openbareVerlichting._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 openbareVerlichting.",
                              "properties": {
                                "href": {
                                  "format": "uri",
                                  "readOnly": true,
                                  "type": "string"
                                },
                                "objectId": {
                                  "description": "Een unieke aanduiding van een openbare verlichting door bron.",
                                  "format": "int64",
                                  "maximum": 9223372036854776000,
                                  "minimum": -9223372036854776000,
                                  "type": "integer"
                                },
                                "title": {
                                  "type": "string"
                                }
                              },
                              "required": [
                                "href",
                                "objectId",
                                "title"
                              ],
                              "type": "object"
                            }
                          },
                          "required": [
                            "schema",
                            "self"
                          ],
                          "type": "object"
                        }
                      ],
                      "title": " links"
                    },
                    "breedtegraad": {
                      "description": "Breedtegraad van een openbare verlichting.",
                      "format": "double",
                      "nullable": true,
                      "type": "number"
                    },
                    "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"
                    },
                    "lengtegraad": {
                      "description": "Lengtegraad van een openbare verlichting.",
                      "format": "double",
                      "nullable": true,
                      "type": "number"
                    },
                    "meldingstatus": {
                      "description": "Indicatie of een melding is gemaakt op een openbare verlichting. Waarde 1 is melding, waarde 0 geen melding.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "objectId": {
                      "description": "Een unieke aanduiding van een openbare verlichting door bron.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "type": "integer"
                    },
                    "objectnummer": {
                      "description": "Een unieke aanduiding van een openbare verlichting door bron.",
                      "nullable": true,
                      "type": "string"
                    },
                    "objecttype": {
                      "description": "Type aanduiding van een openbare verlichting.",
                      "nullable": true,
                      "type": "string"
                    },
                    "objecttypeOmschrijving": {
                      "description": "Omschrijving van type aanduiding van een openbare verlichting.",
                      "nullable": true,
                      "type": "string"
                    },
                    "storingstatus": {
                      "description": "Indicatie of een storing bekend is van een openbare verlichting. Waarde 1 is storing, waarde 0 geen storing.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    }
                  },
                  "required": [
                    "_links",
                    "objectId"
                  ],
                  "type": "object"
                }
              },
              "text/csv": {
                "schema": {
                  "description": "Gegevens over de storingsmeldingen van de openbare verlichting van de Gemeente van Amsterdam.",
                  "properties": {
                    "_links": {
                      "allOf": [
                        {
                          "description": "The contents of the `openbareVerlichting._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 openbareVerlichting.",
                              "properties": {
                                "href": {
                                  "format": "uri",
                                  "readOnly": true,
                                  "type": "string"
                                },
                                "objectId": {
                                  "description": "Een unieke aanduiding van een openbare verlichting door bron.",
                                  "format": "int64",
                                  "maximum": 9223372036854776000,
                                  "minimum": -9223372036854776000,
                                  "type": "integer"
                                },
                                "title": {
                                  "type": "string"
                                }
                              },
                              "required": [
                                "href",
                                "objectId",
                                "title"
                              ],
                              "type": "object"
                            }
                          },
                          "required": [
                            "schema",
                            "self"
                          ],
                          "type": "object"
                        }
                      ],
                      "title": " links"
                    },
                    "breedtegraad": {
                      "description": "Breedtegraad van een openbare verlichting.",
                      "format": "double",
                      "nullable": true,
                      "type": "number"
                    },
                    "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"
                    },
                    "lengtegraad": {
                      "description": "Lengtegraad van een openbare verlichting.",
                      "format": "double",
                      "nullable": true,
                      "type": "number"
                    },
                    "meldingstatus": {
                      "description": "Indicatie of een melding is gemaakt op een openbare verlichting. Waarde 1 is melding, waarde 0 geen melding.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    },
                    "objectId": {
                      "description": "Een unieke aanduiding van een openbare verlichting door bron.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "type": "integer"
                    },
                    "objectnummer": {
                      "description": "Een unieke aanduiding van een openbare verlichting door bron.",
                      "nullable": true,
                      "type": "string"
                    },
                    "objecttype": {
                      "description": "Type aanduiding van een openbare verlichting.",
                      "nullable": true,
                      "type": "string"
                    },
                    "objecttypeOmschrijving": {
                      "description": "Omschrijving van type aanduiding van een openbare verlichting.",
                      "nullable": true,
                      "type": "string"
                    },
                    "storingstatus": {
                      "description": "Indicatie of een storing bekend is van een openbare verlichting. Waarde 1 is storing, waarde 0 geen storing.",
                      "format": "int64",
                      "maximum": 9223372036854776000,
                      "minimum": -9223372036854776000,
                      "nullable": true,
                      "type": "integer"
                    }
                  },
                  "required": [
                    "_links",
                    "objectId"
                  ],
                  "type": "object"
                }
              }
            },
            "description": ""
          }
        },
        "tags": [
          "openbare_verlichting"
        ]
      }
    }
  },
  "security": [
    {
      "oauth2": []
    }
  ],
  "servers": [
    {
      "url": "https://api.data.amsterdam.nl/"
    }
  ],
  "x-versions": {
    "default": {
      "default": true,
      "endSupportDate": null,
      "paths": {
        "klokken": "stable",
        "openbare_verlichting": "stable"
      },
      "pathsUnderDevelopment": false,
      "status": "stable",
      "statusDescription": "stabiel",
      "url": "https://api.data.amsterdam.nl/v1/storingsmeldingen_ovl_en_klokken"
    },
    "v1": {
      "default": true,
      "endSupportDate": null,
      "paths": {
        "klokken": "stable",
        "openbare_verlichting": "stable"
      },
      "pathsUnderDevelopment": false,
      "status": "stable",
      "statusDescription": "stabiel",
      "url": "https://api.data.amsterdam.nl/v1/storingsmeldingen_ovl_en_klokken/v1"
    }
  }
}