{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/flipdish/refs/heads/main/json-schema/apps-mobile-apps-submission-schema.json", "title": "MobileAppsSubmission", "description": "Mobile Apps form submission", "type": "object", "properties": { "SubmissionId": { "format": "int32", "description": "Mobile Apps Submission Id", "type": "integer", "example": 500123 }, "AppName": { "description": "App Name", "type": "string", "example": "Example Name" }, "AppDescription": { "description": "App Description", "type": "string", "example": "string" }, "AppShortDescription": { "description": "App Description", "type": "string", "example": "string" }, "Keywords": { "description": "Keywords", "type": "array", "items": { "type": "string" }, "example": [ "string" ] }, "AutoPublish": { "description": "Publish automatically", "type": "boolean", "example": true } }, "required": [ "AppName", "AppDescription", "AppShortDescription" ] }