forked from zircote/swagger-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
JsonContent.php
47 lines (41 loc) · 1.16 KB
/
JsonContent.php
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
36
37
38
39
40
41
42
43
44
45
46
47
<?php declare(strict_types=1);
/**
* @license Apache 2.0
*/
namespace OpenApi\Annotations;
use OpenApi\Generator;
/**
* Shorthand for a json response.
*
* Use as `@OA\Schema` inside a `Response` and `MediaType`->`'application/json'` will be generated.
*
* @Annotation
*/
class JsonContent extends Schema
{
/**
* An associative array of Examples attributes.
*
* The keys represent the name of the example and the values are instances of the Examples attribute.
* Each example is used to show how the content of the request or response should look like.
*
* @var array<string,Examples>
*/
public $examples = Generator::UNDEFINED;
/**
* @inheritdoc
*/
public static $_parents = [];
/**
* @inheritdoc
*/
public static $_nested = [
Discriminator::class => 'discriminator',
Items::class => 'items',
Property::class => ['properties', 'property'],
ExternalDocumentation::class => 'externalDocs',
AdditionalProperties::class => 'additionalProperties',
Examples::class => ['examples', 'example'],
Attachable::class => ['attachables'],
];
}