| 1: | <?php declare(strict_types=1); |
| 2: | |
| 3: | namespace Salient\Contract\Core; |
| 4: | |
| 5: | /** |
| 6: | * @api |
| 7: | */ |
| 8: | interface HasJsonSchema |
| 9: | { |
| 10: | public const DRAFT_04_SCHEMA_ID = 'http://json-schema.org/draft-04/schema#'; |
| 11: | |
| 12: | /** |
| 13: | * Get a JSON Schema for the object |
| 14: | * |
| 15: | * @return array<string,mixed> |
| 16: | */ |
| 17: | public function getJsonSchema(): array; |
| 18: | } |
| 19: |