BP_REST_Topics_Actions_Endpoint::get_dropdown_item_schema()

Get the forums schema, conforming to JSON Schema.

Description

Return

(array)

Source

File: bp-forums/classes/class-bp-rest-topics-actions-endpoint.php

1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
public function get_dropdown_item_schema() {
    $schema = array(
        '$schema'    => 'http://json-schema.org/draft-04/schema#',
        'title'      => 'topics_dropdown',
        'type'       => 'object',
        'properties' => array(
            'id'    => array(
                'description' => __( 'Unique identifier for the topic.', 'buddyboss' ),
                'type'        => 'integer',
                'context'     => array( 'view', 'edit' ),
                'readonly'    => true,
            ),
            'title' => array(
                'description' => __( 'The title of the topic.', 'buddyboss' ),
                'context'     => array( 'view', 'edit' ),
                'type'        => 'object',
                'properties'  => array(
                    'raw'      => array(
                        'description' => __( 'Content for the title of the topic, as it exists in the database.', 'buddyboss' ),
                        'type'        => 'string',
                        'context'     => array( 'view', 'edit' ),
                    ),
                    'rendered' => array(
                        'description' => __( 'The title of the topic, transformed for display.', 'buddyboss' ),
                        'type'        => 'string',
                        'context'     => array( 'view', 'edit' ),
                    ),
                ),
            ),
        ),
    );
 
    /**
     * Filters the topic dropdown schema.
     *
     * @param string $schema The endpoint schema.
     */
    return apply_filters( 'bp_rest_topic_dropdown_schema', $this->add_additional_fields_schema( $schema ) );
}

Changelog

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.