Files
wp-multisite-waas/inc/api/schemas/event-update.php
2025-02-15 23:19:24 -07:00

77 lines
2.3 KiB
PHP

<?php
/**
* Schema for event@update.
*
* @package WP_Ultimo\API\Schemas
* @since 2.0.11
*/
// Exit if accessed directly
defined('ABSPATH') || exit;
/**
* Schema for event@update.
*
* @since 2.0.11
* @internal last-generated in 2022-12
* @generated class generated by our build scripts, do not change!
*
* @since 2.0.11
*/
return [
'severity' => [
'description' => __('Severity of the problem.', 'wp-multisite-waas'),
'type' => 'integer',
'required' => false,
],
'date_created' => [
'description' => __('Date when the event was created.', 'wp-multisite-waas'),
'type' => 'string',
'required' => false,
],
'payload' => [
'description' => __('Payload of the event.', 'wp-multisite-waas'),
'type' => 'object',
'required' => false,
],
'initiator' => [
'description' => __('The type of user responsible for initiating the event. There are two options: Manual and System. By default, the event is saved as manual.', 'wp-multisite-waas'),
'type' => 'string',
'required' => false,
'enum' => [
'system',
'manual',
],
],
'object_type' => [
'description' => __("The type of object related to this event. It's usually the model name.", 'wp-multisite-waas'),
'type' => 'string',
'required' => false,
],
'slug' => [
'description' => __('The event slug. It needs to be unique and preferably make it clear what it is about. Example: account_created is about creating an account.', 'wp-multisite-waas'),
'type' => 'string',
'required' => false,
],
'object_id' => [
'description' => __('The ID of the related objects.', 'wp-multisite-waas'),
'type' => 'integer',
'required' => false,
],
'date_modified' => [
'description' => __('Model last modification date.', 'wp-multisite-waas'),
'type' => 'string',
'required' => false,
],
'migrated_from_id' => [
'description' => __('The ID of the original 1.X model that was used to generate this item on migration.', 'wp-multisite-waas'),
'type' => 'integer',
'required' => false,
],
'skip_validation' => [
'description' => __('Set true to have field information validation bypassed when saving this event.', 'wp-multisite-waas'),
'type' => 'boolean',
'required' => false,
],
];