Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kvrae/tunisia-state-municipality

JSON file that contains information about different regions and their delegations in Tunisia.
https://github.com/kvrae/tunisia-state-municipality

Last synced: 11 days ago
JSON representation

JSON file that contains information about different regions and their delegations in Tunisia.

Awesome Lists containing this project

README

        

# Tunisian State Municipality

This is a JSON file that contains information about different regions and their delegations in Tunisia.

## Structure

The file is structured as an array of objects, where each object represents a region. Each region object has the following properties:

- `Name`: The name of the region.
- `Value`: A short abbreviation or code for the region.
- `Delegations`: An array of objects representing the delegations within the region. Each delegation object has a `Name` and a `Value`.

Here is an example of the structure:

```json
[
{
"Name": "ARIANA",
"Value": "AR",
"Delegations": [
{
"Name": "RAOUED",
"Value": "RAOUED"
},
{
"Name": "SIDI THABET",
"Value": "SIDI THABET"
},
...
]
},
...
]
```

## Usage

You can use this JSON file to retrieve information about the regions and their delegations programmatically. For example, you can parse the file in your application and display a list of regions and their corresponding delegations.

Please note that the information in this file is based on the available data up until September 2021 and may not reflect any recent changes or updates.