Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/kvrae/tunisia-state-municipality
- Owner: KvRae
- Created: 2023-06-04T17:48:00.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-06-04T17:58:29.000Z (over 1 year ago)
- Last Synced: 2024-10-11T01:56:28.816Z (about 1 month ago)
- Homepage:
- Size: 7.81 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.