Skip to content

Instantly share code, notes, and snippets.

@zgunz42
Last active May 21, 2024 05:57
Show Gist options
  • Save zgunz42/8ece4d1f7a36ed782010898c9a0c1229 to your computer and use it in GitHub Desktop.
Save zgunz42/8ece4d1f7a36ed782010898c9a0c1229 to your computer and use it in GitHub Desktop.
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Data Seeding Schema",
"type": "array",
"items": {
"type": "object",
"properties": {
"model": { "type": "string" },
"rows": {
"type": "array",
"items": {
"type": "object"
}
}
},
"required": ["model", "rows"]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment