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

Change x-exosite-config to standard jsonSchema #3

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
20 changes: 11 additions & 9 deletions examples/sms.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,17 @@ produces:
################################################################################
# Service Configuration Parameters #
################################################################################
x-exosite-config-parameters:
- name: AccountSid
description: Service Account SID
type: string
required: true
- name: AuthToken
description: Authentication Token
type: string
required: true
x-exosite-config:
parameters:
AccountSid:
title: Account Sid
description: More information about the Service Account SID
type: string
AuthToken:
title: Authentication Token
description: More information about the Authentication Token
type: string
required: [AccountSid, AuthToken]

################################################################################
# Security #
Expand Down