-
Notifications
You must be signed in to change notification settings - Fork 7
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
Showing
3 changed files
with
63 additions
and
2 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
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
35 changes: 35 additions & 0 deletions
35
languages/javalang/builder-renderer/java-builder-client/src/test/resources/html-link.raml
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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
#%RAML 1.0 | ||
--- | ||
title: Commercetools Import API | ||
baseUri: https://localhost | ||
|
||
annotationTypes: | ||
enumDescriptions: | ||
description: | | ||
Describes the values of an enum type. | ||
type: object | ||
properties: | ||
//: | ||
description: | | ||
Adds a description for the enum value given by the key. | ||
types: | ||
Foo: | ||
type: object | ||
Bar: | ||
type: object | ||
properties: | ||
foo: | ||
type: Foo | ||
description: | | ||
some [Foo](ctp:api:type:Foo) property | ||
FooBar: | ||
type: string | ||
enum: | ||
- foo | ||
- bar | ||
(enumDescriptions): | ||
foo: | | ||
References an [Foo](ctp:api:type:Foo). | ||
bar: | | ||
References an [Bar](ctp:api:type:Bar). |