From ddf895f5ab7602f93d5223b32c082c82ac6e8142 Mon Sep 17 00:00:00 2001 From: Stavros Kois <47820033+stavros-k@users.noreply.github.com> Date: Tue, 25 Jun 2024 15:59:41 +0300 Subject: [PATCH] change metadata to snake_case --- apps_validation/json_schema_utils.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps_validation/json_schema_utils.py b/apps_validation/json_schema_utils.py index 467a638..fc50088 100644 --- a/apps_validation/json_schema_utils.py +++ b/apps_validation/json_schema_utils.py @@ -50,8 +50,8 @@ 'properties': { 'description': {'type': 'string'}, 'gid': {'type': 'integer'}, - 'groupName': {'type': 'string'}, - 'userName': {'type': 'string'}, + 'group_name': {'type': 'string'}, + 'user_name': {'type': 'string'}, 'uid': {'type': 'integer'}, }, 'required': ['description'], @@ -74,7 +74,7 @@ 'type': 'object', 'properties': { 'description': {'type': 'string'}, - 'hostPath': {'type': 'string'}, + 'host_path': {'type': 'string'}, }, 'required': ['description', 'hostPath'], },