Skip to content

Commit

Permalink
fix: Ensure that PropertyValue only contains properties that are ap…
Browse files Browse the repository at this point in the history
…propriate for its context (#113)
  • Loading branch information
nickevansuk authored Aug 18, 2023
1 parent 342afe6 commit d38da73
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions versions/2.x/models/PropertyValue.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,20 +32,32 @@
"type",
"name",
"description"
],
"shallNotInclude": [
"value",
"propertyID"
]
},
"additionalProperty": {
"requiredFields": [
"type",
"name",
"value"
],
"shallNotInclude": [
"description",
"propertyID"
]
},
"orderItemIntakeFormResponse": {
"requiredFields": [
"type",
"propertyID",
"value"
],
"shallNotInclude": [
"name",
"description"
]
}
}
Expand Down

0 comments on commit d38da73

Please sign in to comment.