File "UrlReference.php"

Full Path: /home/romayxjt/public_html/wp-content/plugins/woocommerce/packages/blueprint/src/Steps/schemas/definitions/UrlReference.php
File size: 573 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

return array(
	'type'                 => 'object',
	'properties'           => array(
		'resource' => array(
			'type'        => 'string',
			'const'       => 'url',
			'description' => 'Identifies the file resource as a URL',
		),
		'url'      => array(
			'type'        => 'string',
			'description' => 'The URL of the file',
		),
		'caption'  => array(
			'type'        => 'string',
			'description' => 'Optional caption for displaying a progress message',
		),
	),
	'required'             => array(
		'resource',
		'url',
	),
	'additionalProperties' => false,
);