Skip to content

Instantly share code, notes, and snippets.

@seangoedecke
Created February 11, 2020 08:20
Show Gist options
  • Save seangoedecke/966c8ebd30193497a83d1c211423a9cb to your computer and use it in GitHub Desktop.
Save seangoedecke/966c8ebd30193497a83d1c211423a9cb to your computer and use it in GitHub Desktop.
---
openapi: 3.0.0
info:
version: TODO
title: TODO
paths:
"/api/v2/apps.json":
get:
responses:
'200':
description: TODO
content:
application/json:
schema:
type: object
properties:
apps:
type: array
items:
type: string
"/api/v2/apps/categories.json":
get:
responses:
'200':
description: TODO
content:
application/json:
schema:
type: object
properties:
categories:
type: array
items:
type: object
properties:
id:
type: integer
name:
type: string
key:
type: string
message:
type: string
description:
type: string
products:
type: array
items:
type: string
"/api/app_organizations/id-0/app_updates":
get:
responses:
'200':
description: TODO
content:
application/json:
schema:
type: array
items:
type: object
properties:
id:
type: integer
name:
type: string
updated_at:
type: string
state:
type: string
small_icon:
type: string
products:
type: array
items:
type: string
version:
type: string
is_update:
type: boolean
"/api/app_organizations/id-0":
get:
responses:
'200':
description: TODO
content:
application/json:
schema:
type: object
properties:
id:
type: integer
name:
type: string
sales_contact_name:
type: string
sales_contact_phone:
type: string
sales_contact_email:
type: string
escalation_number:
type: string
escalation_email:
type: string
emergency_contact_instructions:
type: string
support_email:
type: string
support_phone:
type: string
stripe_integration_id:
type: integer
description:
type: string
long_description:
type: string
website:
type: string
employee_range:
type: string
support_sla:
type: string
support_website:
type: string
address:
type: object
properties:
id:
type: integer
app_organization_id:
type: integer
country_code:
type: string
zip_code:
type: string
state:
type: string
city:
type: string
street_address:
type: string
address_type:
type: string
created_at:
type: string
updated_at:
type: string
logo:
type: string
app_organization_types:
type: array
items:
type: string
regions:
type: array
items:
type: string
services_offered:
type: array
items:
type: string
projects_count:
type: string
certifications_count:
type: string
state:
type: string
app_developers:
type: array
items:
type: object
properties:
email:
type: string
name:
type: string
role:
type: string
id:
type: integer
ratings:
type: array
items:
type: string
"/api/app_organizations/id-0/app_developers":
post:
responses:
'200':
description: TODO
content:
application/json:
schema:
type: object
properties:
id:
type: integer
name:
type: string
sales_contact_name:
type: string
sales_contact_phone:
type: string
sales_contact_email:
type: string
escalation_number:
type: string
escalation_email:
type: string
emergency_contact_instructions:
type: string
support_email:
type: string
support_phone:
type: string
stripe_integration_id:
type: integer
description:
type: string
long_description:
type: string
website:
type: string
employee_range:
type: string
support_sla:
type: string
support_website:
type: string
address:
type: object
properties:
id:
type: integer
app_organization_id:
type: integer
country_code:
type: string
zip_code:
type: string
state:
type: string
city:
type: string
street_address:
type: string
address_type:
type: string
created_at:
type: string
updated_at:
type: string
logo:
type: string
app_organization_types:
type: array
items:
type: string
regions:
type: array
items:
type: string
services_offered:
type: array
items:
type: string
projects_count:
type: string
certifications_count:
type: string
state:
type: string
app_developers:
type: array
items:
type: object
properties:
email:
type: string
name:
type: string
role:
type: string
id:
type: integer
ratings:
type: array
items:
type: string
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment