Skip to content

Emissiezones in OTM formaat

Uitleg over het emissiezone product is te vinden bij emissiezones. Uitleg over het OTM formaat is te vinden bij OTM.

Wanneer er een abonnement is aangemaakt en er wordt een valide request naar het endpoint gemaakt, dan wordt de informatie in OTM-formaat opgeleverd. Hieronder zijn voorbeelden te vinden van de verschillende emissiezones die in OTM beschreven kunnen worden:

Low-emissiezone voorbeeld in OTM
[
    {
        "id": "acbf0f7f-56a6-4b36-9a66-4b6d0c69d474",
        "description": "LowEmissionZone",
        "type": "environmentalZone",
        "name": "LEZ Amsterdam",
        "externalAttributes": {
            "url": "https://www.amsterdam.nl/en/traffic-transport/low-emission-zone/",
            "regulationUrl": "https://zoek.officielebekendmakingen.nl/stcrt-2020-32736",
            "regulationId": "stcrt-2020-32736"
        },
        "constraint": {
            "associationType": "inline",
            "entity": {
                "value": {
                    "type": "andConstraint",
                    "and": [
                        {
                            "type": "startDateTimeConstraint",
                            "startDateTime": "2019-12-31T23:00:00Z"
                        },
                        {
                            "type": "endDateTimeConstraint",
                            "endDateTime": "2024-12-30T23:00:00Z"
                        },
                        {
                            "type": "orConstraint",
                            "or": [
                                {
                                    "type": "notConstraint",
                                    "not": {
                                        "type": "fuelTypeConstraint",
                                        "fuelTypes": ["diesel"]
                                    }
                                },
                                {
                                    "type": "andConstraint",
                                    "and": [
                                        {
                                            "type": "vehicleTypeConstraint",
                                            "vehicleTypes": ["m","n1","n2","n3"]
                                        },
                                        {
                                            "type": "emissionStandardConstraint",
                                            "minimum": "euro5"
                                        }
                                    ]
                                },
                                {
                                    "type": "genericConstraint",
                                    "description": "electronic permit"
                                }
                            ]
                        }
                    ]
                }
            }
        },
        "georeference": {
            "type": "Feature",
            "geometry": {}
        }
    }
]
Zero-emissiezone voorbeeld in OTM
[
    {
        "id": "00000000-0000-0000-0000-000000000000",
        "description": "ZeroEmissionZone",
        "type": "environmentalZone",
        "name": "ZE Amsterdam",
        "externalAttributes": {
            "url": "https://www.amsterdam.nl/en/traffic-transport/low-emission-zone/",
            "regulationUrl": "https://zoek.officielebekendmakingen.nl/stcrt-2020-32736",
            "regulationId": "stcrt-2020-32736"
        },
        "constraint": {
            "associationType": "inline",
            "entity": {
                "value": {
                    "type": "andConstraint",
                    "and": [
                        {
                            "type": "startDateTimeConstraint",
                            "startDateTime": "2025-01-01T00:00:00Z"
                        },
                        {
                            "type": "notConstraint",
                            "not": {
                                "type": "andConstraint",
                                "and": [
                                    {
                                        "type": "vehicleTypeConstraint",
                                        "vehicleTypes": ["n2","n3"]
                                    },
                                    {
                                        "type": "emissionStandardConstraint",
                                        "minimum": "euro1"
                                    }
                                ]
                            }
                        }
                    ]
                }
            }
        },
        "georeference": {
            "type": "Feature",
            "geometry": {}
        }
    }
]
Go back to the previous page