▾ "schemas" : {
▾ "SimpleApiResponseOfCreateSocialEventResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "data" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/CreateSocialEventResponse"
}
]
}
}
} ,
▾ "CreateSocialEventResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "id" : {
"type" : "string" ,
"format" : "guid"
}
}
} ,
▾ "CreateSocialEventRequestDto" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "previousEventId" : {
"type" : "string" ,
"format" : "guid" ,
"nullable" : true
} ,
▾ "eventId" : {
"type" : "string" ,
"format" : "guid" ,
"nullable" : true
} ,
▾ "socialNetworkId" : {
"type" : "string" ,
"format" : "guid" ,
"nullable" : true
} ,
▾ "personId" : {
"type" : "string" ,
"format" : "guid" ,
"nullable" : true
} ,
▾ "saleId" : {
"type" : "string" ,
"format" : "guid" ,
"nullable" : true
} ,
▾ "userId" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "socialUserProfileId" : {
"type" : "string" ,
"format" : "guid" ,
"nullable" : true
} ,
▾ "source" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "type" : {
"$ref" : "#/components/schemas/SocialNetworkSocialEventType"
} ,
▾ "client" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/CreateSocialEventClientRequestDto"
}
]
} ,
▾ "isEmpty" : {
"type" : "boolean"
}
}
} ,
▾ "SocialNetworkSocialEventType" : {
"type" : "string" ,
"description" : "" ,
▾ "x-enumNames" : [
0 : "AccountCreated" ,
1 : "AccountLinked" ,
2 : "Login" ,
3 : "Share" ,
4 : "AccountCreationRequested" ,
5 : "Visit" ,
6 : "Conversion" ,
7 : "SharePreview" ,
8 : "AttendingLinkedInEvent" ,
9 : "RegisteredViaLinkedInEvent" ,
10 : "LoadedLinkedInEventsWidget"
] ,
▾ "enum" : [
0 : "AccountCreated" ,
1 : "AccountLinked" ,
2 : "Login" ,
3 : "Share" ,
4 : "AccountCreationRequested" ,
5 : "Visit" ,
6 : "Conversion" ,
7 : "SharePreview" ,
8 : "AttendingLinkedInEvent" ,
9 : "RegisteredViaLinkedInEvent" ,
10 : "LoadedLinkedInEventsWidget"
]
} ,
▾ "CreateSocialEventClientRequestDto" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "referer" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "ip" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "userAgent" : {
"type" : "string" ,
"nullable" : true
}
}
} ,
▾ "SimpleApiResponseOfShareResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "data" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/ShareResponse"
}
]
}
}
} ,
▾ "ShareResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "createdShares" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"$ref" : "#/components/schemas/CreateShareResponse"
}
} ,
▾ "problems" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"$ref" : "#/components/schemas/IResult"
}
}
}
} ,
▾ "CreateShareResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "id" : {
"type" : "string" ,
"format" : "guid"
} ,
▾ "socialNetwork" : {
"$ref" : "#/components/schemas/SocialNetworkType"
} ,
▾ "externalId" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "externalUrl" : {
"type" : "string" ,
"nullable" : true
}
}
} ,
▾ "SocialNetworkType" : {
"type" : "string" ,
"description" : "" ,
▾ "x-enumNames" : [
0 : "ADITUS" ,
1 : "LinkedIn" ,
2 : "Xing" ,
3 : "Facebook" ,
4 : "Google" ,
5 : "Twitter" ,
6 : "WhatsApp" ,
7 : "EMail" ,
8 : "YouTube" ,
9 : "TikTok" ,
10 : "Pinterest" ,
11 : "Reddit" ,
12 : "Instagram"
] ,
▾ "enum" : [
0 : "ADITUS" ,
1 : "LinkedIn" ,
2 : "Xing" ,
3 : "Facebook" ,
4 : "Google" ,
5 : "Twitter" ,
6 : "WhatsApp" ,
7 : "EMail" ,
8 : "YouTube" ,
9 : "TikTok" ,
10 : "Pinterest" ,
11 : "Reddit" ,
12 : "Instagram"
]
} ,
▾ "IResult" : {
"type" : "object" ,
"x-abstract" : true ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "code" : {
"type" : "integer" ,
"format" : "int32"
} ,
▾ "name" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "severity" : {
"$ref" : "#/components/schemas/ResultSeverity"
} ,
▾ "category" : {
"$ref" : "#/components/schemas/ResultCategory"
} ,
▾ "message" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "logId" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "details" : {
"type" : "object" ,
"nullable" : true ,
▾ "additionalProperties" : {
}
} ,
▾ "timestamp" : {
"type" : "string" ,
"format" : "date-time"
}
}
} ,
▾ "ResultSeverity" : {
"type" : "string" ,
"description" : "" ,
▾ "x-enumNames" : [
0 : "Low" ,
1 : "Medium" ,
2 : "High"
] ,
▾ "enum" : [
0 : "Low" ,
1 : "Medium" ,
2 : "High"
]
} ,
▾ "ResultCategory" : {
"type" : "string" ,
"description" : "" ,
▾ "x-enumNames" : [
0 : "General" ,
1 : "Buyer" ,
2 : "Registration" ,
3 : "Payment" ,
4 : "Limit" ,
5 : "Voucher" ,
6 : "PromotionCode" ,
7 : "Survey" ,
8 : "Legitimation" ,
9 : "Timeslots" ,
10 : "SocialCards" ,
11 : "Sharing" ,
12 : "Sale" ,
13 : "Ticket" ,
14 : "TicketOwner" ,
15 : "User"
] ,
▾ "enum" : [
0 : "General" ,
1 : "Buyer" ,
2 : "Registration" ,
3 : "Payment" ,
4 : "Limit" ,
5 : "Voucher" ,
6 : "PromotionCode" ,
7 : "Survey" ,
8 : "Legitimation" ,
9 : "Timeslots" ,
10 : "SocialCards" ,
11 : "Sharing" ,
12 : "Sale" ,
13 : "Ticket" ,
14 : "TicketOwner" ,
15 : "User"
]
} ,
▾ "ShareRequestDto" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "title" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "text" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "image" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "socialNetworks" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"$ref" : "#/components/schemas/SocialNetworkType"
}
} ,
▾ "context" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/ShareContext"
}
]
}
}
} ,
▾ "ShareContext" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "user" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "event" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "cart" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "previousSocialEvent" : {
"type" : "string" ,
"format" : "guid" ,
"nullable" : true
} ,
▾ "socialCard" : {
"type" : "string" ,
"format" : "guid" ,
"nullable" : true
}
}
} ,
▾ "SimpleApiResponseOfCreateSocialCardResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "data" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/CreateSocialCardResponse"
}
]
}
}
} ,
▾ "CreateSocialCardResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "id" : {
"type" : "string" ,
"format" : "guid"
} ,
▾ "url" : {
"type" : "string" ,
"nullable" : true
}
}
} ,
▾ "CreateSocialCardRequest" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "event" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "user" : {
"type" : "string" ,
"nullable" : true
}
}
} ,
▾ "SimpleApiResponseOfGetCartsResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "data" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetCartsResponse"
}
]
}
}
} ,
▾ "GetCartsResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "required" : [
0 : "carts"
] ,
▾ "properties" : {
▾ "carts" : {
"type" : "array" ,
▾ "items" : {
"$ref" : "#/components/schemas/GetCartsResponseItem"
}
}
}
} ,
▾ "GetCartsResponseItem" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "id" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "status" : {
"$ref" : "#/components/schemas/CartStatus"
} ,
▾ "event" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetCartEventResponse"
}
]
} ,
▾ "user" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetCartUserResponse"
}
]
} ,
▾ "order" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetCartOrderResponse"
}
]
} ,
▾ "createdAt" : {
"type" : "string" ,
"format" : "date-time"
} ,
▾ "updatedAt" : {
"type" : "string" ,
"format" : "date-time"
}
}
} ,
▾ "CartStatus" : {
"type" : "string" ,
"description" : "" ,
▾ "x-enumNames" : [
0 : "Failed" ,
1 : "Completed" ,
2 : "Active" ,
3 : "Abandoned" ,
4 : "Expired" ,
5 : "Unknown"
] ,
▾ "enum" : [
0 : "Failed" ,
1 : "Completed" ,
2 : "Active" ,
3 : "Abandoned" ,
4 : "Expired" ,
5 : "Unknown"
]
} ,
▾ "GetCartEventResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "required" : [
0 : "id" ,
1 : "name" ,
2 : "year" ,
3 : "number" ,
4 : "slug"
] ,
▾ "properties" : {
▾ "id" : {
"type" : "string" ,
"format" : "guid" ,
"minLength" : 1
} ,
▾ "name" : {
"type" : "string" ,
"minLength" : 1
} ,
▾ "year" : {
"type" : "string" ,
"minLength" : 1
} ,
▾ "number" : {
"type" : "string" ,
"minLength" : 1
} ,
▾ "slug" : {
"type" : "string" ,
"minLength" : 1
}
}
} ,
▾ "GetCartUserResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "id" : {
"type" : "string" ,
"minLength" : 1
} ,
▾ "isVerified" : {
"type" : "boolean"
} ,
▾ "eMail" : {
"type" : "string" ,
"nullable" : true
}
}
} ,
▾ "GetCartOrderResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "id" : {
"type" : "string" ,
"format" : "guid"
} ,
▾ "orderDate" : {
"type" : "string" ,
"format" : "date-time"
} ,
▾ "number" : {
"type" : "string" ,
"nullable" : true
}
}
} ,
▾ "SimpleApiResponseOfGetOrderResponseOf" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "data" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"$ref" : "#/components/schemas/GetOrderResponse"
}
}
}
} ,
▾ "GetOrderResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "required" : [
0 : "id" ,
1 : "number" ,
2 : "orderedAt" ,
3 : "orderedBy" ,
4 : "isThirdPartyPurchase" ,
5 : "status" ,
6 : "event" ,
7 : "shipping"
] ,
▾ "properties" : {
▾ "id" : {
"type" : "string" ,
"format" : "guid" ,
"minLength" : 1
} ,
▾ "number" : {
"type" : "string" ,
"minLength" : 1
} ,
▾ "orderedAt" : {
"type" : "string" ,
"format" : "date-time" ,
"minLength" : 1
} ,
▾ "orderedBy" : {
"$ref" : "#/components/schemas/GetOrderBuyerResponse"
} ,
▾ "isThirdPartyPurchase" : {
"type" : "boolean"
} ,
▾ "price" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetOrderPriceResponse"
}
]
} ,
▾ "status" : {
"$ref" : "#/components/schemas/OrderStatus"
} ,
▾ "event" : {
"$ref" : "#/components/schemas/GetOrderEventResponse"
} ,
▾ "shipping" : {
"$ref" : "#/components/schemas/GetOrderShippingResponse"
} ,
▾ "payment" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetOrderDetailPaymentResponse"
}
]
}
}
} ,
▾ "GetOrderBuyerResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "required" : [
0 : "salutation" ,
1 : "firstName" ,
2 : "lastName" ,
3 : "email" ,
4 : "company" ,
5 : "address"
] ,
▾ "properties" : {
▾ "salutation" : {
"type" : "string" ,
"minLength" : 1
} ,
▾ "firstName" : {
"type" : "string" ,
"minLength" : 1
} ,
▾ "lastName" : {
"type" : "string" ,
"minLength" : 1
} ,
▾ "email" : {
"type" : "string" ,
"format" : "email" ,
"minLength" : 1
} ,
▾ "company" : {
"type" : "string" ,
"minLength" : 1
} ,
▾ "vatId" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "address" : {
"$ref" : "#/components/schemas/GetOrderBuyerAddressResponse"
}
}
} ,
▾ "GetOrderBuyerAddressResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "required" : [
0 : "street" ,
1 : "houseNumber" ,
2 : "postalCode" ,
3 : "city" ,
4 : "country"
] ,
▾ "properties" : {
▾ "street" : {
"type" : "string" ,
"minLength" : 1
} ,
▾ "houseNumber" : {
"type" : "string" ,
"minLength" : 1
} ,
▾ "postalCode" : {
"type" : "string" ,
"minLength" : 1
} ,
▾ "city" : {
"type" : "string" ,
"minLength" : 1
} ,
▾ "county" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "country" : {
"type" : "string" ,
"minLength" : 1
}
}
} ,
▾ "GetOrderPriceResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "required" : [
0 : "grossPrice" ,
1 : "currency"
] ,
▾ "properties" : {
▾ "grossPrice" : {
"type" : "number" ,
"format" : "decimal"
} ,
▾ "netPrice" : {
"type" : "number" ,
"format" : "decimal"
} ,
▾ "tax" : {
"type" : "number" ,
"format" : "decimal"
} ,
▾ "currency" : {
"type" : "string" ,
"minLength" : 1
}
}
} ,
▾ "OrderStatus" : {
"type" : "string" ,
"description" : "" ,
▾ "x-enumNames" : [
0 : "Pending" ,
1 : "Completed" ,
2 : "Revoked" ,
3 : "Error" ,
4 : "Canceled" ,
5 : "Processing"
] ,
▾ "enum" : [
0 : "Pending" ,
1 : "Completed" ,
2 : "Revoked" ,
3 : "Error" ,
4 : "Canceled" ,
5 : "Processing"
]
} ,
▾ "GetOrderEventResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "required" : [
0 : "id" ,
1 : "name" ,
2 : "year"
] ,
▾ "properties" : {
▾ "id" : {
"type" : "string" ,
"format" : "guid" ,
"minLength" : 1
} ,
▾ "name" : {
"type" : "string" ,
"minLength" : 1
} ,
▾ "year" : {
"type" : "string" ,
"minLength" : 1
} ,
▾ "icon" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/ThemeImage"
}
]
} ,
▾ "logo" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/ThemeImage"
}
]
} ,
▾ "isActive" : {
"type" : "boolean"
} ,
▾ "slug" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "dateTimeSpan" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetDateTimeSpanResponse"
}
]
}
}
} ,
▾ "ThemeImage" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "key" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "uri" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "type" : {
"$ref" : "#/components/schemas/ThemeImageType"
} ,
▾ "background" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/ThemeImageAppearanceBackground"
}
]
} ,
▾ "size" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/ThemeImageAppearanceSize"
}
]
}
}
} ,
▾ "ThemeImageType" : {
"type" : "string" ,
"description" : "" ,
▾ "x-enumNames" : [
0 : "Logo" ,
1 : "Icon" ,
2 : "Banner" ,
3 : "Background" ,
4 : "BannerSecondary"
] ,
▾ "enum" : [
0 : "Logo" ,
1 : "Icon" ,
2 : "Banner" ,
3 : "Background" ,
4 : "BannerSecondary"
]
} ,
▾ "ThemeImageAppearanceBackground" : {
"type" : "string" ,
"description" : "" ,
▾ "x-enumNames" : [
0 : "Dark" ,
1 : "Light"
] ,
▾ "enum" : [
0 : "Dark" ,
1 : "Light"
]
} ,
▾ "ThemeImageAppearanceSize" : {
"type" : "string" ,
"description" : "" ,
▾ "x-enumNames" : [
0 : "Large" ,
1 : "Small" ,
2 : "Medium"
] ,
▾ "enum" : [
0 : "Large" ,
1 : "Small" ,
2 : "Medium"
]
} ,
▾ "GetDateTimeSpanResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "required" : [
0 : "start" ,
1 : "end"
] ,
▾ "properties" : {
▾ "start" : {
"type" : "string" ,
"format" : "date-time" ,
"minLength" : 1
} ,
▾ "end" : {
"type" : "string" ,
"format" : "date-time" ,
"minLength" : 1
}
}
} ,
▾ "GetOrderShippingResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "shippedTo" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "shippedAt" : {
"type" : "string" ,
"format" : "date-time"
} ,
▾ "type" : {
"$ref" : "#/components/schemas/ShippingType"
} ,
▾ "fee" : {
"type" : "number" ,
"format" : "decimal"
}
}
} ,
▾ "ShippingType" : {
"type" : "string" ,
"description" : "" ,
"x-enumFlags" : true ,
▾ "x-enumNames" : [
0 : "None" ,
1 : "NoShipping" ,
2 : "OnSiteEmission" ,
3 : "Email" ,
4 : "Postal" ,
5 : "External" ,
6 : "EmailAfterLegitimation"
] ,
▾ "enum" : [
0 : "None" ,
1 : "NoShipping" ,
2 : "OnSiteEmission" ,
3 : "Email" ,
4 : "Postal" ,
5 : "External" ,
6 : "EmailAfterLegitimation"
]
} ,
▾ "GetOrderDetailPaymentResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "providerName" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "status" : {
"$ref" : "#/components/schemas/PaymentStatus"
} ,
▾ "settledAt" : {
"type" : "string" ,
"format" : "date-time"
}
}
} ,
▾ "PaymentStatus" : {
"type" : "string" ,
"description" : "" ,
▾ "x-enumNames" : [
0 : "Paid" ,
1 : "Canceled" ,
2 : "Reserved"
] ,
▾ "enum" : [
0 : "Paid" ,
1 : "Canceled" ,
2 : "Reserved"
]
} ,
▾ "SimpleApiResponseOfGetOrderDetailResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "data" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetOrderDetailResponse"
}
]
}
}
} ,
▾ "GetOrderDetailResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "required" : [
0 : "id" ,
1 : "number" ,
2 : "orderedAt" ,
3 : "orderedBy" ,
4 : "isThirdPartyPurchase" ,
5 : "status" ,
6 : "event" ,
7 : "shipping" ,
8 : "items" ,
9 : "receipts"
] ,
▾ "properties" : {
▾ "id" : {
"type" : "string" ,
"format" : "guid" ,
"minLength" : 1
} ,
▾ "number" : {
"type" : "string" ,
"minLength" : 1
} ,
▾ "orderedAt" : {
"type" : "string" ,
"format" : "date-time" ,
"minLength" : 1
} ,
▾ "orderedBy" : {
"$ref" : "#/components/schemas/GetOrderBuyerResponse"
} ,
▾ "isThirdPartyPurchase" : {
"type" : "boolean"
} ,
▾ "price" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetOrderPriceResponse"
}
]
} ,
▾ "status" : {
"$ref" : "#/components/schemas/OrderStatus"
} ,
▾ "event" : {
"$ref" : "#/components/schemas/GetOrderEventResponse"
} ,
▾ "shipping" : {
"$ref" : "#/components/schemas/GetOrderShippingResponse"
} ,
▾ "payment" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetOrderDetailPaymentResponse"
}
]
} ,
▾ "items" : {
"type" : "array" ,
▾ "items" : {
"$ref" : "#/components/schemas/GetOrderDetailItemResponse"
}
} ,
▾ "receipts" : {
"type" : "array" ,
▾ "items" : {
"$ref" : "#/components/schemas/GetOrderDetailReceiptResponse"
}
} ,
▾ "legitimations" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"$ref" : "#/components/schemas/GetLegitimationResponse"
}
} ,
▾ "isRegistrationOnly" : {
"type" : "boolean"
} ,
▾ "canChangeRegistrationData" : {
"type" : "boolean"
} ,
▾ "isVerifiedOrder" : {
"type" : "boolean"
}
}
} ,
▾ "GetOrderDetailItemResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "required" : [
0 : "id" ,
1 : "article" ,
2 : "promotionCodes" ,
3 : "owner" ,
4 : "status"
] ,
▾ "properties" : {
▾ "id" : {
"type" : "string" ,
"format" : "guid" ,
"minLength" : 1
} ,
▾ "article" : {
"$ref" : "#/components/schemas/GetOrderDetailItemArticleResponse"
} ,
▾ "price" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetOrderDetailItemPriceResponse"
}
]
} ,
▾ "promotionCodes" : {
"type" : "array" ,
▾ "items" : {
"$ref" : "#/components/schemas/GetOrderDetailItemPromotionCodeResponse"
}
} ,
▾ "links" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"$ref" : "#/components/schemas/GetOrderDetailItemLinkResponse"
}
} ,
▾ "owner" : {
"$ref" : "#/components/schemas/GetOrderDetailOwnerResponse"
} ,
▾ "status" : {
"$ref" : "#/components/schemas/OrderItemStatus"
} ,
▾ "timeslots" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"$ref" : "#/components/schemas/BookedTimeslotDay"
}
} ,
▾ "ticket" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetOrderDetailTicketResponse"
}
]
}
}
} ,
▾ "GetOrderDetailItemArticleResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "required" : [
0 : "id" ,
1 : "name" ,
2 : "price" ,
3 : "sort"
] ,
▾ "properties" : {
▾ "id" : {
"type" : "string" ,
"format" : "guid" ,
"minLength" : 1
} ,
▾ "name" : {
"type" : "string" ,
"minLength" : 1
} ,
▾ "internalName" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "description" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "type" : {
"$ref" : "#/components/schemas/TicketType"
} ,
▾ "ticketValidity" : {
"$ref" : "#/components/schemas/TicketValidityType"
} ,
▾ "articleNumber" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "category" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "price" : {
"$ref" : "#/components/schemas/GetOrderPriceResponse"
} ,
▾ "sort" : {
"type" : "integer" ,
"format" : "int32"
} ,
▾ "image" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/ThemeImage"
}
]
}
}
} ,
▾ "TicketType" : {
"type" : "string" ,
"description" : "" ,
"x-enumFlags" : true ,
▾ "x-enumNames" : [
0 : "None" ,
1 : "VisitorTicket" ,
2 : "ExhibitorTicket" ,
3 : "ServiceTicket" ,
4 : "CashTicket" ,
5 : "PressTicket" ,
6 : "ParkingTicket" ,
7 : "SpecialParkingTicket" ,
8 : "Badge" ,
9 : "CongressTicket" ,
10 : "GuidedTour"
] ,
▾ "enum" : [
0 : "None" ,
1 : "VisitorTicket" ,
2 : "ExhibitorTicket" ,
3 : "ServiceTicket" ,
4 : "CashTicket" ,
5 : "PressTicket" ,
6 : "ParkingTicket" ,
7 : "SpecialParkingTicket" ,
8 : "Badge" ,
9 : "CongressTicket" ,
10 : "GuidedTour"
]
} ,
▾ "TicketValidityType" : {
"type" : "string" ,
"description" : "" ,
"x-enumFlags" : true ,
▾ "x-enumNames" : [
0 : "None" ,
1 : "OneDay" ,
2 : "MultipleDays" ,
3 : "MultipleDaysInSeries" ,
4 : "AllDays"
] ,
▾ "enum" : [
0 : "None" ,
1 : "OneDay" ,
2 : "MultipleDays" ,
3 : "MultipleDaysInSeries" ,
4 : "AllDays"
]
} ,
▾ "GetOrderDetailItemPriceResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "required" : [
0 : "grossPrice" ,
1 : "currency"
] ,
▾ "properties" : {
▾ "grossPrice" : {
"type" : "number" ,
"format" : "decimal"
} ,
▾ "netPrice" : {
"type" : "number" ,
"format" : "decimal"
} ,
▾ "tax" : {
"type" : "number" ,
"format" : "decimal"
} ,
▾ "currency" : {
"type" : "string" ,
"minLength" : 1
}
}
} ,
▾ "GetOrderDetailItemPromotionCodeResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "required" : [
0 : "code"
] ,
▾ "properties" : {
▾ "code" : {
"type" : "string" ,
"minLength" : 1
}
}
} ,
▾ "GetOrderDetailItemLinkResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "mediaType" : {
"$ref" : "#/components/schemas/OrderItemMediaType"
} ,
▾ "linkType" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/OrderItemWalletLinkType"
}
]
} ,
▾ "url" : {
"type" : "string" ,
"nullable" : true
}
}
} ,
▾ "OrderItemMediaType" : {
"type" : "string" ,
"description" : "" ,
▾ "x-enumNames" : [
0 : "PrintAtHomeTicket" ,
1 : "WalletTicket" ,
2 : "MobileTicket" ,
3 : "VirtualAccess"
] ,
▾ "enum" : [
0 : "PrintAtHomeTicket" ,
1 : "WalletTicket" ,
2 : "MobileTicket" ,
3 : "VirtualAccess"
]
} ,
▾ "OrderItemWalletLinkType" : {
"type" : "string" ,
"description" : "" ,
▾ "x-enumNames" : [
0 : "Passbook" ,
1 : "GoogleWallet"
] ,
▾ "enum" : [
0 : "Passbook" ,
1 : "GoogleWallet"
]
} ,
▾ "GetOrderDetailOwnerResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "required" : [
0 : "salutation" ,
1 : "firstName" ,
2 : "lastName" ,
3 : "email"
] ,
▾ "properties" : {
▾ "salutation" : {
"type" : "string" ,
"minLength" : 1
} ,
▾ "firstName" : {
"type" : "string" ,
"minLength" : 1
} ,
▾ "lastName" : {
"type" : "string" ,
"minLength" : 1
} ,
▾ "email" : {
"type" : "string" ,
"format" : "email" ,
"minLength" : 1
}
}
} ,
▾ "OrderItemStatus" : {
"type" : "string" ,
"description" : "" ,
▾ "x-enumNames" : [
0 : "NotRegistered" ,
1 : "Registered" ,
2 : "Blocked" ,
3 : "NotRegisteredByThirdPerson"
] ,
▾ "enum" : [
0 : "NotRegistered" ,
1 : "Registered" ,
2 : "Blocked" ,
3 : "NotRegisteredByThirdPerson"
]
} ,
▾ "BookedTimeslotDay" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "required" : [
0 : "id" ,
1 : "date" ,
2 : "printText"
] ,
▾ "properties" : {
▾ "id" : {
"type" : "string" ,
"format" : "guid" ,
"minLength" : 1
} ,
▾ "date" : {
"type" : "string" ,
"minLength" : 1
} ,
▾ "printText" : {
"type" : "string" ,
"minLength" : 1
} ,
▾ "timeRange" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/BookedTimeslotTimeRange"
}
]
}
}
} ,
▾ "BookedTimeslotTimeRange" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "required" : [
0 : "id" ,
1 : "start" ,
2 : "end"
] ,
▾ "properties" : {
▾ "id" : {
"type" : "string" ,
"format" : "guid" ,
"minLength" : 1
} ,
▾ "start" : {
"type" : "string" ,
"minLength" : 1
} ,
▾ "end" : {
"type" : "string" ,
"minLength" : 1
}
}
} ,
▾ "GetOrderDetailTicketResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "barcode" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "type" : {
"$ref" : "#/components/schemas/TicketType"
}
}
} ,
▾ "GetOrderDetailReceiptResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "type" : {
"$ref" : "#/components/schemas/ReceiptType"
} ,
▾ "number" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "createdAt" : {
"type" : "string" ,
"format" : "date-time"
} ,
▾ "url" : {
"type" : "string" ,
"nullable" : true
}
}
} ,
▾ "ReceiptType" : {
"type" : "string" ,
"description" : "" ,
▾ "x-enumNames" : [
0 : "Bill" ,
1 : "BillCorrection" ,
2 : "Cancellation" ,
3 : "Quote" ,
4 : "OrderConfirmation" ,
5 : "DeliveryNote" ,
6 : "CashRegisterReceipt" ,
7 : "CancellationCorrection"
] ,
▾ "enum" : [
0 : "Bill" ,
1 : "BillCorrection" ,
2 : "Cancellation" ,
3 : "Quote" ,
4 : "OrderConfirmation" ,
5 : "DeliveryNote" ,
6 : "CashRegisterReceipt" ,
7 : "CancellationCorrection"
]
} ,
▾ "GetLegitimationResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "id" : {
"type" : "string" ,
"format" : "guid"
} ,
▾ "number" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "category" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/LegitimationCategory"
}
]
} ,
▾ "proofs" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"$ref" : "#/components/schemas/LegitimationProof"
}
} ,
▾ "status" : {
"$ref" : "#/components/schemas/LegitimationStatus"
} ,
▾ "person" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/LegitimationPerson"
}
]
} ,
▾ "createdOn" : {
"type" : "string" ,
"format" : "date-time"
} ,
▾ "event" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetLegitimationEventResponse"
}
]
}
}
} ,
▾ "LegitimationCategory" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "id" : {
"type" : "string" ,
"format" : "guid"
} ,
▾ "name" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "requiredVerifications" : {
"type" : "integer" ,
"format" : "byte"
}
}
} ,
▾ "LegitimationProof" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "id" : {
"type" : "string" ,
"format" : "guid"
} ,
▾ "type" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/LegitimationProofType"
}
]
} ,
▾ "documentType" : {
"$ref" : "#/components/schemas/LegitimationProofDocumentType"
} ,
▾ "value" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "status" : {
"$ref" : "#/components/schemas/LegitimationProofStatus"
} ,
▾ "metadata" : {
"type" : "object" ,
"nullable" : true ,
▾ "additionalProperties" : {
}
}
}
} ,
▾ "LegitimationProofType" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "id" : {
"type" : "string" ,
"format" : "guid"
} ,
▾ "name" : {
"type" : "string" ,
"nullable" : true
}
}
} ,
▾ "LegitimationProofDocumentType" : {
"type" : "string" ,
"description" : "" ,
"x-enumFlags" : true ,
▾ "x-enumNames" : [
0 : "Url" ,
1 : "File" ,
2 : "Text"
] ,
▾ "enum" : [
0 : "Url" ,
1 : "File" ,
2 : "Text"
]
} ,
▾ "LegitimationProofStatus" : {
"type" : "string" ,
"description" : "" ,
▾ "x-enumNames" : [
0 : "New" ,
1 : "Accepted" ,
2 : "Rejected"
] ,
▾ "enum" : [
0 : "New" ,
1 : "Accepted" ,
2 : "Rejected"
]
} ,
▾ "LegitimationStatus" : {
"type" : "string" ,
"description" : "" ,
▾ "x-enumNames" : [
0 : "New" ,
1 : "Accepted" ,
2 : "Denied" ,
3 : "InProgress" ,
4 : "OnHold" ,
5 : "Incomplete" ,
6 : "FollowUp" ,
7 : "WaitForVerification"
] ,
▾ "enum" : [
0 : "New" ,
1 : "Accepted" ,
2 : "Denied" ,
3 : "InProgress" ,
4 : "OnHold" ,
5 : "Incomplete" ,
6 : "FollowUp" ,
7 : "WaitForVerification"
]
} ,
▾ "LegitimationPerson" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "id" : {
"type" : "string" ,
"format" : "guid"
} ,
▾ "firstName" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "lastName" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "email" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "spokenLanguage" : {
"type" : "string" ,
"nullable" : true
}
}
} ,
▾ "GetLegitimationEventResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "required" : [
0 : "id" ,
1 : "name" ,
2 : "year"
] ,
▾ "properties" : {
▾ "id" : {
"type" : "string" ,
"format" : "guid" ,
"minLength" : 1
} ,
▾ "name" : {
"type" : "string" ,
"minLength" : 1
} ,
▾ "year" : {
"type" : "string" ,
"minLength" : 1
} ,
▾ "icon" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/ThemeImage"
}
]
} ,
▾ "logo" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/ThemeImage"
}
]
} ,
▾ "isActive" : {
"type" : "boolean"
} ,
▾ "slug" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "dateTimeSpan" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetDateTimeSpanResponse"
}
]
}
}
} ,
▾ "SimpleApiResponseOfGetCartResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "data" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetCartResponse"
}
]
}
}
} ,
▾ "GetCartResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "required" : [
0 : "id" ,
1 : "expiryTime" ,
2 : "event" ,
3 : "totals"
] ,
▾ "properties" : {
▾ "id" : {
"type" : "string" ,
"minLength" : 1
} ,
▾ "expiryTime" : {
"type" : "string" ,
"format" : "date-time" ,
"minLength" : 1
} ,
▾ "user" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetCartUserResponse"
}
]
} ,
▾ "event" : {
"$ref" : "#/components/schemas/GetCartEventResponse"
} ,
▾ "promotionCodes" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"$ref" : "#/components/schemas/GetCartPromotionCodeResponse"
}
} ,
▾ "items" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"$ref" : "#/components/schemas/GetCartItemResponse"
}
} ,
▾ "totals" : {
"type" : "array" ,
▾ "items" : {
"$ref" : "#/components/schemas/GetCartPriceResponse"
}
} ,
▾ "isImmutable" : {
"type" : "boolean"
} ,
▾ "isPaymentImmutable" : {
"type" : "boolean"
} ,
▾ "isLegitimationImmutable" : {
"type" : "boolean"
} ,
▾ "isRegistrationImmutable" : {
"type" : "boolean"
} ,
▾ "isAmountImmutable" : {
"type" : "boolean"
} ,
▾ "isRegistrationOnly" : {
"type" : "boolean"
} ,
▾ "isRegistrationRequired" : {
"type" : "boolean"
} ,
▾ "isLegitimationRequired" : {
"type" : "boolean"
} ,
▾ "isPaymentRequired" : {
"type" : "boolean"
} ,
▾ "paymentProvider" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetPaymentProviderByCartResponse"
}
]
} ,
▾ "buyerPerson" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetCartBuyerPersonResponse"
}
]
} ,
▾ "billingPerson" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/Person"
}
]
} ,
▾ "order" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetCartOrderResponse"
}
]
} ,
▾ "legitimations" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"$ref" : "#/components/schemas/GetCartLegitimationResponse"
}
} ,
▾ "properties" : {
"type" : "object" ,
"nullable" : true ,
▾ "additionalProperties" : {
"type" : "string"
}
} ,
▾ "status" : {
"$ref" : "#/components/schemas/CartStatus"
} ,
▾ "actions" : {
"type" : "array" ,
"nullable" : true ,
} ,
▾ "problems" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"$ref" : "#/components/schemas/GetCartProblemResponse"
}
} ,
▾ "culture" : {
"type" : "string" ,
"nullable" : true
}
}
} ,
▾ "GetCartPromotionCodeResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "required" : [
0 : "code"
] ,
▾ "properties" : {
▾ "code" : {
"type" : "string" ,
"minLength" : 1
}
}
} ,
▾ "GetCartItemResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "required" : [
0 : "id" ,
1 : "article"
] ,
▾ "properties" : {
▾ "id" : {
"type" : "string" ,
"format" : "guid" ,
"minLength" : 1
} ,
▾ "orderId" : {
"type" : "string" ,
"format" : "guid" ,
"nullable" : true
} ,
▾ "article" : {
"$ref" : "#/components/schemas/GetCartArticleResponse"
} ,
▾ "promotionCodes" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"$ref" : "#/components/schemas/GetCartPromotionCodeResponse"
}
} ,
▾ "voucherCode" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "price" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetPriceResponse"
}
]
} ,
▾ "registration" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetCartItemRegistrationResponse"
}
]
} ,
▾ "legitimation" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetCartItemLegitimationResponse"
}
]
} ,
▾ "associatedPerson" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/AssociatedPerson"
}
]
} ,
▾ "timeslots" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetCartItemTimeslotsResponse"
}
]
}
}
} ,
▾ "GetCartArticleResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "required" : [
0 : "id" ,
1 : "name" ,
2 : "sort"
] ,
▾ "properties" : {
▾ "id" : {
"type" : "string" ,
"format" : "guid" ,
"minLength" : 1
} ,
▾ "name" : {
"type" : "string" ,
"minLength" : 1
} ,
▾ "internalName" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "description" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "sort" : {
"type" : "integer" ,
"format" : "int32"
} ,
▾ "prices" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"$ref" : "#/components/schemas/GetCartArticlePriceResponse"
}
} ,
▾ "image" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/ThemeImage"
}
]
} ,
▾ "type" : {
"$ref" : "#/components/schemas/TicketType"
} ,
▾ "ticketValidity" : {
"$ref" : "#/components/schemas/TicketValidityType"
} ,
▾ "articleNumber" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "category" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "legitimationCategory" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetLegitimationCategoryResponse"
}
]
} ,
▾ "configuration" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetArticleConfigurationResponse"
}
]
} ,
▾ "articleGroup" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetCartArticleGroupResponse"
}
]
}
}
} ,
▾ "GetCartArticlePriceResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "price" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetPriceResponse"
}
]
} ,
▾ "originalPrice" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetPriceResponse"
}
]
}
}
} ,
▾ "GetPriceResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "required" : [
0 : "price" ,
1 : "grossPrice" ,
2 : "tax" ,
3 : "taxRate" ,
4 : "currency"
] ,
▾ "properties" : {
▾ "price" : {
"type" : "number" ,
"format" : "decimal"
} ,
▾ "grossPrice" : {
"type" : "number" ,
"format" : "decimal"
} ,
▾ "tax" : {
"type" : "number" ,
"format" : "decimal"
} ,
▾ "taxRate" : {
"type" : "number" ,
"format" : "decimal"
} ,
▾ "currency" : {
"type" : "string" ,
"minLength" : 1
}
}
} ,
▾ "GetLegitimationCategoryResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "id" : {
"type" : "string" ,
"format" : "guid"
} ,
▾ "name" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "description" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "availableProofTypes" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"$ref" : "#/components/schemas/GetLegitimationProofTypeResponse"
}
} ,
▾ "proofUploadLimit" : {
"type" : "integer" ,
"format" : "int32"
}
}
} ,
▾ "GetLegitimationProofTypeResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "id" : {
"type" : "string" ,
"format" : "guid"
} ,
▾ "name" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "description" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "isRequired" : {
"type" : "boolean"
} ,
▾ "availableDocumentTypes" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"$ref" : "#/components/schemas/DocumentType"
}
}
}
} ,
▾ "DocumentType" : {
"type" : "string" ,
"description" : "" ,
▾ "x-enumNames" : [
0 : "Url" ,
1 : "File" ,
2 : "Text"
] ,
▾ "enum" : [
0 : "Url" ,
1 : "File" ,
2 : "Text"
]
} ,
▾ "GetArticleConfigurationResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "showRemainingAmount" : {
"type" : "boolean"
} ,
▾ "showRemainingAmountPerTimeslot" : {
"type" : "boolean"
} ,
▾ "showIfSoldOut" : {
"type" : "boolean"
} ,
▾ "soldOutText" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "maxLengthOfDescription" : {
"type" : "integer" ,
"format" : "int32"
} ,
▾ "maxNumberOfTicketsPerSale" : {
"type" : "integer" ,
"format" : "int32" ,
"nullable" : true
} ,
▾ "minNumberOfTicketsPerSale" : {
"type" : "integer" ,
"format" : "int32" ,
"nullable" : true
} ,
▾ "isInvitationEmailAddressChangePossible" : {
"type" : "boolean" ,
"nullable" : true
}
}
} ,
▾ "GetCartArticleGroupResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "id" : {
"type" : "string" ,
"format" : "guid"
} ,
▾ "name" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "sort" : {
"type" : "integer" ,
"format" : "int32"
} ,
▾ "configuration" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetCartArticleGroupConfigurationResponse"
}
]
}
}
} ,
▾ "GetCartArticleGroupConfigurationResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "maxNumberOfTicketsPerSale" : {
"type" : "integer" ,
"format" : "int32" ,
"nullable" : true
} ,
▾ "isExclusiveAssortment" : {
"type" : "boolean"
}
}
} ,
▾ "GetCartItemRegistrationResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "isRequired" : {
"type" : "boolean"
} ,
▾ "isPossible" : {
"type" : "boolean"
} ,
▾ "types" : {
"type" : "object" ,
"nullable" : true ,
▾ "x-dictionaryKey" : {
"$ref" : "#/components/schemas/RegistrationType"
} ,
▾ "additionalProperties" : {
"$ref" : "#/components/schemas/RegistrationTypeConfiguration"
}
} ,
▾ "data" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/CartItemRegistration"
}
]
} ,
▾ "isValid" : {
"type" : "boolean"
} ,
▾ "problems" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"$ref" : "#/components/schemas/IResult"
}
}
}
} ,
▾ "RegistrationType" : {
"type" : "string" ,
"description" : "" ,
▾ "x-enumNames" : [
0 : "Self" ,
1 : "ThirdPerson"
] ,
▾ "enum" : [
0 : "self" ,
1 : "thirdPerson"
]
} ,
▾ "RegistrationTypeConfiguration" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "isPossible" : {
"type" : "boolean"
} ,
▾ "survey" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "hasToBeCompletedByTicketOwnerHimself" : {
"type" : "boolean"
}
}
} ,
▾ "CartItemRegistration" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "required" : [
0 : "type"
] ,
▾ "properties" : {
▾ "type" : {
"$ref" : "#/components/schemas/RegistrationType"
} ,
▾ "referencedSurveyResponse" : {
"type" : "string" ,
"format" : "guid" ,
"nullable" : true
} ,
▾ "answers" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"$ref" : "#/components/schemas/CartItemSurveyAnswer"
}
} ,
▾ "hasInformation" : {
"type" : "boolean"
}
}
} ,
▾ "CartItemSurveyAnswer" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "bindingMember" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "value" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "isReadOnly" : {
"type" : "boolean"
}
}
} ,
▾ "GetCartItemLegitimationResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "isRequired" : {
"type" : "boolean"
} ,
▾ "isIncomplete" : {
"type" : "boolean"
} ,
▾ "id" : {
"type" : "string" ,
"nullable" : true
}
}
} ,
▾ "AssociatedPerson" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "salutation" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "firstName" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "lastName" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "email" : {
"type" : "string" ,
"nullable" : true
}
}
} ,
▾ "GetCartItemTimeslotsResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "isEnabled" : {
"type" : "boolean"
} ,
▾ "isValid" : {
"type" : "boolean"
} ,
▾ "minimumNumberOfBookings" : {
"type" : "integer" ,
"format" : "int32" ,
"nullable" : true
} ,
▾ "maximumNumberOfBookings" : {
"type" : "integer" ,
"format" : "int32" ,
"nullable" : true
} ,
▾ "bookings" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"$ref" : "#/components/schemas/BookedTimeslotDay"
}
} ,
▾ "days" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"$ref" : "#/components/schemas/AvailableTimeslotDay"
}
}
}
} ,
▾ "AvailableTimeslotDay" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "required" : [
0 : "id" ,
1 : "date"
] ,
▾ "properties" : {
▾ "id" : {
"type" : "string" ,
"format" : "guid" ,
"minLength" : 1
} ,
▾ "date" : {
"type" : "string" ,
"minLength" : 1
} ,
▾ "isAvailableForBooking" : {
"type" : "boolean"
} ,
▾ "isBookingLimited" : {
"type" : "boolean"
} ,
▾ "remainingAmount" : {
"type" : "integer" ,
"format" : "int32" ,
"nullable" : true
} ,
▾ "isExpired" : {
"type" : "boolean"
} ,
▾ "isSoldOut" : {
"type" : "boolean"
} ,
▾ "timeRanges" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"$ref" : "#/components/schemas/AvailableTimeslotTimeRange"
}
}
}
} ,
▾ "AvailableTimeslotTimeRange" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "required" : [
0 : "id" ,
1 : "start" ,
2 : "end"
] ,
▾ "properties" : {
▾ "id" : {
"type" : "string" ,
"format" : "guid" ,
"minLength" : 1
} ,
▾ "start" : {
"type" : "string" ,
"minLength" : 1
} ,
▾ "end" : {
"type" : "string" ,
"minLength" : 1
} ,
▾ "isAvailableForBooking" : {
"type" : "boolean"
} ,
▾ "isBookingLimited" : {
"type" : "boolean"
} ,
▾ "remainingAmount" : {
"type" : "integer" ,
"format" : "int32" ,
"nullable" : true
} ,
▾ "isExpired" : {
"type" : "boolean"
} ,
▾ "isSoldOut" : {
"type" : "boolean"
}
}
} ,
▾ "GetCartPriceResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "required" : [
0 : "price" ,
1 : "grossPrice" ,
2 : "tax" ,
3 : "taxRate" ,
4 : "currency" ,
5 : "original"
] ,
▾ "properties" : {
▾ "price" : {
"type" : "number" ,
"format" : "decimal"
} ,
▾ "grossPrice" : {
"type" : "number" ,
"format" : "decimal"
} ,
▾ "tax" : {
"type" : "number" ,
"format" : "decimal"
} ,
▾ "taxRate" : {
"type" : "number" ,
"format" : "decimal"
} ,
▾ "currency" : {
"type" : "string" ,
"minLength" : 1
} ,
▾ "original" : {
"$ref" : "#/components/schemas/GetPriceResponse"
}
}
} ,
▾ "GetPaymentProviderByCartResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "required" : [
0 : "id" ,
1 : "name" ,
2 : "paymentMethods" ,
3 : "sort"
] ,
▾ "properties" : {
▾ "id" : {
"type" : "string" ,
"format" : "guid" ,
"minLength" : 1
} ,
▾ "name" : {
"type" : "string" ,
"minLength" : 1
} ,
▾ "description" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "paymentMethods" : {
"type" : "array" ,
▾ "items" : {
"$ref" : "#/components/schemas/GetPaymentMethodResponse"
}
} ,
▾ "configuration" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetPaymentProviderConfigurationResponse"
}
]
} ,
▾ "sort" : {
"type" : "integer" ,
"format" : "int32"
} ,
▾ "isDefault" : {
"type" : "boolean"
} ,
▾ "isExpressCheckoutSupported" : {
"type" : "boolean"
} ,
▾ "expiresAt" : {
"type" : "string" ,
"format" : "date-time" ,
"nullable" : true
} ,
▾ "redirectUrl" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "redirectRequired" : {
"type" : "boolean" ,
"nullable" : true
} ,
▾ "transactionToken" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "isExpressCheckoutInitialized" : {
"type" : "boolean"
}
}
} ,
▾ "GetPaymentMethodResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "required" : [
0 : "methodType"
] ,
▾ "properties" : {
▾ "methodType" : {
"$ref" : "#/components/schemas/PaymentMethodType"
}
}
} ,
▾ "PaymentMethodType" : {
"type" : "string" ,
"description" : "" ,
"x-enumFlags" : true ,
▾ "x-enumNames" : [
0 : "Visa" ,
1 : "Mastercard" ,
2 : "PayPal" ,
3 : "Amex" ,
4 : "Paylater" ,
5 : "Bancontact" ,
6 : "Blik" ,
7 : "Eps" ,
8 : "Giropay" ,
9 : "Ideal" ,
10 : "Mercadopago" ,
11 : "Mybank" ,
12 : "P24" ,
13 : "Sepa" ,
14 : "Sofort" ,
15 : "Venmo" ,
16 : "Diners" ,
17 : "Postfinance" ,
18 : "Twint" ,
19 : "UnionPay" ,
20 : "ApplePay" ,
21 : "GooglePay" ,
22 : "Invoice" ,
23 : "Prepayment"
] ,
▾ "enum" : [
0 : "Visa" ,
1 : "Mastercard" ,
2 : "PayPal" ,
3 : "Amex" ,
4 : "Paylater" ,
5 : "Bancontact" ,
6 : "Blik" ,
7 : "Eps" ,
8 : "Giropay" ,
9 : "Ideal" ,
10 : "Mercadopago" ,
11 : "Mybank" ,
12 : "P24" ,
13 : "Sepa" ,
14 : "Sofort" ,
15 : "Venmo" ,
16 : "Diners" ,
17 : "Postfinance" ,
18 : "Twint" ,
19 : "UnionPay" ,
20 : "ApplePay" ,
21 : "GooglePay" ,
22 : "Invoice" ,
23 : "Prepayment"
]
} ,
▾ "GetPaymentProviderConfigurationResponse" : {
"type" : "object" ,
"additionalProperties" : false
} ,
▾ "GetCartBuyerPersonResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "email" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "firstName" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "lastName" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "company" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "salutation" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "vatId" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "address" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/Address"
}
]
} ,
▾ "isPrefilled" : {
"type" : "boolean"
} ,
▾ "surveyId" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "isValid" : {
"type" : "boolean"
}
}
} ,
▾ "Address" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "required" : [
0 : "street" ,
1 : "postalCode" ,
2 : "city" ,
3 : "country"
] ,
▾ "properties" : {
▾ "street" : {
"type" : "string" ,
"minLength" : 1
} ,
▾ "houseNumber" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "postalCode" : {
"type" : "string" ,
"minLength" : 1
} ,
▾ "city" : {
"type" : "string" ,
"minLength" : 1
} ,
▾ "county" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "country" : {
"type" : "string" ,
"minLength" : 1
}
}
} ,
▾ "Person" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "required" : [
0 : "firstName" ,
1 : "lastName" ,
2 : "email" ,
3 : "address"
] ,
▾ "properties" : {
▾ "salutation" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "firstName" : {
"type" : "string" ,
"minLength" : 1
} ,
▾ "lastName" : {
"type" : "string" ,
"minLength" : 1
} ,
▾ "email" : {
"type" : "string" ,
"format" : "email" ,
"minLength" : 1
} ,
▾ "company" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "address" : {
"$ref" : "#/components/schemas/Address"
} ,
▾ "vatId" : {
"type" : "string" ,
"nullable" : true
}
}
} ,
▾ "GetCartLegitimationResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "id" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "category" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetLegitimationCategoryResponse"
}
]
} ,
▾ "associatedPerson" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/AssociatedPerson"
}
]
} ,
▾ "proofs" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"$ref" : "#/components/schemas/GetCartLegitimationProofResponse"
}
}
}
} ,
▾ "GetCartLegitimationProofResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "typeId" : {
"type" : "string" ,
"format" : "guid"
} ,
▾ "documentType" : {
"$ref" : "#/components/schemas/DocumentType"
} ,
▾ "value" : {
"type" : "string" ,
"nullable" : true
}
}
} ,
▾ "GetCartProblemResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "id" : {
"type" : "string" ,
"format" : "guid"
} ,
▾ "code" : {
"type" : "integer" ,
"format" : "int32"
} ,
▾ "name" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "message" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "logId" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "severity" : {
"$ref" : "#/components/schemas/ResultSeverity"
} ,
▾ "category" : {
"$ref" : "#/components/schemas/ResultCategory"
} ,
▾ "occurredAt" : {
"type" : "string" ,
"format" : "date-time"
} ,
▾ "type" : {
"$ref" : "#/components/schemas/CartProblemType"
} ,
▾ "details" : {
"type" : "object" ,
"nullable" : true ,
▾ "additionalProperties" : {
}
}
}
} ,
▾ "CartProblemType" : {
"type" : "string" ,
"description" : "" ,
▾ "x-enumNames" : [
0 : "Exception" ,
1 : "Validation" ,
2 : "Unknown"
] ,
▾ "enum" : [
0 : "Exception" ,
1 : "Validation" ,
2 : "Unknown"
]
} ,
▾ "ResendConfirmationEmailRequest" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "required" : [
0 : "email"
] ,
▾ "properties" : {
▾ "email" : {
"type" : "string" ,
"format" : "email" ,
"minLength" : 1
}
}
} ,
▾ "ResendRegistrationReminderEmailRequest" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "id" : {
"type" : "string" ,
"format" : "guid" ,
"minLength" : 1
}
}
} ,
▾ "SimpleApiResponseOfGetLegitimationResponseOf" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "data" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"$ref" : "#/components/schemas/GetLegitimationResponse"
}
}
}
} ,
▾ "SimpleApiResponseOfGetLegitimationResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "data" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetLegitimationResponse"
}
]
}
}
} ,
▾ "SimpleApiResponseOfUpdateProfileResponseDto" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "data" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/UpdateProfileResponseDto"
}
]
}
}
} ,
▾ "UpdateProfileResponseDto" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "userId" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "profile" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/UserProfile"
}
]
} ,
▾ "socialProfiles" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"$ref" : "#/components/schemas/UpdateSocialProfileResponseDto"
}
}
}
} ,
▾ "UserProfile" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "id" : {
"type" : "string" ,
"format" : "guid" ,
"nullable" : true
} ,
▾ "salutation" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "firstName" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "lastName" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "email" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "company" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "title" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "website" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "phone" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "mobile" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "fax" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "vatId" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "address" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/UserProfileAddress"
}
]
} ,
▾ "notificationPreferences" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/NotificationPreferences"
}
]
}
}
} ,
▾ "UserProfileAddress" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "street" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "houseNumber" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "postalCode" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "city" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "county" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "country" : {
"type" : "string" ,
"nullable" : true
}
}
} ,
▾ "NotificationPreferences" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "email" : {
"type" : "boolean"
} ,
▾ "phone" : {
"type" : "boolean"
} ,
▾ "postMail" : {
"type" : "boolean"
}
}
} ,
▾ "UpdateSocialProfileResponseDto" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "networkType" : {
"$ref" : "#/components/schemas/SocialNetworkType"
} ,
▾ "networkId" : {
"type" : "string" ,
"format" : "guid"
} ,
▾ "profileId" : {
"type" : "string" ,
"format" : "guid"
}
}
} ,
▾ "SimpleApiResponseOfGetProfileResponseDto" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "data" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetProfileResponseDto"
}
]
}
}
} ,
▾ "GetProfileResponseDto" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "userId" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "profile" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/UserProfile"
}
]
} ,
▾ "socialProfiles" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"$ref" : "#/components/schemas/GetSocialProfileResponseDto"
}
}
}
} ,
▾ "GetSocialProfileResponseDto" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "networkType" : {
"$ref" : "#/components/schemas/SocialNetworkType"
} ,
▾ "networkId" : {
"type" : "string" ,
"format" : "guid"
} ,
▾ "profileId" : {
"type" : "string" ,
"format" : "guid"
}
}
} ,
▾ "SimpleApiResponseOfGetPaymentProviderResponseOf" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "data" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"$ref" : "#/components/schemas/GetPaymentProviderResponse"
}
}
}
} ,
▾ "GetPaymentProviderResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "required" : [
0 : "id" ,
1 : "name" ,
2 : "paymentMethods" ,
3 : "sort"
] ,
▾ "properties" : {
▾ "id" : {
"type" : "string" ,
"format" : "guid" ,
"minLength" : 1
} ,
▾ "name" : {
"type" : "string" ,
"minLength" : 1
} ,
▾ "description" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "paymentMethods" : {
"type" : "array" ,
▾ "items" : {
"$ref" : "#/components/schemas/GetPaymentMethodResponse"
}
} ,
▾ "configuration" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetPaymentProviderConfigurationResponse"
}
]
} ,
▾ "sort" : {
"type" : "integer" ,
"format" : "int32"
} ,
▾ "isDefault" : {
"type" : "boolean"
} ,
▾ "isExpressCheckoutSupported" : {
"type" : "boolean"
}
}
} ,
▾ "SimpleApiResponseOfGetConfigurationResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "data" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetConfigurationResponse"
}
]
}
}
} ,
▾ "GetConfigurationResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "required" : [
0 : "mandator" ,
1 : "lookups"
] ,
▾ "properties" : {
▾ "mandator" : {
"type" : "string" ,
"minLength" : 1
} ,
▾ "lookups" : {
"type" : "object" ,
▾ "additionalProperties" : {
"type" : "string"
}
} ,
▾ "tracking" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetConfigurationTrackingResponse"
}
]
} ,
▾ "useTotpForNewUsers" : {
"type" : "boolean"
} ,
▾ "useWebsiteMetricTracking" : {
"type" : "boolean"
} ,
▾ "frameAncestors" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "externalLoginProviders" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"$ref" : "#/components/schemas/ExternalLoginProviderConfiguration"
}
} ,
▾ "defaultExternalLoginProvider" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "charsetInputFilter" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"$ref" : "#/components/schemas/GetConfigurationCharsetInputFilterResponse"
}
} ,
▾ "socialFollows" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"$ref" : "#/components/schemas/SocialNetworkFollowConfiguration"
}
}
}
} ,
▾ "GetConfigurationTrackingResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "scriptHead" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "scriptBody" : {
"type" : "string" ,
"nullable" : true
}
}
} ,
▾ "ExternalLoginProviderConfiguration" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "type" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "clientId" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "clientSecret" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "authority" : {
"type" : "string" ,
"nullable" : true
}
}
} ,
▾ "GetConfigurationCharsetInputFilterResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "name" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "regexRule" : {
"type" : "string" ,
"nullable" : true
}
}
} ,
▾ "SocialNetworkFollowConfiguration" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "name" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "color" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "type" : {
"$ref" : "#/components/schemas/SocialNetworkType"
} ,
▾ "url" : {
"type" : "string" ,
"nullable" : true
}
}
} ,
▾ "SimpleApiResponseOfGetEventResponseOf" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "data" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"$ref" : "#/components/schemas/GetEventResponse"
}
}
}
} ,
▾ "GetEventResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "required" : [
0 : "id" ,
1 : "name" ,
2 : "year" ,
3 : "number" ,
4 : "slug" ,
5 : "description" ,
6 : "dateTimeSpan" ,
7 : "icon" ,
8 : "logo" ,
9 : "sort" ,
10 : "isRegistrationAvailable" ,
11 : "isSalesAvailable" ,
12 : "publicRegistration" ,
13 : "assortments" ,
14 : "configuration" ,
15 : "currency"
] ,
▾ "properties" : {
▾ "id" : {
"type" : "string" ,
"format" : "guid" ,
"minLength" : 1
} ,
▾ "name" : {
"type" : "string" ,
"minLength" : 1
} ,
▾ "year" : {
"type" : "string" ,
"minLength" : 1
} ,
▾ "number" : {
"type" : "string" ,
"minLength" : 1
} ,
▾ "slug" : {
"type" : "string" ,
"minLength" : 1
} ,
▾ "description" : {
"type" : "string" ,
"minLength" : 1
} ,
▾ "dateTimeSpan" : {
"$ref" : "#/components/schemas/GetDateTimeSpanResponse"
} ,
▾ "icon" : {
"$ref" : "#/components/schemas/ThemeImage"
} ,
▾ "logo" : {
"$ref" : "#/components/schemas/ThemeImage"
} ,
▾ "sort" : {
"type" : "integer" ,
"format" : "int32"
} ,
▾ "isRegistrationAvailable" : {
"type" : "boolean"
} ,
▾ "isSalesAvailable" : {
"type" : "boolean"
} ,
▾ "publicRegistration" : {
"$ref" : "#/components/schemas/GetPublicRegistrationResponse"
} ,
▾ "assortments" : {
"type" : "array" ,
▾ "items" : {
"$ref" : "#/components/schemas/GetAssortmentResponse"
}
} ,
▾ "configuration" : {
"$ref" : "#/components/schemas/GetEventConfigurationResponse"
} ,
▾ "currency" : {
"type" : "string" ,
"minLength" : 1
}
}
} ,
▾ "GetPublicRegistrationResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "isAvailable" : {
"type" : "boolean"
} ,
▾ "assortments" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"$ref" : "#/components/schemas/GetAssortmentPublicRegistration"
}
}
}
} ,
▾ "GetAssortmentPublicRegistration" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "id" : {
"type" : "string" ,
"format" : "guid"
} ,
▾ "name" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "description" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "registrationCodes" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"type" : "string"
}
}
}
} ,
▾ "GetAssortmentResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "required" : [
0 : "id" ,
1 : "name" ,
2 : "description" ,
3 : "sort"
] ,
▾ "properties" : {
▾ "id" : {
"type" : "string" ,
"format" : "guid" ,
"minLength" : 1
} ,
▾ "name" : {
"type" : "string" ,
"minLength" : 1
} ,
▾ "description" : {
"type" : "string" ,
"minLength" : 1
} ,
▾ "sort" : {
"type" : "integer" ,
"format" : "int32"
} ,
▾ "isDefault" : {
"type" : "boolean"
} ,
▾ "configuration" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetAssortmentConfigurationResponse"
}
]
}
}
} ,
▾ "GetAssortmentConfigurationResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "maxNumberOfTicketsPerSale" : {
"type" : "integer" ,
"format" : "int32" ,
"nullable" : true
}
}
} ,
▾ "GetEventConfigurationResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "required" : [
0 : "availableLanguages"
] ,
▾ "properties" : {
▾ "availableLanguages" : {
"type" : "array" ,
▾ "items" : {
"$ref" : "#/components/schemas/GetLanguageResponse"
}
} ,
▾ "location" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetLocationResponse"
}
]
} ,
▾ "metaTags" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetMetaTagsResponse"
}
]
} ,
▾ "showInOverview" : {
"type" : "boolean"
} ,
▾ "showSummaryBeforeCheckout" : {
"type" : "boolean"
} ,
▾ "redirectAfterRegistration" : {
"type" : "boolean"
} ,
▾ "showCookieConsent" : {
"type" : "boolean"
} ,
▾ "tracking" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetEventConfigurationTrackingResponse"
}
]
} ,
▾ "useTotpForNewUsers" : {
"type" : "boolean"
} ,
▾ "showAttendeeBadgePreview" : {
"type" : "boolean"
} ,
▾ "maxNumberOfTicketsPerSale" : {
"type" : "integer" ,
"format" : "int32"
} ,
▾ "maxNumberOf1NVoucherPerSale" : {
"type" : "integer" ,
"format" : "int32"
} ,
▾ "isInvitationEmailAddressChangePossible" : {
"type" : "boolean"
} ,
▾ "isLandingPageActive" : {
"type" : "boolean"
} ,
▾ "linkedInEvent" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetLinkedInEventConfigurationResponse"
}
]
} ,
▾ "socialSharing" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetSocialSharingEventConfigurationResponse"
}
]
} ,
▾ "googleRecaptcha" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetGoogleRecaptchaConfigurationResponse"
}
]
} ,
▾ "persistableQueryParams" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"type" : "string"
}
} ,
▾ "externalLoginProviders" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"$ref" : "#/components/schemas/ExternalLoginProviderConfiguration"
}
} ,
▾ "defaultExternalLoginProvider" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "charsetInputFilter" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"$ref" : "#/components/schemas/GetEventConfigurationCharsetInputFilterResponse"
}
} ,
▾ "showLoadingPageOnCheckout" : {
"type" : "boolean"
} ,
▾ "googlePlaces" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetEventConfigurationGooglePlacesResponse"
}
]
} ,
▾ "customURL" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "isNotVerifiedUserAllowed" : {
"type" : "boolean"
} ,
▾ "socialFollows" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"$ref" : "#/components/schemas/SocialNetworkFollowConfiguration"
}
} ,
▾ "revolugo" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetEventConfigurationRevolugoResponse"
}
]
}
}
} ,
▾ "GetLanguageResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "name" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "code" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "sort" : {
"type" : "integer" ,
"format" : "int32"
}
}
} ,
▾ "GetLocationResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "required" : [
0 : "name"
] ,
▾ "properties" : {
▾ "name" : {
"type" : "string" ,
"minLength" : 1
} ,
▾ "description" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "plusCode" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "geoCoordinates" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "country" : {
"type" : "string" ,
"nullable" : true
}
}
} ,
▾ "GetMetaTagsResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "description" : {
"type" : "string" ,
"nullable" : true
}
}
} ,
▾ "GetEventConfigurationTrackingResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "scriptHead" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "scriptBody" : {
"type" : "string" ,
"nullable" : true
}
}
} ,
▾ "GetLinkedInEventConfigurationResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "apiKey" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "eventId" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "groupId" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "speakersUrls" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "isActive" : {
"type" : "boolean"
} ,
▾ "networkId" : {
"type" : "string" ,
"format" : "guid"
}
}
} ,
▾ "GetSocialSharingEventConfigurationResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "isActive" : {
"type" : "boolean"
} ,
▾ "title" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "text" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "image" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "hasSocialCardsEnabled" : {
"type" : "boolean"
} ,
▾ "hasAutoPostEnabled" : {
"type" : "boolean"
} ,
▾ "socialNetworks" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"$ref" : "#/components/schemas/GetSocialSharingEventConfigurationNetworkResponse"
}
}
}
} ,
▾ "GetSocialSharingEventConfigurationNetworkResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "id" : {
"type" : "string" ,
"format" : "guid"
} ,
▾ "name" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "isActive" : {
"type" : "boolean"
} ,
▾ "color" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "type" : {
"$ref" : "#/components/schemas/SocialNetworkType"
} ,
▾ "sharingUrl" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "supportsNativeSharing" : {
"type" : "boolean"
}
}
} ,
▾ "GetGoogleRecaptchaConfigurationResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "key" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "secret" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "score" : {
"type" : "number" ,
"format" : "decimal" ,
"nullable" : true
} ,
▾ "isActive" : {
"type" : "boolean"
}
}
} ,
▾ "GetEventConfigurationCharsetInputFilterResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "name" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "regexRule" : {
"type" : "string" ,
"nullable" : true
}
}
} ,
▾ "GetEventConfigurationGooglePlacesResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "isActive" : {
"type" : "boolean"
} ,
▾ "apiKey" : {
"type" : "string" ,
"nullable" : true
}
}
} ,
▾ "GetEventConfigurationRevolugoResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "trackingId" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "isHotelMapEnabled" : {
"type" : "boolean"
}
}
} ,
▾ "SimpleApiResponseOfGetEventResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "data" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetEventResponse"
}
]
}
}
} ,
▾ "SimpleApiResponseOfGetLegitimationCategoryResponseOf" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "data" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"$ref" : "#/components/schemas/GetLegitimationCategoryResponse"
}
}
}
} ,
▾ "SimpleApiResponseOfGetAssortmentResponseOf" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "data" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"$ref" : "#/components/schemas/GetAssortmentResponse"
}
}
}
} ,
▾ "SimpleApiResponseOfGetAssortmentDetailResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "data" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetAssortmentDetailResponse"
}
]
}
}
} ,
▾ "GetAssortmentDetailResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "required" : [
0 : "id" ,
1 : "name" ,
2 : "description" ,
3 : "sort" ,
4 : "articleGroups"
] ,
▾ "properties" : {
▾ "id" : {
"type" : "string" ,
"format" : "guid" ,
"minLength" : 1
} ,
▾ "name" : {
"type" : "string" ,
"minLength" : 1
} ,
▾ "description" : {
"type" : "string" ,
"minLength" : 1
} ,
▾ "sort" : {
"type" : "integer" ,
"format" : "int32"
} ,
▾ "isDefault" : {
"type" : "boolean"
} ,
▾ "configuration" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetAssortmentConfigurationResponse"
}
]
} ,
▾ "articleGroups" : {
"type" : "array" ,
▾ "items" : {
"$ref" : "#/components/schemas/GetArticleGroupResponse"
}
}
}
} ,
▾ "GetArticleGroupResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "required" : [
0 : "id" ,
1 : "sort"
] ,
▾ "properties" : {
▾ "id" : {
"type" : "string" ,
"format" : "guid" ,
"minLength" : 1
} ,
▾ "name" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "description" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "sort" : {
"type" : "integer" ,
"format" : "int32"
} ,
▾ "isExpanded" : {
"type" : "boolean"
} ,
▾ "configuration" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetArticleGroupConfiguartionResponse"
}
]
}
}
} ,
▾ "GetArticleGroupConfiguartionResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "maxNumberOfTicketsPerSale" : {
"type" : "integer" ,
"format" : "int32" ,
"nullable" : true
}
}
} ,
▾ "SimpleApiResponseOfGetAssortmentArticlesResponseOf" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "data" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"$ref" : "#/components/schemas/GetAssortmentArticlesResponse"
}
}
}
} ,
▾ "GetAssortmentArticlesResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "required" : [
0 : "id" ,
1 : "name" ,
2 : "image" ,
3 : "sort"
] ,
▾ "properties" : {
▾ "prices" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"$ref" : "#/components/schemas/GetArticlePriceResponse"
}
} ,
▾ "articleGroup" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetArticleGroupResponse"
}
]
} ,
▾ "id" : {
"type" : "string" ,
"format" : "guid" ,
"minLength" : 1
} ,
▾ "name" : {
"type" : "string" ,
"minLength" : 1
} ,
▾ "internalName" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "description" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "image" : {
"$ref" : "#/components/schemas/ThemeImage"
} ,
▾ "sort" : {
"type" : "integer" ,
"format" : "int32"
} ,
▾ "isLegitimationRequired" : {
"type" : "boolean" ,
"deprecated" : true
} ,
▾ "legitimationCategory" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetLegitimationCategoryResponse"
}
]
} ,
▾ "type" : {
"$ref" : "#/components/schemas/TicketType"
} ,
▾ "ticketValidity" : {
"$ref" : "#/components/schemas/TicketValidityType"
} ,
▾ "articleNumber" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "category" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "amount" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetArticleAmountResponse"
}
]
} ,
▾ "configuration" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetArticleConfigurationResponse"
}
]
} ,
▾ "timeslots" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"$ref" : "#/components/schemas/AvailableTimeslotDay"
}
}
}
} ,
▾ "GetArticlePriceResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "price" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetPriceResponse"
}
]
} ,
▾ "originalPrice" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetPriceResponse"
}
]
}
}
} ,
▾ "GetArticleAmountResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "remaining" : {
"type" : "integer" ,
"format" : "int32"
}
}
} ,
▾ "SimpleApiResponseOfGetLookupsResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "data" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetLookupsResponse"
}
]
}
}
} ,
▾ "GetLookupsResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "id" : {
"type" : "integer" ,
"format" : "int32"
} ,
▾ "language" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "lookups" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"$ref" : "#/components/schemas/Lookup"
}
}
}
} ,
▾ "Lookup" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "key" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "value" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "value2" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "value3" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "value4" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "value5" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "isFreeText" : {
"type" : "boolean"
} ,
▾ "lookups" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"$ref" : "#/components/schemas/Lookup"
}
}
}
} ,
▾ "SimpleApiResponseOfGetDataChangesResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "data" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetDataChangesResponse"
}
]
}
}
} ,
▾ "GetDataChangesResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "dataChanged" : {
"type" : "boolean"
} ,
▾ "currentTimestamp" : {
"type" : "string" ,
"format" : "date-time"
} ,
▾ "changes" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"$ref" : "#/components/schemas/GetDataChangesChangeResponse"
}
}
}
} ,
▾ "GetDataChangesChangeResponse" : {
"type" : "object" ,
"x-abstract" : true ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "region" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "key" : {
"type" : "string" ,
"nullable" : true
}
}
} ,
▾ "GetDataChangesRequest" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "dateTime" : {
"type" : "string" ,
"format" : "date-time"
} ,
▾ "regions" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"type" : "string"
}
}
}
} ,
▾ "SimpleApiResponseOfUnsubscribeGroupDto" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "data" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/UnsubscribeGroupDto"
}
]
}
}
} ,
▾ "UnsubscribeGroupDto" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "uniqueId" : {
"type" : "string" ,
"format" : "guid"
} ,
▾ "name" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "description" : {
"type" : "string" ,
"nullable" : true
}
}
} ,
▾ "SimpleApiResponseOfGetResourceResponseOf" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "data" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"$ref" : "#/components/schemas/GetResourceResponse"
}
}
}
} ,
▾ "GetResourceResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "id" : {
"type" : "integer" ,
"format" : "int32"
} ,
▾ "value" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "key" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "scope" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "refDataObject" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "refDataObjectId" : {
"type" : "integer" ,
"format" : "int32" ,
"nullable" : true
} ,
▾ "activeFrom" : {
"type" : "string" ,
"format" : "date-time" ,
"nullable" : true
} ,
▾ "activeTo" : {
"type" : "string" ,
"format" : "date-time" ,
"nullable" : true
}
}
} ,
▾ "SimpleApiResponseOfGetLanguagesResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "data" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetLanguagesResponse"
}
]
}
}
} ,
▾ "GetLanguagesResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "systemLanguage" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetLanguageDefaultResponse"
}
]
} ,
▾ "languages" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"$ref" : "#/components/schemas/GetLanguageResponse"
}
}
}
} ,
▾ "GetLanguageDefaultResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "name" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "code" : {
"type" : "string" ,
"nullable" : true
}
}
} ,
▾ "CreateCartRequest" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "required" : [
0 : "event"
] ,
▾ "properties" : {
▾ "event" : {
"type" : "string" ,
"minLength" : 1
} ,
▾ "user" : {
"type" : "string" ,
"format" : "guid" ,
"nullable" : true
} ,
▾ "isVerifiedUser" : {
"type" : "boolean"
} ,
▾ "culture" : {
"type" : "string" ,
"nullable" : true
}
}
} ,
▾ "SimpleApiResponseOfSetCultureResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "data" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/SetCultureResponse"
}
]
}
}
} ,
▾ "SetCultureResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "cartId" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "culture" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "successful" : {
"type" : "boolean"
}
}
} ,
▾ "SetCultureRequestDto" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "required" : [
0 : "culture"
] ,
▾ "properties" : {
▾ "culture" : {
"type" : "string" ,
"minLength" : 1
}
}
} ,
▾ "SimpleApiResponseOfSetPaymentProviderToCartResponseDto" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "data" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/SetPaymentProviderToCartResponseDto"
}
]
}
}
} ,
▾ "SetPaymentProviderToCartResponseDto" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "paymentProviderSet" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/SetPaymentProviderResponse"
}
]
} ,
▾ "cart" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetCartResponse"
}
]
}
}
} ,
▾ "SetPaymentProviderResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "cartId" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "paymentProviderId" : {
"type" : "string" ,
"format" : "guid"
} ,
▾ "redirectRequired" : {
"type" : "boolean"
} ,
▾ "paymentProviderRedirectUrl" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "expiresAt" : {
"type" : "string" ,
"format" : "date-time" ,
"nullable" : true
}
}
} ,
▾ "SetPaymentProviderToCartRequest" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "required" : [
0 : "paymentProviderId"
] ,
▾ "properties" : {
▾ "paymentProviderId" : {
"type" : "string" ,
"format" : "guid" ,
"minLength" : 1
} ,
▾ "successUrl" : {
"type" : "string" ,
"format" : "uri" ,
"nullable" : true
} ,
▾ "cancelUrl" : {
"type" : "string" ,
"format" : "uri" ,
"nullable" : true
} ,
▾ "errorUrl" : {
"type" : "string" ,
"format" : "uri" ,
"nullable" : true
} ,
▾ "token" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "completePaymentAfterRedirect" : {
"type" : "boolean"
}
}
} ,
▾ "SimpleApiResponseOfRemovePaymentProviderResponseDto" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "data" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/RemovePaymentProviderResponseDto"
}
]
}
}
} ,
▾ "RemovePaymentProviderResponseDto" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "paymentProviderRemoved" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/RemovePaymentProviderResponse"
}
]
} ,
▾ "cart" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetCartResponse"
}
]
}
}
} ,
▾ "RemovePaymentProviderResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "cartId" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "successful" : {
"type" : "boolean"
}
}
} ,
▾ "SimpleApiResponseOfSetBuyerToCartResponseDto" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "data" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/SetBuyerToCartResponseDto"
}
]
}
}
} ,
▾ "SetBuyerToCartResponseDto" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "buyerSet" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/SetBuyerResponse"
}
]
} ,
▾ "cart" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetCartResponse"
}
]
}
}
} ,
▾ "SetBuyerResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "cartId" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "buyerPerson" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/Person"
}
]
} ,
▾ "successful" : {
"type" : "boolean"
}
}
} ,
▾ "SimpleApiResponseOfGetItemRegistrationPrefillDataRequest" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "data" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetItemRegistrationPrefillDataRequest"
}
]
}
}
} ,
▾ "GetItemRegistrationPrefillDataRequest" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "cartId" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "itemId" : {
"type" : "string" ,
"format" : "guid"
} ,
▾ "registrationType" : {
"$ref" : "#/components/schemas/RegistrationType"
}
}
} ,
▾ "SimpleApiResponseOfGetCartItemTimeslotsResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "data" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetCartItemTimeslotsResponse"
}
]
}
}
} ,
▾ "SimpleApiResponseOfSetCartItemTimeslotsResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "data" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/SetCartItemTimeslotsResponse"
}
]
}
}
} ,
▾ "SetCartItemTimeslotsResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "bookings" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"$ref" : "#/components/schemas/BookedTimeslotDay"
}
}
}
} ,
▾ "BookTimeslotsRequest" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "bookings" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"$ref" : "#/components/schemas/BookTimeslotRequest"
}
}
}
} ,
▾ "BookTimeslotRequest" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "day" : {
"type" : "string" ,
"format" : "guid"
} ,
▾ "timeRange" : {
"type" : "string" ,
"format" : "guid" ,
"nullable" : true
}
}
} ,
▾ "SimpleApiResponseOfSetBillingToCartResponseDto" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "data" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/SetBillingToCartResponseDto"
}
]
}
}
} ,
▾ "SetBillingToCartResponseDto" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "billingSet" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/SetBillingResponse"
}
]
} ,
▾ "cart" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetCartResponse"
}
]
}
}
} ,
▾ "SetBillingResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "cartId" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "billingPerson" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/Person"
}
]
} ,
▾ "successful" : {
"type" : "boolean"
}
}
} ,
▾ "SimpleApiResponseOfCheckAndReserveCodeResponseDto" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "data" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/CheckAndReserveCodeResponseDto"
}
]
}
}
} ,
▾ "CheckAndReserveCodeResponseDto" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "couponReserved" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/AddCouponResponse"
}
]
} ,
▾ "cart" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetCartResponse"
}
]
}
}
} ,
▾ "AddCouponResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "required" : [
0 : "registrationResult" ,
1 : "affectedAssortments" ,
2 : "codeType"
] ,
▾ "properties" : {
▾ "cartId" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "code" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "registrationResult" : {
"$ref" : "#/components/schemas/CouponAddedReservation"
} ,
▾ "affectedAssortments" : {
"type" : "array" ,
▾ "items" : {
"$ref" : "#/components/schemas/GetAssortmentResponse"
}
} ,
▾ "codeType" : {
"$ref" : "#/components/schemas/RegistrationResultCodeType"
} ,
▾ "reservation" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/ItemAddedReservation"
}
]
} ,
▾ "article" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetValidArticleResponse"
}
]
} ,
▾ "appearance" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/CouponInformationAppearance"
}
]
} ,
▾ "organization" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/CouponInformationOrganization"
}
]
}
}
} ,
▾ "CouponAddedReservation" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "required" : [
0 : "message" ,
1 : "code"
] ,
▾ "properties" : {
▾ "message" : {
"type" : "string" ,
"minLength" : 1
} ,
▾ "code" : {
"$ref" : "#/components/schemas/RegistrationResultCode"
}
}
} ,
▾ "RegistrationResultCode" : {
"type" : "string" ,
"description" : "" ,
▾ "x-enumNames" : [
0 : "OK" ,
1 : "GeneralError" ,
2 : "TicketAlreadyInCart" ,
3 : "InvalidRegistrationData" ,
4 : "TicketCanceled" ,
5 : "EmptyTicketPool" ,
6 : "AttributeFaireventArticleGroupLimitReached" ,
7 : "TicketOwnerLacksValidLegitimation" ,
8 : "TicketCodeForAnotherFairevent" ,
9 : "SendEMailError" ,
10 : "PassbookCreationError" ,
11 : "PDFCreationError" ,
12 : "WrongReservationGUID" ,
13 : "AlreadyReservedTicketCode" ,
14 : "TicketCodeUsedUp" ,
15 : "LockedTicketCode" ,
16 : "AlreadyRegisteredTicketCode" ,
17 : "UnkownTicketCode"
] ,
▾ "enum" : [
0 : "OK" ,
1 : "GeneralError" ,
2 : "TicketAlreadyInCart" ,
3 : "InvalidRegistrationData" ,
4 : "TicketCanceled" ,
5 : "EmptyTicketPool" ,
6 : "AttributeFaireventArticleGroupLimitReached" ,
7 : "TicketOwnerLacksValidLegitimation" ,
8 : "TicketCodeForAnotherFairevent" ,
9 : "SendEMailError" ,
10 : "PassbookCreationError" ,
11 : "PDFCreationError" ,
12 : "WrongReservationGUID" ,
13 : "AlreadyReservedTicketCode" ,
14 : "TicketCodeUsedUp" ,
15 : "LockedTicketCode" ,
16 : "AlreadyRegisteredTicketCode" ,
17 : "UnkownTicketCode"
]
} ,
▾ "RegistrationResultCodeType" : {
"type" : "string" ,
"description" : "" ,
▾ "x-enumNames" : [
0 : "Unknown" ,
1 : "Voucher" ,
2 : "PromotionCode"
] ,
▾ "enum" : [
0 : "Unknown" ,
1 : "Voucher" ,
2 : "PromotionCode"
]
} ,
▾ "ItemAddedReservation" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "id" : {
"type" : "string" ,
"format" : "guid" ,
"minLength" : 1
} ,
▾ "validUntil" : {
"type" : "string" ,
"format" : "date-time"
}
}
} ,
▾ "GetValidArticleResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "required" : [
0 : "id" ,
1 : "name" ,
2 : "image" ,
3 : "sort"
] ,
▾ "properties" : {
▾ "id" : {
"type" : "string" ,
"format" : "guid" ,
"minLength" : 1
} ,
▾ "name" : {
"type" : "string" ,
"minLength" : 1
} ,
▾ "internalName" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "description" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "image" : {
"$ref" : "#/components/schemas/ThemeImage"
} ,
▾ "sort" : {
"type" : "integer" ,
"format" : "int32"
} ,
▾ "isLegitimationRequired" : {
"type" : "boolean" ,
"deprecated" : true
} ,
▾ "legitimationCategory" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetLegitimationCategoryResponse"
}
]
} ,
▾ "type" : {
"$ref" : "#/components/schemas/TicketType"
} ,
▾ "ticketValidity" : {
"$ref" : "#/components/schemas/TicketValidityType"
} ,
▾ "articleNumber" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "category" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "amount" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetArticleAmountResponse"
}
]
} ,
▾ "configuration" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetArticleConfigurationResponse"
}
]
} ,
▾ "timeslots" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"$ref" : "#/components/schemas/AvailableTimeslotDay"
}
} ,
▾ "prices" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"$ref" : "#/components/schemas/GetArticlePriceResponse"
}
} ,
▾ "articleGroup" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetArticleGroupResponse"
}
]
}
}
} ,
▾ "CouponInformationAppearance" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "id" : {
"type" : "string" ,
"format" : "guid"
} ,
▾ "number" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "isIntern" : {
"type" : "boolean"
} ,
▾ "externalId1" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "externalId2" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "externalId3" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "welcomeText" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "hasWelcomeBanner" : {
"type" : "boolean"
}
}
} ,
▾ "CouponInformationOrganization" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "id" : {
"type" : "string" ,
"format" : "guid"
} ,
▾ "name" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "externalId1" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "externalId2" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "externalId3" : {
"type" : "string" ,
"nullable" : true
}
}
} ,
▾ "SimpleApiResponseOfCheckCouponResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "data" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/CheckCouponResponse"
}
]
}
}
} ,
▾ "CheckCouponResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "article" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetValidArticleResponse"
}
]
} ,
▾ "appearance" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/CouponInformationAppearance"
}
]
} ,
▾ "organization" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/CouponInformationOrganization"
}
]
}
}
} ,
▾ "SimpleApiResponseOfRemoveCouponResponseDto" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "data" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/RemoveCouponResponseDto"
}
]
}
}
} ,
▾ "RemoveCouponResponseDto" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "couponRemoved" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/RemoveCouponResponse"
}
]
} ,
▾ "cart" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetCartResponse"
}
]
}
}
} ,
▾ "RemoveCouponResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "cartId" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "code" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "successful" : {
"type" : "boolean"
}
}
} ,
▾ "SimpleApiResponseOfAddItemToCartResponseDto" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "data" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/AddItemToCartResponseDto"
}
]
}
}
} ,
▾ "AddItemToCartResponseDto" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "itemAdded" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/AddItemResponse"
}
]
} ,
▾ "cart" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetCartResponse"
}
]
}
}
} ,
▾ "AddItemResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "cartId" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "article" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetValidArticleResponse"
}
]
} ,
▾ "items" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"$ref" : "#/components/schemas/ItemAddedArticle"
}
} ,
▾ "problems" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"$ref" : "#/components/schemas/IResult"
}
}
}
} ,
▾ "ItemAddedArticle" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "reservation" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/ItemAddedReservation"
}
]
} ,
▾ "item" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/ItemAddedItem"
}
]
}
}
} ,
▾ "ItemAddedItem" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "id" : {
"type" : "string" ,
"format" : "guid" ,
"minLength" : 1
}
}
} ,
▾ "AddItemToCartRequestDto" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "article" : {
"type" : "string" ,
"format" : "guid"
} ,
▾ "quantity" : {
"type" : "integer" ,
"format" : "int32" ,
"nullable" : true
}
}
} ,
▾ "SimpleApiResponseOfRemoveItemResponseDto" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "data" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/RemoveItemResponseDto"
}
]
}
}
} ,
▾ "RemoveItemResponseDto" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "itemRemoved" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/RemoveItemResponse"
}
]
} ,
▾ "cart" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetCartResponse"
}
]
}
}
} ,
▾ "RemoveItemResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "successful" : {
"type" : "boolean"
} ,
▾ "article" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetValidArticleResponse"
}
]
}
}
} ,
▾ "SimpleApiResponseOfRemoveItemsFromCartResponseDto" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "data" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/RemoveItemsFromCartResponseDto"
}
]
}
}
} ,
▾ "RemoveItemsFromCartResponseDto" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "itemsRemoved" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/RemoveItemsFromCartItemsRemovedResponseDto"
}
]
} ,
▾ "cart" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetCartResponse"
}
]
}
}
} ,
▾ "RemoveItemsFromCartItemsRemovedResponseDto" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "items" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"$ref" : "#/components/schemas/RemoveItemsFromCartItemResponseDto"
}
}
}
} ,
▾ "RemoveItemsFromCartItemResponseDto" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "itemId" : {
"type" : "string" ,
"format" : "guid"
} ,
▾ "successful" : {
"type" : "boolean"
} ,
▾ "article" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetValidArticleResponse"
}
]
}
}
} ,
▾ "RemoveItemsFromCartRequestDto" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "itemIds" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"type" : "string" ,
"format" : "guid"
}
}
}
} ,
▾ "SimpleApiResponseOfUpdateItemRegistrationResponseDto" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "data" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/UpdateItemRegistrationResponseDto"
}
]
}
}
} ,
▾ "UpdateItemRegistrationResponseDto" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "registrationUpdated" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/UpdateItemRegistrationResponse"
}
]
} ,
▾ "cart" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetCartResponse"
}
]
}
}
} ,
▾ "UpdateItemRegistrationResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "cartId" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "id" : {
"type" : "string" ,
"format" : "guid"
} ,
▾ "registration" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/CartItemRegistration"
}
]
}
}
} ,
▾ "UpdateCartItemRegistration" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "required" : [
0 : "type"
] ,
▾ "properties" : {
▾ "type" : {
"$ref" : "#/components/schemas/RegistrationType"
} ,
▾ "referencedSurveyResponse" : {
"type" : "string" ,
"format" : "guid" ,
"nullable" : true
} ,
▾ "answers" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"$ref" : "#/components/schemas/SurveyAnswer"
}
} ,
▾ "hasInformation" : {
"type" : "boolean"
}
}
} ,
▾ "SurveyAnswer" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "bindingMember" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "value" : {
"type" : "string" ,
"nullable" : true
}
}
} ,
▾ "SimpleApiResponseOfCartValidationResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "data" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/CartValidationResponse"
}
]
}
}
} ,
▾ "CartValidationResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "required" : [
0 : "isCheckoutPossible" ,
1 : "problems"
] ,
▾ "properties" : {
▾ "isCheckoutPossible" : {
"type" : "boolean"
} ,
▾ "isCartReloadRequired" : {
"type" : "boolean"
} ,
▾ "problems" : {
"type" : "array" ,
▾ "items" : {
"$ref" : "#/components/schemas/IResult"
}
} ,
▾ "resolvedProblems" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"$ref" : "#/components/schemas/IResult"
}
}
}
} ,
▾ "SimpleApiResponseOfCheckoutCartResponseDto" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "data" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/CheckoutCartResponseDto"
}
]
}
}
} ,
▾ "CheckoutCartResponseDto" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "cartCheckedout" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/CheckoutCartResponse"
}
]
} ,
▾ "cart" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetCartResponse"
}
]
}
}
} ,
▾ "CheckoutCartResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "orderId" : {
"type" : "string" ,
"format" : "guid" ,
"nullable" : true
} ,
▾ "cartId" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "success" : {
"type" : "boolean"
} ,
▾ "message" : {
"type" : "string" ,
"nullable" : true
}
}
} ,
▾ "SimpleApiResponseOfClearCartResponseDto" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "data" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/ClearCartResponseDto"
}
]
}
}
} ,
▾ "ClearCartResponseDto" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "cartCleared" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/ClearCartResponse"
}
]
} ,
▾ "cart" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetCartResponse"
}
]
}
}
} ,
▾ "ClearCartResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "successful" : {
"type" : "boolean"
}
}
} ,
▾ "SimpleApiResponseOfSetUserToCartResponseDto" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "data" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/SetUserToCartResponseDto"
}
]
}
}
} ,
▾ "SetUserToCartResponseDto" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "userSetted" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/SetUserToCartResponse"
}
]
} ,
▾ "cart" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetCartResponse"
}
]
}
}
} ,
▾ "SetUserToCartResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "cartId" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "userId" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "successful" : {
"type" : "boolean"
}
}
} ,
▾ "SetUserToCartRequest" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "required" : [
0 : "userId" ,
1 : "user"
] ,
▾ "properties" : {
▾ "userId" : {
"type" : "string" ,
"minLength" : 1 ,
"deprecated" : true ,
"x-deprecatedMessage" : "Use 'user' property instead"
} ,
▾ "user" : {
"type" : "string" ,
"minLength" : 1
} ,
▾ "isVerified" : {
"type" : "boolean"
}
}
} ,
▾ "SimpleApiResponseOfAddLegitimationToCartResponseDto" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "data" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/AddLegitimationToCartResponseDto"
}
]
}
}
} ,
▾ "AddLegitimationToCartResponseDto" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "legitimationAdded" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/LegitimationAddedEvent"
}
]
} ,
▾ "cart" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetCartResponse"
}
]
}
}
} ,
▾ "LegitimationAddedEvent" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "cartId" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "legitimationIdentifier" : {
"type" : "string" ,
"nullable" : true
}
}
} ,
▾ "AddLegitimationToCartRequestDto" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "required" : [
0 : "proofs"
] ,
▾ "properties" : {
▾ "proofs" : {
"type" : "array" ,
▾ "items" : {
"$ref" : "#/components/schemas/AddLegitimationProofRequest"
}
} ,
▾ "comment" : {
"type" : "string" ,
"nullable" : true
}
}
} ,
▾ "AddLegitimationProofRequest" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "required" : [
0 : "typeId" ,
1 : "documentType" ,
2 : "value"
] ,
▾ "properties" : {
▾ "typeId" : {
"type" : "string" ,
"format" : "guid" ,
"minLength" : 1
} ,
▾ "documentType" : {
"$ref" : "#/components/schemas/DocumentType"
} ,
▾ "value" : {
"type" : "string" ,
"minLength" : 1
}
}
} ,
▾ "SimpleApiResponseOfAddLegitimationDocumentResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "data" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/AddLegitimationDocumentResponse"
}
]
}
}
} ,
▾ "AddLegitimationDocumentResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "cartId" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "documentId" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "legitimationId" : {
"type" : "string" ,
"nullable" : true
}
}
} ,
▾ "SimpleApiResponseOfRemoveLegitimationDocumentResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "data" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/RemoveLegitimationDocumentResponse"
}
]
}
}
} ,
▾ "RemoveLegitimationDocumentResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "cartId" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "documentId" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "legitimationIdentifier" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "successful" : {
"type" : "boolean"
}
}
} ,
▾ "GetCartThemeResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "context" : {
"type" : "string" ,
"nullable" : true
}
}
} ,
▾ "ModifyPropertiesResponseDto" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "propertiesModified" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/ModifyPropertiesResponse"
}
]
} ,
▾ "cart" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetCartResponse"
}
]
}
}
} ,
▾ "ModifyPropertiesResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "cartId" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "properties" : {
"type" : "object" ,
"nullable" : true ,
▾ "additionalProperties" : {
"type" : "string"
}
} ,
▾ "isSuccessful" : {
"type" : "boolean"
}
}
} ,
▾ "ModifyPropertiesRequestDto" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "properties" : {
"type" : "object" ,
"nullable" : true ,
▾ "additionalProperties" : {
"type" : "string"
}
}
}
} ,
▾ "GetRecommendationsResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "upSellings" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"$ref" : "#/components/schemas/GetRecommendationGroupResponse"
}
} ,
▾ "crossSellings" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"$ref" : "#/components/schemas/GetRecommendationGroupResponse"
}
}
}
} ,
▾ "GetRecommendationGroupResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "article" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetRecommendationArticleResponse"
}
]
} ,
▾ "items" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"type" : "string"
}
} ,
▾ "recommendations" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"$ref" : "#/components/schemas/GetRecommendationResponse"
}
}
}
} ,
▾ "GetRecommendationArticleResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "required" : [
0 : "id" ,
1 : "name" ,
2 : "image" ,
3 : "sort"
] ,
▾ "properties" : {
▾ "id" : {
"type" : "string" ,
"format" : "guid" ,
"minLength" : 1
} ,
▾ "name" : {
"type" : "string" ,
"minLength" : 1
} ,
▾ "internalName" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "description" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "image" : {
"$ref" : "#/components/schemas/ThemeImage"
} ,
▾ "sort" : {
"type" : "integer" ,
"format" : "int32"
} ,
▾ "isLegitimationRequired" : {
"type" : "boolean" ,
"deprecated" : true
} ,
▾ "legitimationCategory" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetLegitimationCategoryResponse"
}
]
} ,
▾ "type" : {
"$ref" : "#/components/schemas/TicketType"
} ,
▾ "ticketValidity" : {
"$ref" : "#/components/schemas/TicketValidityType"
} ,
▾ "articleNumber" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "category" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "amount" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetArticleAmountResponse"
}
]
} ,
▾ "configuration" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetArticleConfigurationResponse"
}
]
} ,
▾ "timeslots" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"$ref" : "#/components/schemas/AvailableTimeslotDay"
}
} ,
▾ "prices" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"$ref" : "#/components/schemas/GetArticlePriceResponse"
}
} ,
▾ "recommendationImageUri" : {
"type" : "string" ,
"nullable" : true
}
}
} ,
▾ "GetRecommendationResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "weight" : {
"type" : "integer" ,
"format" : "int32"
} ,
▾ "article" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetRecommendationArticleResponse"
}
]
}
}
} ,
▾ "ApplyRecommendationsResponse" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "cartId" : {
"type" : "string" ,
"nullable" : true
} ,
▾ "addedArticles" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"$ref" : "#/components/schemas/ItemAddedArticle"
}
} ,
▾ "removedItems" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"$ref" : "#/components/schemas/ItemsRemovedItem"
}
} ,
▾ "problems" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"$ref" : "#/components/schemas/IResult"
}
}
}
} ,
▾ "ItemsRemovedItem" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "itemId" : {
"type" : "string" ,
"format" : "guid"
} ,
▾ "successful" : {
"type" : "boolean"
} ,
▾ "article" : {
"nullable" : true ,
▾ "oneOf" : [
▾ 0 : {
"$ref" : "#/components/schemas/GetValidArticleResponse"
}
]
}
}
} ,
▾ "ApplyRecommendationsRequestDto" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "upSellings" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"$ref" : "#/components/schemas/RecommendationDto"
}
} ,
▾ "crossSellings" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"$ref" : "#/components/schemas/RecommendationDto"
}
}
}
} ,
▾ "RecommendationDto" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "article" : {
"type" : "string" ,
"format" : "guid"
} ,
▾ "items" : {
"type" : "array" ,
"nullable" : true ,
▾ "items" : {
"type" : "string" ,
"format" : "guid"
}
}
}
} ,
▾ "SimpleApiResponseOfDictionaryOfStringAndObject" : {
"type" : "object" ,
"additionalProperties" : false ,
▾ "properties" : {
▾ "data" : {
"type" : "object" ,
"nullable" : true ,
▾ "additionalProperties" : {
}
}
}
}
} ,