feat: Generate Schema Files - 18113073 (no-changelog) (#12927)

Co-authored-by: Elias Meire <elias@meire.dev>
This commit is contained in:
Jon
2025-01-30 14:59:04 +00:00
committed by GitHub
parent cdfa22593b
commit 9d027339fd
661 changed files with 76670 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
{
"type": "object",
"properties": {
"status": {
"type": "string"
},
"id": {
"type": "string"
}
},
"required": [
"status",
"id"
]
}

View File

@@ -0,0 +1,11 @@
{
"type": "object",
"properties": {
"success": {
"type": "boolean"
}
},
"required": [
"success"
]
}

View File

@@ -0,0 +1,22 @@
{
"type": "object",
"properties": {
"Modified Date": {
"type": "string"
},
"Created Date": {
"type": "string"
},
"Created By": {
"type": "string"
},
"_id": {
"type": "string"
}
},
"required": [
"Modified Date",
"Created Date",
"_id"
]
}

View File

@@ -0,0 +1,22 @@
{
"type": "object",
"properties": {
"Created Date": {
"type": "string"
},
"Created By": {
"type": "string"
},
"Modified Date": {
"type": "string"
},
"_id": {
"type": "string"
}
},
"required": [
"Created Date",
"Modified Date",
"_id"
]
}

View File

@@ -0,0 +1,8 @@
{
"type": "object",
"properties": {
"success": {
"type": "boolean"
}
}
}