WP Rest Schema Builder
….
Version 0.1.0-beta3
Why?
Defining valid JSON rest schema in WordPress is a little messy and easy to make a mistake with it being lots of nested arrays. This library attempts to make this process cleaner and simpler with a fully fluent, object driven interface.
Setup
To install, you can use composer
$ composer require pinkcrab/wp-rest-schema
for_meta_data
Basic Usage
This can be used for Register Post Meta
register_post_meta( 'post', 'fixed_in', array( 'type' => 'string', 'show_in_rest' => array( 'single' => true, 'schema' => Argument_Parser::for_meta_data( String_Type::on('fixed_in') ->min_length(10) ->max_length( 42 ) ->required() ->description('This is a required string value, that must be between 10 and 42 chars long.') ), ), ) );
Can also be used with the Perique Registerable library
$meta_data = (new Meta_Data('fixed_in')) ->post_type('post') ->type('string') ->rest_schema( Argument_Parser::for_meta_data( String_Type::on( 'fixed_in' ) ->min_length(10) ->max_length( 42 ) ->required() ->description('This is a required string value, that must be between 10 and 42 chars long.') ) );
The WP Rest Schema Builder can be used in various places where you would normally define a schema, such as Rest Routes, Registering Post Types, Taxonomies and Meta Data.
Change Log
- 0.1.0 Inital version