## Use verified updates to propose changes to an object Wit the new `/verified-update/` endpoint it is now possible for your web application to propose changes to an object in PeeringDB. This is done via a form that will be submitted to PeeringDB. The form contains a hidden field with a Base64 encoded JSON object that contains the proposed changes. The user will be redirected to a page where they can review the changes and either accept or reject them. If the user accepts the changes, they will be applied to the object. If the user rejects the changes, they will be discarded. ## Example ```html PeeringDB Update Proposal
``` ## Supported fields - **net** - irr_as_set - route_server - looking_glass - info_type - info_prefixes4 - info_prefixes6 - info_traffic - info_ratio - info_scope - info_unicast - info_multicast - info_ipv6 - info_never_via_route_servers - allow_ixp_update - policy_url - policy_general - policy_locations - policy_ratio - policy_contracts - status_dashboard - **ix** - media - service_level - terms - url_stats - tech_email - tech_phone - sales_email - policy_email - policy_phone - status_dashboard - **ixlan** - mtu - ixf_ixp_import_enabled - ixf_ixp_member_list_url - **fac** - address1 - address2 - floor - suite - city - zipcode - state - country - region_continent - clli - npanxx - tech_email - tech_phone - sales_email - sales_phone - property - diverse_serving_substations - available_voltage_services - **netixlan** - speed - operational - is_rs_peer - **poc** - role - name - phone - email ## JSON Schema ```json { "$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "properties": { "source": { "type": "string" }, "reason": { "type": "string" }, "updates": { "type": "array", "items": { "type": "object", "properties": { "ref_tag": { "type": "string" }, "obj_id": { "type": "integer" }, "data": { "type": "object", "additionalProperties": { "anyOf": [ {"type": "string"}, {"type": "integer"}, { "type": "array", "items": { "anyOf": [ {"type": "string"}, {"type": "integer"} ] } } ] } } }, "required": ["ref_tag", "obj_id", "data"] } } }, "required": ["source", "reason", "updates"] } ```