Skip to content

Commit

Permalink
implements additionalInformation to schema
Browse files Browse the repository at this point in the history
  • Loading branch information
m-mullen committed Nov 24, 2023
1 parent 9ff6792 commit 875bad7
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 0 deletions.
9 changes: 9 additions & 0 deletions json-definitions/iva/defects/get/index.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,15 @@
}
}
}
},
"additionalInformation": {
"type": "object",
"additionalProperties" : false,
"properties": {
"notes" : {
"type" : ["string"]
}
}
}
}
}
11 changes: 11 additions & 0 deletions json-schemas/iva/defects/get/index.json
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,17 @@
}
}
}
},
"additionalInformation": {
"type": "object",
"additionalProperties": false,
"properties": {
"notes": {
"type": [
"string"
]
}
}
}
}
}
3 changes: 3 additions & 0 deletions types/iva/defects/get/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ export interface DefectGETIVA {
additionalInfo: boolean;
inspectionTypes: InspectionType[];
}[];
additionalInformation?: {
notes?: string;
};
}

export enum EUVehicleCategory {
Expand Down

0 comments on commit 875bad7

Please sign in to comment.