BP_REST_Group_Messages_Endpoint::get_item_schema()
Get the message schema, conforming to JSON Schema.
Description
Return
(array)
Source
File: bp-messages/classes/class-bp-rest-group-messages-endpoint.php
public function get_item_schema() { $schema = array( '$schema' => 'http://json-schema.org/draft-04/schema#', 'title' => 'bp_messages', 'type' => 'object', 'properties' => array( 'message' => array( 'context' => array( 'view', 'edit' ), 'description' => __( 'Information for the user.', 'buddyboss' ), 'type' => 'string', ), 'data' => array( 'context' => array( 'view', 'edit' ), 'description' => __( 'Message thread', 'buddyboss' ), 'readonly' => true, 'type' => 'object', 'properties' => array(), ), ), ); $schema['properties']['data']['properties'] = $this->message_endppoint->get_item_schema()['properties']; /** * Filters the message schema. * * @param array $schema The endpoint schema. * * @since 0.1.0 */ return apply_filters( 'bp_rest_message_schema', $this->add_additional_fields_schema( $schema ) ); }
Changelog
Version | Description |
---|---|
0.1.0 | Introduced. |
Questions?
We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.