diff --git a/components/schemas/containers/config/ContainerIntegrations.yml b/components/schemas/containers/config/ContainerIntegrations.yml index bb7eb7e6..1e9c7ad5 100644 --- a/components/schemas/containers/config/ContainerIntegrations.yml +++ b/components/schemas/containers/config/ContainerIntegrations.yml @@ -138,5 +138,13 @@ properties: url: description: The URL to the third party logging service where logs will be sent. type: string + format: + description: The format Cycle will use to send the logs. + oneOf: + - type: string + enum: + - ndjson-headers + - ndjson-raw + - type: "null" - type: "null" - type: "null" diff --git a/stackspec/schema/StackSpecContainerConfigIntegrations.yml b/stackspec/schema/StackSpecContainerConfigIntegrations.yml index bc0e8d92..0336a517 100644 --- a/stackspec/schema/StackSpecContainerConfigIntegrations.yml +++ b/stackspec/schema/StackSpecContainerConfigIntegrations.yml @@ -219,6 +219,14 @@ properties: oneOf: - type: string - $ref: StackVariable.yml + format: + description: The format Cycle will use to send the logs. + oneOf: + - type: string + enum: + - ndjson-headers + - ndjson-raw + - $ref: StackVariable.yml - type: "null" - $ref: StackVariable.yml - type: "null"