'object', 'properties' => [ 'id' => ['type' => 'integer', 'readonly' => true], 'name' => ['type' => 'string', 'required' => true, 'minLength' => 1], 'block_size' => ['type' => 'integer', 'required' => true, 'minimum' => 1], 'maintainer_email' => ['type' => ['string', 'null'], 'format' => 'email'], 'google_calendar_id' => ['type' => ['string', 'null']], ], ]; } public function __construct(array $data) { $this->id = $data['id'] ?? null; $this->name = $data['name']; $this->block_size = $data['block_size'] ?? 0; $this->google_calendar_id = $data['google_calendar_id'] ?? null; $this->maintainer_email = $data['maintainer_email'] ?? null; } }