Skip to content

Instantly share code, notes, and snippets.

@sbischoff-ai
Last active December 30, 2020 10:34
Show Gist options
  • Save sbischoff-ai/6a40a6c907b0b96d3c503b1a868d255b to your computer and use it in GitHub Desktop.
Save sbischoff-ai/6a40a6c907b0b96d3c503b1a868d255b to your computer and use it in GitHub Desktop.
Just an address schema for openAPI spec files for people to copy-paste. Some things should just not be typed by any developer anywhere ever again.
components:
schemas:
Address:
type: object
required:
- address_line_1
- city
- zip_or_postal_code
properties:
address_line_1:
type: string
address_line_2:
type: string
city:
type: string
state_or_province:
type: string
zip_or_postal_code:
type: string
country:
type: string
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment