This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
openapi: 3.0.3 | |
info: | |
title: Adaptive Cards | |
description: This is a port of Adaptive Cards schema to swagger editor for exploration | |
version: 1.3.0 | |
paths: {} | |
components: | |
schemas: | |
AdaptiveCard: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# OpenAPI version identifier - required for OpenAPI 3.0 domains | |
openapi: 3.0.0 | |
####################### | |
# Optional info section | |
####################### | |
info: | |
title: Acme Components | |
description: Common components for Acme REST APIs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Utility code for Sleuth submissions | |
=================================== | |
Author: Aleksandar Milosevic | |
License: Creative Commons CC BY 4.0 | |
Utility provides visual aids for Sleuths submissions | |
- displays mouse pointer x and y position | |
- displays candidate line when considering next vertex |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"type": "object", | |
"required": [ | |
"openapi", | |
"info", | |
"paths" | |
], | |
"properties": { | |
"openapi": { | |
"type": "string", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
swagger: '2.0' | |
x-asee-visibility: public | |
info: | |
description: Multifactor Authentication API enables authentication of users and signing of sensitive transactions using token based credentials or random one-time verification code sent to pre-registered email account or mobile number. Authentication and signatures using token based credentials follow OATH standard HOTP, TOTP and OCRA algorithms or their proprietary alternatives. Initiation of out-of-band authentication and signature flows is possible with images (QR code) and push messages. | |
title: Multifactor Authentication API | |
version: beta | |
host: bankapi.net | |
basePath: /beta/mfa | |
tags: | |
- description: One-time code to verify proof of control over phone number or email address |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"type": "object", | |
"required": [ | |
"openapi", | |
"info", | |
"paths" | |
], | |
"properties": { | |
"openapi": { | |
"type": "string", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
swagger: '2.0' | |
info: | |
version: v1 | |
title: SxS Events | |
description: 'Events described here tell you what happens during the use of **tokens** to authenticate users and confirm transactions.' | |
contact: | |
name: Igor Vlahek | |
email: [email protected] | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
openapi: 3.0.1 | |
info: | |
title: BG PSD2 API | |
version: "1.2" | |
description: | | |
# Summary | |
The **NextGenPSD2** *Framework Version 1.2* offers a modern, open, harmonised and interoperable set of | |
Application Programming Interfaces (APIs) as the safest and most efficient way to provide data securely. | |
The NextGenPSD2 Framework reduces XS2A complexity and costs, addresses the problem of multiple competing standards | |
in Europe and, aligned with the goals of the Euro Retail Payments Board, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
swagger: '2.0' | |
info: | |
version: '1.0.0' | |
title: PSD2 XS2A API | |
description: Uniform, interoperable and PSD2 compliant Access to Account interface | |
license: | |
name: MIT | |
url: http://github.com/gruntjs/grunt/blob/master/LICENSE-MIT | |
contact: | |
name: Aleksandar Milosevic |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Collections.Generic; | |
using Microsoft.AspNetCore.Mvc; | |
using System.IO; | |
namespace Asseco.Content.Controllers | |
{ | |
[Route("api/v1/content/")] | |
public class FolderController : Controller | |
{ | |
private JsonResult GetFileByPath(string repo, string folder, string file) |
NewerOlder