Skip to content

Commit

Permalink
Merge pull request #223 from Sunbird-cQube/dev
Browse files Browse the repository at this point in the history
merged dev to staging
  • Loading branch information
htvenkatesh authored Jul 3, 2023
2 parents 25d508b + 5534108 commit 80160ad
Show file tree
Hide file tree
Showing 4 changed files with 73 additions and 2 deletions.
11 changes: 9 additions & 2 deletions src/JsonSchemas/dimensions/school-dimension.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,15 @@
},
"schoolcategory_id":{
"type": "string",
"shouldNotNull": true
"shouldNotNull": false
},
"schoolmanagement_id":{
"type": "string",
"shouldNotNull": false
},
"school_statecategory_id":{
"type": "string",
"shouldNotNull": false
},
"cluster_id":{
"type": "string",
Expand Down Expand Up @@ -56,7 +64,6 @@
"school_id",
"udise_code",
"school_name",
"schoolcategory_id",
"cluster_id",
"cluster_name",
"block_id",
Expand Down
24 changes: 24 additions & 0 deletions src/JsonSchemas/dimensions/schoolcategory-dimension.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"program": "schoolcategory",
"input": {
"type": "object",
"properties": {
"schoolcategory_id": {
"type": "string",
"shouldnotnull": true
},
"schoolcategory_name": {
"type": "string",
"shouldnotnull": true
},
"grades": {
"type": "string",
"shouldnotnull": false
}
},
"required": [
"schoolcategory_id",
"schoolcategory_name"
]
}
}
20 changes: 20 additions & 0 deletions src/JsonSchemas/dimensions/schoolmanagement-dimension.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"program": "schoolmanagement",
"input": {
"type": "object",
"properties": {
"schoolmanagement_id": {
"type": "string",
"shouldnotnull": true
},
"schoolmanagement_name": {
"type": "string",
"shouldnotnull": true
}
},
"required": [
"schoolmanagement_id",
"schoolmanagement_name"
]
}
}
20 changes: 20 additions & 0 deletions src/JsonSchemas/dimensions/statecategory-dimension.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"program": "statecategory",
"input": {
"type": "object",
"properties": {
"school_statecategory_id": {
"type": "string",
"shouldnotnull": true
},
"school_statecategory_name": {
"type": "string",
"shouldnotnull": true
}
},
"required": [
"school_statecategory_id",
"school_statecategory_name"
]
}
}

0 comments on commit 80160ad

Please sign in to comment.