40 lines
1.1 KiB
Text
40 lines
1.1 KiB
Text
|
#%RAML 1.0
|
||
|
---
|
||
|
title: Metamaps
|
||
|
version: v2
|
||
|
baseUri: http://metamaps.cc/api/v2
|
||
|
mediaType: application/json
|
||
|
|
||
|
securitySchemes:
|
||
|
- oauth_2_0:
|
||
|
description: |
|
||
|
OAuth 2.0 implementation
|
||
|
type: OAuth 2.0
|
||
|
settings:
|
||
|
authorizationUri: https://metamaps.cc/api/v2/oauth/authorize
|
||
|
accessTokenUri: https://metamaps.cc/api/v2/oauth/token
|
||
|
authorizationGrants: [ authorization_code, password, client_credentials, implicit, refresh_token ]
|
||
|
|
||
|
traits:
|
||
|
- pageable: !include traits/pageable.raml
|
||
|
- orderable: !include traits/orderable.raml
|
||
|
- searchable: !include traits/searchable.raml
|
||
|
|
||
|
schemas:
|
||
|
- topic: !include schemas/_topic.json
|
||
|
- synapse: !include schemas/_synapse.json
|
||
|
- map: !include schemas/_map.json
|
||
|
- mapping: !include schemas/_mapping.json
|
||
|
- token: !include schemas/_token.json
|
||
|
|
||
|
resourceTypes:
|
||
|
- base: !include resourceTypes/base.raml
|
||
|
- item: !include resourceTypes/item.raml
|
||
|
- collection: !include resourceTypes/collection.raml
|
||
|
|
||
|
/topics: !include apis/topics.raml
|
||
|
/synapses: !include apis/synapses.raml
|
||
|
/maps: !include apis/maps.raml
|
||
|
/mappings: !include apis/mappings.raml
|
||
|
/tokens: !include apis/tokens.raml
|