mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-12-20 15:17:13 +00:00
[csharp-netcore] add tests for uuid string with pattern (#14411)
* add tests for uuid with pattern in csharp clients * update samples * update samples * update
This commit is contained in:
@@ -848,6 +848,14 @@ paths:
|
||||
- fake
|
||||
description: Test serialization of outer string types
|
||||
operationId: fakeOuterStringSerialize
|
||||
parameters:
|
||||
- name: required_string_uuid
|
||||
in: query
|
||||
description: Required UUID String
|
||||
required: true
|
||||
schema:
|
||||
type: string
|
||||
format: uuid
|
||||
responses:
|
||||
'200':
|
||||
description: Output string
|
||||
@@ -1621,6 +1629,10 @@ components:
|
||||
MixedPropertiesAndAdditionalPropertiesClass:
|
||||
type: object
|
||||
properties:
|
||||
uuid_with_pattern:
|
||||
type: string
|
||||
format: uuid
|
||||
pattern: "[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}"
|
||||
uuid:
|
||||
type: string
|
||||
format: uuid
|
||||
|
||||
Reference in New Issue
Block a user