SocialCrawl

App schema

The unified SocialCrawl app-store listing schema. Every field, its type, per-platform availability, and a machine-readable JSON Schema, generated from the canonical Zod source.

App schema

Every SocialCrawl endpoint that returns a app-store listing gives you this exact shape, whatever the source platform. Write your parser once and the same code reads app data from every platform below. That is the unified schema: one contract instead of a dozen raw upstream formats.

Field reference

FieldTypeNullableDescription
idstringNoStore app ID (Google Play package name / App Store numeric id)
storestringNoApp marketplace ("google_play" or "app_store")
urlstringYes
titlestringYesApp title
iconstringYes
descriptionstringYes
developer.idstringYes
developer.namestringYes
developer.urlstringYes
developer.emailstringYes
developer.addressstringYes
developer.websitestringYes
rating.valueintegerYes
rating.maxintegerYes
rating.countintegerYes
price.currentintegerYes
price.originalintegerYes
price.currencystringYes
price.is_freebooleanYes
price.displayedstringYes
reviews_countintegerYes
categorystringYes
categoriesstring[]Yes
installs.displaystringYes
installs.countintegerYes
versionstringYes
minimum_os_versionstringYes
sizestringYes
released_atstring or integerYesUnion: string | integer | null
updated_atstring or integerYesUnion: string | integer | null
update_notesstringYes
image_urlsstring[]YesScreenshot URLs
video_urlsstring[]Yes
languagesstring[]Yes
advisoriesstring[]YesApple age/content advisories (null on Google)
genresstring[]YesGoogle Play genres (null on Apple)
tagsstring[]Yes
similar_appsobject[]Yes
more_by_developerobject[]Yes

Platform availability

2 platforms return the App shape. id, store are never null on any platform. The fields below vary: yes means the platform populates it (the value may still be null); a blank means the platform never provides it, so it is always null.

Platformurltitleicondescriptiondeveloper.iddeveloper.namedeveloper.urldeveloper.emaildeveloper.addressdeveloper.websiterating.valuerating.max
Apple App Storeyesyesyesyesyesyesyesyesyesyesyesyes
Google Playyesyesyesyesyesyesyesyesyesyesyesyes

Machine-readable schema

Validate responses programmatically against the JSON Schema (2020-12):

/schemas/app.json

Point a validator (Ajv, jsonschema, or your framework's) at that URL, or hand it to an agent so it can check the shape without a live call.

Returned by

Endpoints with the App / AppList archetype return this shape:

Apple App Store · Google Play

See how the same fields map to each platform's raw upstream names in the cross-platform field equivalence table.

App schema | SocialCrawl