File "GitDirectoryReference.php"

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

<?php

return array(
	'type'                 => 'object',
	'properties'           => array(
		'resource' => array(
			'type'        => 'string',
			'const'       => 'git:directory',
			'description' => 'Identifies the file resource as a git directory',
		),
		'url'      => array(
			'type'        => 'string',
			'description' => 'The URL of the git repository',
		),
		'ref'      => array(
			'type'        => 'string',
			'description' => 'The branch of the git repository',
		),
		'path'     => array(
			'type'        => 'string',
			'description' => 'The path to the directory in the git repository',
		),
	),
	'required'             => array(
		'resource',
		'url',
		'ref',
		'path',
	),
	'additionalProperties' => false,
);