Unable to restrict model properties when using allOf
#450
Description
I am finding it impossible to limit the properties which can be sent in an object when using schema composition. By way of example, let's say we have an object with id
, name
and value
properties. The id
field is only set for records once they are created.
I would like to be able to use the same field definitions in all my schemas for consistency as I would have done with standard JSON Schema. To do this I usually create multiple partials and then reference them in my model schemas, like this:
definitions:
with_id:
type: object
properties:
id:
type: string
format: uuid
record_data:
type: object
properties:
name:
type: string
value:
type: number
new_record:
allOf:
- "$ref": "#/definitions/record_data"
properties:
name: {}
value: {}
required:
- name
- value
additionalProperties: false
existing_record:
allOf:
- "$ref": "#/definitions/with_id"
- "$ref": "#/definitions/record_data"
properties:
id: {}
name: {}
value: {}
required:
- id
- name
- value
additionalProperties: false
Note that I need to redeclare the child record properties as properties of the toplevel record in order to workaround JSON Schema's limitations regarding additionalProperties
. This works for JSON Schema, but with Swagger's validator I get a CHILD_DEFINITION_REDECLARES_PROPERTY
error.
Is there a good reason for including this error? Can it be removed, or perhaps only enabled when validating the higher-level Swagger schema & ignored when validating JSON Schema model definitions?