BP_REST_Attachments_Member_Cover_Endpoint::get_item_schema()

Get the plugin schema, conforming to JSON Schema.

Description

Return

(array)

Source

File: bp-members/classes/class-bp-rest-attachments-member-cover-endpoint.php

451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
public function get_item_schema() {
    $schema = array(
        '$schema'    => 'http://json-schema.org/draft-04/schema#',
        'title'      => 'bp_attachments_member_cover',
        'type'       => 'object',
        'properties' => array(
            'image' => array(
                'context'     => array( 'embed', 'view', 'edit' ),
                'description' => __( 'Full size of the image file.', 'buddyboss' ),
                'type'        => 'string',
                'format'      => 'uri',
                'readonly'    => true,
            ),
        ),
    );
 
    /**
     * Filters the user cover schema.
     *
     * @param string $schema The endpoint schema.
     */
    return apply_filters( 'bp_rest_attachments_member_cover_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.