-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fcae6d8
commit c3af444
Showing
3 changed files
with
67 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,38 @@ | ||
# config | ||
Configuration files for Office Bearers and Contact Details. | ||
# NSS Configuration Files | ||
|
||
These files are used by our [mobile application](https://github.com/nss-mitblr/app). | ||
|
||
## Office Bearers Format | ||
|
||
```json | ||
{ | ||
"programme_officers": [ | ||
{ | ||
"name": "string", | ||
"contact": "string", | ||
"email": "string", | ||
}, | ||
{ | ||
"...": "..." | ||
} | ||
], | ||
"unit_heads": [ | ||
{ | ||
"name": "string", | ||
"contact": "string", | ||
"email": "string", | ||
}, | ||
{ | ||
"...": "..." | ||
} | ||
] | ||
} | ||
``` | ||
|
||
## Contact Details Format | ||
|
||
```json | ||
{ | ||
"email": "string" | ||
} | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"email": "[email protected]" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"programme_officers": [ | ||
{ | ||
"name": "Dr. Jyoti Shetty", | ||
"contact": "+91 95359 58989", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Dr. Vinod Hegde", | ||
"contact": "+91 91136 23026", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"unit_heads": [ | ||
{ | ||
"name": "Nishanth Nithyananda Shet", | ||
"contact": "+91 63601 51894", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Tarunika D", | ||
"contact": "+91 98841 04295", | ||
"email": "[email protected]" | ||
} | ||
] | ||
} |