Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add workflows and exchanges endpoints. #382

Merged
merged 16 commits into from
May 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions components/parameters/path/LocalExchangeId.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
name: localExchangeId
description: A local identifier for an exchange instance.
in: path
required: true
schema:
type: string
pattern: "[a-z0-9][a-z0-9\\-]{2,}"
7 changes: 7 additions & 0 deletions components/parameters/path/LocalWorkflowId.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
name: localWorkflowId
description: A local identifier for a workflow instance.
in: path
required: true
schema:
type: string
pattern: "[a-z0-9][a-z0-9\\-]{2,}"
20 changes: 20 additions & 0 deletions exchanges.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html>
<head>
<title>W3C CCG - VC Verifier API</title>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Montserrat:300,400,700|Roboto:300,400,700" rel="stylesheet">

<style>
body {
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<redoc spec-url='./exchanges.yml'></redoc>
<script src="https://cdn.jsdelivr.net/npm/redoc@next/bundles/redoc.standalone.js"> </script>
</body>
</html>
Loading