freifunk / directory.api.freifunk.net

directory of all freifunk communities
http://freifunk.net/wie-mache-ich-mit/community-finden/
Creative Commons Zero v1.0 Universal
33 stars 226 forks source link

Schema issue at API file of Freifunk Ingolstadt #666

Open christian-weiss opened 3 years ago

christian-weiss commented 3 years ago

Issue:

ValidationError in community file Freifunk Ingolstadt:

     Error in state->nodes: u'122' is not of type u'integer'

     Url: https://api.freifunk-ingolstadt.de/api.json

Lastchange is 2020-01-21T20:46:02.318Z. Looks like this file is not automatically updated (node count). Handcrafted issue.

Please remove the quotes from state->nodes (it should be an integer!).

Vijayvarma115 commented 5 months ago

To address the issue with the ValidationError recognized as an integer due to the presence of quotes . Within the state->nodes field, remove any surrounding quotes so that the value is represented as an integer rather than a string. Example: Before: "nodes": "122" After: "nodes": 122