Hi im having json structure as follows:
{
"datasetType": "monolingual-corpus",
"languages": {
"sourceLanguage": "hi"
},
"collectionSource": [
"http://pib.gov.in/"
],
"domain":[
"news"
],
"license": "cc-by-4.0",
"submitter": {
"name": "Project aroad",
"aboutMe": "Open source project run by aroad foundation",
"team": [
{
"name": "Navneet Kumar hegde",
"aboutMe": "NLP team lead at Project aroad"
},
{
"name": "Aswini Pradeep",
"aboutMe": "Backend team lead at Project aroad"
}
]
}
I can validate datasetType only using json schema. How can i validate other values such as "languages", "collectoinsource", "submitter". In "Submitter" all fields should be mandatory and how to validate "Team" inside "submitter"
Code i have written in python is only validating "datasetType", not able to validate remaining fields. please help me regarding this, Thanks in advance