File "DirectoryLiteralReference.php"
Full Path: /home/romayxjt/public_html/wp-content/plugins/woocommerce/packages/blueprint/src/Steps/schemas/definitions/DirectoryLiteralReference.php
File size: 494 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
return array(
'type' => 'object',
'additionalProperties' => false,
'properties' => array(
'resource' => array(
'type' => 'string',
'const' => 'literal:directory',
'description' => 'Identifies the file resource as a git directory',
),
'files' => array(
'$ref' => '#/definitions/FileTree',
),
'name' => array(
'type' => 'string',
),
),
'required' => array(
'files',
'name',
'resource',
),
);