From ca8173cfd33d6d9e855d26cf1d9b291e41786ad7 Mon Sep 17 00:00:00 2001 From: Sri Vishnnu Totakura Date: Wed, 30 Nov 2016 10:41:12 +0100 Subject: [PATCH] Allow digits in property names in hyper schema Similar to interagent#284 --- schemas/interagent-hyper-schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schemas/interagent-hyper-schema.json b/schemas/interagent-hyper-schema.json index b2b2d20..555dc06 100644 --- a/schemas/interagent-hyper-schema.json +++ b/schemas/interagent-hyper-schema.json @@ -66,7 +66,7 @@ }, "properties": { "patternProperties": { - "^[a-z][a-zA-Z_]*[a-zA-Z]$": { + "^[a-z0-9][a-zA-Z0-9_]*[a-zA-Z0-9]$": { "$ref": "#/definitions/resourceProperty" } },