-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjsonld_config.php
More file actions
35 lines (35 loc) · 947 Bytes
/
jsonld_config.php
File metadata and controls
35 lines (35 loc) · 947 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?php
/**
* @var bool $isHydra: Whether to use hydra schema
* @see http://www.hydra-cg.com/spec/latest/core/
* default: `false`
*
* @var string $schemaUrl: Where schema definitions come from
* default: `http://schema.org/`
*
* @var string $vocabUrl: A vocab endpoint
* default: `/vocab`
*
* @var string $title: Title of your API
* default: `Api Documentation`
*
* @var string $description: Description of your API
* default: ``
*
* @var string $entrypointUrl: Describes API default entry point
* default: `/`
*
* @var string $connectionName: The name of your cakephp database connection (typically in config/app.php)
* default: `default`
*/
return [
'JsonLdView' => [
'isHydra' => false,
'schemaUrl' => 'http://schema.org/',
'vocabUrl' => '/vocab',
'title' => 'API Documentation',
'description' => '',
'entrypointUrl' => '/',
'connectionName' => 'default'
]
];