Ga naar inhoud

Emissie zones in OTM formaat

Emissiezone informatie is af te nemen in het OTM formaat. Hiertoe is het product Emissiezones beschikbaar en kan bij de implementatie vervolgens OTM - pull geselecteerd worden. Voor een toelichting op het aanmaken van een abonnement, zie Handleiding webportaal.

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

Milieuzone 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": {}
        }
    }
]
Ga terug naar de vorige pagina