-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Guy Davenport
committed
Oct 11, 2024
1 parent
e2642bc
commit cd3b983
Showing
7 changed files
with
63 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
java/cli/src/main/java/org/brapi/schematools/cli/OutputFormat.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,24 @@ | ||
package org.brapi.schematools.cli; | ||
|
||
/** | ||
* Enumeration that provides the possible outputs for generator | ||
*/ | ||
public enum OutputFormat { | ||
|
||
/** | ||
* Use this format to generate an OpenAPI specification | ||
*/ | ||
OPEN_API, | ||
/** | ||
* Use this format to generate an GraphQL schema | ||
*/ | ||
GRAPHQL, | ||
/** | ||
* Use this format to generate OWL specification in turtle format | ||
*/ | ||
OWL, | ||
/** | ||
* Use this format to generate Markdown for type and their field descriptions | ||
*/ | ||
MARKDOWN | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 3 additions & 0 deletions
3
java/core/src/main/java/org/brapi/schematools/core/valdiation/Validatable.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters