NestedProperty.php 479 B

123456789101112131415161718192021222324
  1. <?php declare(strict_types=1);
  2. namespace AnotherNamespace;
  3. /**
  4. * @OA\Schema()
  5. */
  6. class NestedProperty
  7. {
  8. /**
  9. * @var bool
  10. * @OA\Property(
  11. * @OA\Property(
  12. * property="babyProperty",
  13. * @OA\Property(
  14. * property="theBabyOfBaby",
  15. * properties={@OpenApi\Annotations\Property(type="string", property="theBabyOfBabyBaby")}
  16. * )
  17. * ),
  18. * )
  19. */
  20. public $parentProperty;
  21. }