Last active
May 21, 2024 05:57
-
-
Save zgunz42/8ece4d1f7a36ed782010898c9a0c1229 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$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