\n","Structured representation of the JSON-LD example.","{\n \"@context\": \"https://schema.org/\",\n \"@type\": \"MobileApplication\",\n \"applicationCategory\": \"https://en.wikipedia.org/wiki/E-reader\",\n \"supportingData\": {\n \"@type\": \"DataFeed\",\n \"dataFeedElement\": [\n {\n \"@type\": \"Book\",\n \"name\": \"Anna Karenina\",\n \"sameAs\": \"https://en.wikipedia.org/wiki/Anna_Karenina\"\n },\n {\n \"@type\": \"Book\",\n \"name\": \"Pride and Prejudice\",\n \"sameAs\": \"https://en.wikipedia.org/wiki/Pride_and_Prejudice\"\n },\n {\n \"@type\": \"Book\",\n \"name\": \"My Bondage and My Freedom\",\n \"sameAs\": \"https://en.wikipedia.org/wiki/My_Bondage_and_My_Freedom\"\n }\n ]\n }\n }","Terms and conditions","\n \n Schema.org\n \n V27.02\n |\n 2024-07-01\n "]}
Note: You are viewing the development version of Schema.org. See how we work for more details.

supportingData

A Schema.org Property
Supporting data for a SoftwareApplication.

Values expected to be one of these types

Used on these types

Examples

Example 1
Copied
Example notes or example HTML without markup.
The e-reader comes installed with Anna Karenina, Pride and Prejudice, and My Bondage and My Freedom
Example encoded as JSON-LD in a HTML script tag.
<script type="application/ld+json">
  {
    "@context": "https://schema.org/",
    "@type": "MobileApplication",
    "applicationCategory": "https://en.wikipedia.org/wiki/E-reader",
    "supportingData": {
      "@type": "DataFeed",
      "dataFeedElement": [
        {
          "@type": "Book",
          "name": "Anna Karenina",
          "sameAs": "https://en.wikipedia.org/wiki/Anna_Karenina"
        },
        {
          "@type": "Book",
          "name": "Pride and Prejudice",
          "sameAs": "https://en.wikipedia.org/wiki/Pride_and_Prejudice"
        },
        {
          "@type": "Book",
          "name": "My Bondage and My Freedom",
          "sameAs": "https://en.wikipedia.org/wiki/My_Bondage_and_My_Freedom"
        }
      ]
    }
  }

</script>
Structured representation of the JSON-LD example.