From 5747c078f8cc7726e3ff3cf6f77774bcb558f13a Mon Sep 17 00:00:00 2001 From: Bobby Sharp Date: Wed, 10 Jul 2024 08:54:33 -0400 Subject: [PATCH] Add ecsOnly property to field definition --- src/main/resources/swagger.api/schemas/field.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main/resources/swagger.api/schemas/field.json b/src/main/resources/swagger.api/schemas/field.json index bce9182..65398ee 100644 --- a/src/main/resources/swagger.api/schemas/field.json +++ b/src/main/resources/swagger.api/schemas/field.json @@ -54,6 +54,10 @@ "items": { "$ref": "valueWithLabel.json" } + }, + "ecsOnly": { + "description": "Indicates if the field is available only in ECS environments", + "type": "boolean" } }, "required": ["name", "dataType"]