export const postPetSchema = {
type: "object",
properties: {
type: {type: "string"},
name: {type: "string"},
adoptionStatus: {type: "string"},
picturePath: {type: "string"},
size: {type: "string"},
color: {type: "string"},
bio: {type: "string"},
hypoallergenic: {type: "string"},
dietaryRestrictions: {type: "string"},
breed: {type: "string"},
},
}