Skip to content

oneOf discriminator validation #229

Open
@leon0399

Description

@leon0399

Package version
0.22.0

Describe the bug
Schema discriminator is not supported: https://swagger.io/docs/specification/data-models/inheritance-and-polymorphism/

To Reproduce

components:
  responses:
    sampleObjectResponse:
      content:
        application/json:
          schema:
            oneOf:
              - $ref: '#/components/schemas/simpleObject'
              - $ref: '#/components/schemas/complexObject'
            discriminator:
              propertyName: objectType
  
  schemas:
    simpleObject:
      type: object
      required:
        - objectType
      properties:
        objectType:
          type: string
      
    complexObject:
      type: object
      required:
        - objectType
      properties:
        objectType:
          type: string
      

Expected behaviour
The validator must find a schema based on the discriminator

Additional context
I've tried to make a fix myself, but does not know how to resolve the schema by ref from the validator:
src/Schema/Keywords/OneOf.php:59

        // Validate against all schemas
        $schemaValidator = new SchemaValidator($this->validationDataType);
        $innerExceptions = [];
        $validSchemas    = [];

+        $discriminator = $this->parentSchema->discriminator;
+        if ($discriminator !== null) {
+            $resolved = $discriminator->mapping[$data[$discriminator->propertyName]];
+            // how do I get ref by Schema object? or how to get schema by ref?
+            // $oneOf = array_filter(
+            //     $oneOf,
+            //     static fn(CebeSchema $schema) => $schema->getRef() === $resolved
+            // );
+        }

        foreach ($oneOf as $schema) {
            try {
                $schemaValidator->validate($data, $schema, $this->dataBreadCrumb);
                $validSchemas[] = $schema;
            } catch (SchemaMismatch $e) {
                $innerExceptions[] = $e;
            }
        }

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions