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 url to app dir projects images schema #1

Merged
merged 2 commits into from
Sep 27, 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
27 changes: 27 additions & 0 deletions .github/workflows/validate-yml.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: validate-yaml

on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
types:
- opened
- synchronize

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
validate-yaml:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: json-yaml-validate
uses: GrantBirki/[email protected]
5 changes: 4 additions & 1 deletion openapi/app-directory/app-dir.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ openapi: 3.0.3
info:
title: Moonbeam App Directory API
description: This API allows you to retrieve information about projects listed in the Moonbeam app directory.
version: 1.0.0
version: 1.0.1
servers:
- url: https://apps.moonbeam.network/api/ds/v1
description: Moonbeam App Directory API
Expand Down Expand Up @@ -227,6 +227,9 @@ components:
mimeType:
type: string
example: "image/jpeg"
url:
type: string
example: "https://raw.githubusercontent.com/moonbeam-foundation/app-directory-data/refs/heads/main/projects/moonwell/logos/moonwell-logo-full.jpeg"

MarketData:
type: object
Expand Down
Loading