From 1b5b911a3ac54c1346ce7fc0513c4bbf38955108 Mon Sep 17 00:00:00 2001 From: Lee Calcote Date: Mon, 13 Jun 2016 18:07:40 -0500 Subject: [PATCH] schema/README: Fix links to (config|state)-schema.json Fix regression respectively introduced in 59ede1a and 59ede1a The config-schema.json and state-schema.json references were missing "-schema". Signed-off-by: Lee Calcote --- schema/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/schema/README.md b/schema/README.md index f2a31d07d..2c8e29277 100644 --- a/schema/README.md +++ b/schema/README.md @@ -6,10 +6,10 @@ This directory contains the [JSON Schema](http://json-schema.org/) for validatin The layout of the files is as follows: -* [config-schema.json](config.json) - the primary entrypoint for the [configuration](../config.md) schema +* [config-schema.json](config-schema.json) - the primary entrypoint for the [configuration](../config.md) schema * [config-linux.json](config-linux.json) - the [Linux-specific configuration sub-structure](../config-linux.md) * [config-solaris.json](config-solaris.json) - the [Solaris-specific configuration sub-structure](../config-solaris.md) -* [state-schema.json](state.json) - the primary entrypoint for the [state JSON](../runtime.md#state) schema +* [state-schema.json](state-schema.json) - the primary entrypoint for the [state JSON](../runtime.md#state) schema * [defs.json](defs.json) - definitions for general types * [defs-linux.json](defs-linux.json) - definitions for Linux-specific types * [validate.go](validate.go) - validation utility source code