Skip to content

Commit

Permalink
Make changes to TCRD finder
Browse files Browse the repository at this point in the history
  • Loading branch information
kashifatcha committed Jan 22, 2025
1 parent 35fdeeb commit 2ac4ad6
Show file tree
Hide file tree
Showing 4 changed files with 51 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2038,17 +2038,26 @@
"additionalProperties": false,
"properties": {
"case_type": {
"type": "string"
"type": "array",
"items": {
"type": "string"
}
},
"decision_subject": {
"type": "string"
"type": "array",
"items": {
"type": "string"
}
},
"first_published_at": {
"type": "string",
"pattern": "^[1-9][0-9]{3}[-/](0[1-9]|1[0-2])[-/](0[1-9]|[12][0-9]|3[0-1])$"
},
"outcome_type": {
"type": "string"
"type": "array",
"items": {
"type": "string"
}
},
"regions": {
"type": "array",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2179,17 +2179,26 @@
"additionalProperties": false,
"properties": {
"case_type": {
"type": "string"
"type": "array",
"items": {
"type": "string"
}
},
"decision_subject": {
"type": "string"
"type": "array",
"items": {
"type": "string"
}
},
"first_published_at": {
"type": "string",
"pattern": "^[1-9][0-9]{3}[-/](0[1-9]|1[0-2])[-/](0[1-9]|[12][0-9]|3[0-1])$"
},
"outcome_type": {
"type": "string"
"type": "array",
"items": {
"type": "string"
}
},
"regions": {
"type": "array",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1871,17 +1871,26 @@
"additionalProperties": false,
"properties": {
"case_type": {
"type": "string"
"type": "array",
"items": {
"type": "string"
}
},
"decision_subject": {
"type": "string"
"type": "array",
"items": {
"type": "string"
}
},
"first_published_at": {
"type": "string",
"pattern": "^[1-9][0-9]{3}[-/](0[1-9]|1[0-2])[-/](0[1-9]|[12][0-9]|3[0-1])$"
},
"outcome_type": {
"type": "string"
"type": "array",
"items": {
"type": "string"
}
},
"regions": {
"type": "array",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1158,20 +1158,29 @@
type: "object",
additionalProperties: false,
properties: {
decision_subject: {
type: "string",
"decision_subject": {
type: "array",
items: {
type: "string",
},
},
regions: {
type: "array",
items: {
type: "string",
},
},
case_type: {
type: "string",
"case_type": {
type: "array",
items: {
type: "string",
},
},
outcome_type: {
type: "string",
"outcome_type": {
type: "array",
items: {
type: "string",
},
},
first_published_at: {
type: "string",
Expand Down

0 comments on commit 2ac4ad6

Please sign in to comment.