From 6eb9a9dbee6857598b478c1a813236ec37ea813c Mon Sep 17 00:00:00 2001 From: Matthias Kruk Date: Sat, 19 Jun 2021 07:55:49 +0900 Subject: [PATCH] spec/ipc: Rename base message schema to ipc_message / ipc.message.json IPC base messages are stored in the "message" field of an envelope, and the schema for the latter is called ipc.envelope.json (and the file is called ipc_envelope.schema.json). In keeping with that convention, the schema for IPC base messages should be called ipc.message.json (filename ipc_message.schema.json). This commit makes sure the naming conventions are adhered to. --- spec/{ipc_data.schema.json => ipc_message.schema.json} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename spec/{ipc_data.schema.json => ipc_message.schema.json} (94%) diff --git a/spec/ipc_data.schema.json b/spec/ipc_message.schema.json similarity index 94% rename from spec/ipc_data.schema.json rename to spec/ipc_message.schema.json index fb5f0bb..06379d6 100644 --- a/spec/ipc_data.schema.json +++ b/spec/ipc_message.schema.json @@ -1,6 +1,6 @@ { "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://m10k.eu/toolbox/ipc.msg.json", + "$id": "https://m10k.eu/toolbox/ipc.message.json", "title": "Toolbox IPC Base message", "description": "The base type for toolbox IPC messages", "type": "object", -- 2.47.3