Skip to content

Instantly share code, notes, and snippets.

@maapteh
Created May 7, 2022 09:56
Show Gist options
  • Save maapteh/e12e40668ba4743412e7251b0905589f to your computer and use it in GitHub Desktop.
Save maapteh/e12e40668ba4743412e7251b0905589f to your computer and use it in GitHub Desktop.
Pet
Pet: {
/**
* Format: int64
* @example 10
*/
id?: number;
/** @example doggie */
name: string;
category?: components["schemas"]["Category"];
photoUrls: string[];
tags?: components["schemas"]["Tag"][];
/**
* @description pet status in the store
* @enum {string}
*/
status?: "available" | "pending" | "sold";
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment