diff --git a/spec/schemas/nodes.info.yaml b/spec/schemas/nodes.info.yaml index 15b3d9d83..8846a4e01 100644 --- a/spec/schemas/nodes.info.yaml +++ b/spec/schemas/nodes.info.yaml @@ -152,6 +152,8 @@ components: type: string vm_version: $ref: '_common.yaml#/components/schemas/VersionString' + bundled_jdk: + type: boolean using_bundled_jdk: type: boolean using_compressed_ordinary_object_pointers: @@ -172,7 +174,7 @@ components: - vm_name - vm_vendor - vm_version - - using_bundled_jdk + - bundled_jdk - input_arguments NodeInfoJvmMemory: type: object diff --git a/tests/_core/nodes.yaml b/tests/_core/nodes.yaml new file mode 100644 index 000000000..878c13b62 --- /dev/null +++ b/tests/_core/nodes.yaml @@ -0,0 +1,13 @@ +$schema: ../../json_schemas/test_story.schema.yaml + +description: Test nodes endpoints. +chapters: + - synopsis: Nodes with a json response. + path: /_cat/aliases + parameters: + format: json + method: GET + response: + status: 200 + content_type: application/json + payload: [] \ No newline at end of file