Skip to content

Commit

Permalink
feat: Introduce common SchemaStore interface for schema validations i…
Browse files Browse the repository at this point in the history
…n starlight
  • Loading branch information
chrisingenhaag committed Feb 26, 2024
1 parent 9fc8061 commit 2566ecc
Showing 1 changed file with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
// Copyright 2024 Deutsche Telekom IT GmbH
//
// SPDX-License-Identifier: Apache-2.0

package de.telekom.eni.pandora.horizon.schema;

import org.everit.json.schema.Schema;

public interface SchemaStore {
Schema getSchemaForEventType(String environment, String eventType, String hub, String team);

void pollSchemas();
}

0 comments on commit 2566ecc

Please sign in to comment.