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