From f9f5750046f214339853e3620663d7fcca2a36be Mon Sep 17 00:00:00 2001 From: Anuj Hydrabadi Date: Mon, 18 Aug 2025 11:24:55 +0530 Subject: [PATCH] Name length limit to facets.yaml json schema --- ftf_cli/schema.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ftf_cli/schema.py b/ftf_cli/schema.py index 9565967..c18ae9c 100644 --- a/ftf_cli/schema.py +++ b/ftf_cli/schema.py @@ -104,6 +104,10 @@ }, "additionalProperties": True }, + "name_length_limit": { + "type": "integer", + "minimum": 1, + } }, "required": ["intent", "flavor", "version", "description", "spec", "clouds"], }