Skip to content

Commit d7e1864

Browse files
committed
fix: repeated ExtraQuestionTypeValue schema
Signed-off-by: Matias Perrone <github@matiasperrone.com>
1 parent 40ae083 commit d7e1864

1 file changed

Lines changed: 0 additions & 34 deletions

File tree

app/Swagger/schemas.php

Lines changed: 0 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -482,40 +482,6 @@ class RSVPAdminAddRequestSchema
482482
{
483483
}
484484

485-
#[OA\Schema(
486-
schema: "ExtraQuestionTypeValue",
487-
description: "Extra Question Type Value",
488-
type: "object",
489-
properties: [
490-
new OA\Property(property: "id", type: "integer", format: "int64", example: 1),
491-
new OA\Property(property: "value", type: "string", example: "Value 1"),
492-
new OA\Property(property: "label", type: "string", example: "Label 1"),
493-
new OA\Property(property: "order", type: "integer", format: "int32", example: 1),
494-
new OA\Property(property: "question_id", type: "integer", format: "int64", example: 10),
495-
]
496-
)]
497-
class ExtraQuestionTypeValue
498-
{
499-
}
500-
501-
// SubQuestionRule Schema
502-
#[OA\Schema(
503-
schema: "SubQuestionRule",
504-
description: "Sub Question Rule",
505-
type: "object",
506-
properties: [
507-
new OA\Property(property: "id", type: "integer", format: "int64"),
508-
new OA\Property(property: "parent_question_id", type: "integer", format: "int64"),
509-
new OA\Property(property: "parent_question_value_id", type: "integer", format: "int64"),
510-
new OA\Property(property: "sub_question_id", type: "integer", format: "int64"),
511-
new OA\Property(property: "visibility", type: "string", enum: ["Visible", "Hidden"]),
512-
new OA\Property(property: "logic", type: "string", enum: ["And", "Or"]),
513-
]
514-
)]
515-
class SubQuestionRule
516-
{
517-
}
518-
519485
// Legal Documents
520486

521487
#[OA\Schema(

0 commit comments

Comments
 (0)