schemas/TEMPLATES/journal: Remove the # 'fragment' from end of $id

As per <https://json-schema.org/draft/2020-12/json-schema-core.html#section-8.2.1>

> Therefore, "$id" MUST NOT contain a non-empty fragment, and SHOULD NOT contain an empty fragment.
This commit is contained in:
Athanasius 2022-09-02 13:36:43 +01:00
parent 5bcdfadb09
commit 2eb213d766
No known key found for this signature in database
GPG Key ID: 8C392035DD80FD62

View File

@ -39,7 +39,7 @@
# as a result disallow the key.
{
"$schema" : "http://json-schema.org/draft-04/schema#",
"id" : "https://eddn.edcd.io/schemas/newjournalevent/1#",
"id" : "https://eddn.edcd.io/schemas/newjournalevent/1",
"type" : "object",
"additionalProperties" : false,
"required": [ "$schemaRef", "header", "message" ],