A workaround you can use is to move additionalProperties to the extending schema and redeclare the properties from the extended schema.
 6 Matching Annotations
        
        - Sep 2022
- 
            
json-schema.org json-schema.org- 
  
- 
  Because additionalProperties only recognizes properties declared in the same subschema, it considers anything other than “street_address”, “city”, and “state” to be additional. Combining the schemas with allOf doesn’t change that. 
- 
  It’s important to note that additionalProperties only recognizes properties declared in the same subschema as itself. So, additionalProperties can restrict you from “extending” a schema using Schema Composition keywords such as allOf. In the following example, we can see how the additionalProperties can cause attempts to extend the address schema example to fail. 
 
- 
  
- 
            
stackoverflow.com stackoverflow.com- 
  In your scenario, which many, many people encounter, you expect that properties defined in schema1 will be known to schema2; but this is not the case and will never be. 
- 
  When you do: "allOf": [ { "schema1": "here" }, { "schema2": "here" } ] schema1 and schema2 have no knowledge of one another; they are evaluated in their own context. 
 
- 
  
- 
            
github.com github.com- 
  unevaluatedProperties is like additionalProperties, except that it can "see through" $ref and "see inside" allOf, anyOf, oneOf, if, then, else 
 
-