# Create special events Creates a new special event for the museum. Endpoint: POST /special-events Version: 1.1.1 Security: MuseumPlaceholderAuth ## Request fields (application/json): - `name` (string, required) Name of the special event. - `location` (string, required) Location where the special event is held. - `eventDescription` (string, required) Description of the special event. - `dates` (array, required) List of planned dates for the special event. Example: ["2023-10-29"] - `price` (number, required) Price of a ticket for the special event. ## Response 201 fields (application/json): - `eventId` (string, required) Identifier for a special event. - `name` (string, required) Name of the special event. - `location` (string, required) Location where the special event is held. - `eventDescription` (string, required) Description of the special event. - `dates` (array, required) List of planned dates for the special event. Example: ["2023-10-29"] - `price` (number, required) Price of a ticket for the special event. ## Response 400 fields (application/problem+json): - `type` (string) Example: "object" - `title` (string) Example: "Validation failed" ## Response 404 fields (application/problem+json): - `type` (string) Example: "object" - `title` (string) Example: "Validation failed"