{ "$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-details-schema.json", "title": "MobileAppsSubmissionDetails", "description": "Mobile Apps form submission", "type": "object", "properties": { "MobileAppsSubmissionId": { "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" ] }, "AppLogoUrl": { "description": "Logo URL", "type": "string", "example": "https://api.flipdish.co/example" }, "AutoPublish": { "description": "Publish automatically", "type": "boolean", "example": true }, "Status": { "description": "Mobile App Status", "type": "array", "items": { "$ref": "#/components/schemas/MobileAppsSubmissionStatus" }, "example": [] } } }