diff --git a/GithubActionValidationFiles/fileWithNoErrorMessages.yaml b/GithubActionValidationFiles/fileWithNoErrorMessages.yaml deleted file mode 100644 index 3378904b47..0000000000 --- a/GithubActionValidationFiles/fileWithNoErrorMessages.yaml +++ /dev/null @@ -1,55 +0,0 @@ -openapi: 3.0.0 -info: - description: test - title: test - version: 1.0 -paths: - /cu: - post: - operationId: savecu - responses: - "200": - description: successful operation - content: - application/json: - schema: - $ref: "#/components/schemas/AbTestFoo" - "/bar": - put: - operationId: updateBar - responses: - "200": - description: successful operation - content: - application/json: - schema: - $ref: "#/components/schemas/CoTestBar" -servers: - - url: /foo/bar -components: - schemas: - Thing: - type: object - properties: - moreThings: - type: array - uniqueItems: true - items: - $ref: "#/components/schemas/ThingAs" - ThingAs: - type: object - properties: - concept: - $ref: "#/components/schemas/Thing" - AbTestFoo: - type: object - properties: - moreThings: - type: array - uniqueItems: true - items: - $ref: "#/components/schemas/ThingAs" - readOnly: true - CoTestBar: - allOf: - - $ref: "#/components/schemas/Thing" \ No newline at end of file diff --git a/GithubActionValidationFiles/fileWithValidationErrorMessages.yaml b/GithubActionValidationFiles/fileWithValidationErrorMessages.yaml deleted file mode 100644 index 8ef7d2fed8..0000000000 --- a/GithubActionValidationFiles/fileWithValidationErrorMessages.yaml +++ /dev/null @@ -1,53 +0,0 @@ -openapi: 3.0.0 -info: - description: test - title: test -paths: - /cu: - post: - operationId: savecu - responses: - "200": - content: - application/json: - schema: - $ref: "#/components/schemas/AbTestFoo" - "/bar": - put: - operationId: updateBar - responses: - "200": - description: successful operation - content: - application/json: - schema: - $ref: "#/components/schemas/CoTestBar" -servers: - - url: /foo/bar -components: - schemas: - Thing: - type: object - properties: - moreThings: - type: array - uniqueItems: true - items: - $ref: "#/components/schemas/ThingAs" - ThingAs: - type: object - properties: - concept: - $ref: "#/components/schemas/Thing" - AbTestFoo: - type: object - properties: - moreThings: - type: array - uniqueItems: true - items: - $ref: "#/components/schemas/ThingAs" - readOnly: true - CoTestBar: - allOf: - - $ref: "#/components/schemas/Thing" \ No newline at end of file