Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.



Page Properties
hiddentrue
idPROGRESSDONE

Product Version
Report Note
Assignee

Resources & Remarks

Modification History

NameDateProduct VersionAction
Antje11 JUN 20212021 SummerPage created and writing started.
Agnieszka26 JUL 20212021 SummerrLANG



Excerpt

This example tutorial provides explanations and code examples to get an idea on how to define and specify structured data properties and on how to query them.


Section
bordertrue


Column

Table of Contents

Table of Contents
maxLevel3
exclude(Table of Contents|Read on|Another Tutorial|Another Concept Article|Another interesting TutorialManaging the Schema|Importing Documents via Core API|Search Query Language)


Introduction

yuuvis® Momentum offers a property type for the storage of structured data in JSON format. Thus, it is possible to store interleaved data structures in a queryable way without defining each single sub-property in the schema. The structured data properties should NOT be considered to replace the concept of a well-defined schema. They should be used only if the handling of objects' metadata via the conventional property definitions is not reasonable. Especially, if the structure of metadata and/or the availability of properties differs a lot for the individual object instances, the schema might grow up to a really long list of scarcely used properties. This can be avoided by the usage of a property field that can store a JSON structure as value. In this tutorial, the registration bibliographic information of media in a library is considered an example use case. For this purpose, the set of information for each medium is provided in JSON structure following the concept of BibJSON.

>> Code examples in GitHub

Requirements

This tutorial is dedicated to experienced users. Please find information on requirements, maven and client configuration in our "Importing Documents via Core API" tutorial, on which the variables' names are based. The handling of any IOException is demonstrated there, too.

Definition in the Schema

In the context of the library example, the below displayed app schema is used that . It contains two property definitions and one object type definition referencing the properties. The first property bibjsonsample:bibjson has the property type structureddata. Its id matches the expression expected for the validation and the cardinality is single which is the only accepted value.
>> Structured Data Properties

This property will be used for the storage of the BibJSON structure containing the registration bibliographic information of the corresponding medium. The second property bibjsonsample:locations allows for the assignment of a list of strings indicating storage locations if a printed version is available for the corresponding medium. In the object type definition of bibjsonsample:medium, both properties are referenced. Additionally, a binary content file can be assigned if necessary as defined in line 25 with the value allowed for the contentStreamAllowed attribute.

Code Block
languagexml
titleExample Schema
linenumberstrue
collapsetrue
<?xml version="1.0" encoding="utf-8"?>
<schema xmlns="http://optimal-systems.org/ns/dmscloud/schema/v5.0/"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://optimal-systems.org/ns/dmscloud/schema/v5.0/ dmsCloud-schema.xsd">

    <propertyStructuredDataDefinition>
        <id>bibjsonsample:bibjson</id>
        <description>field for the BibJSON structure identifying and describing the medium</description>
        <propertyType>structureddata</propertyType>
        <cardinality>single</cardinality>
        <required>false</required>
    </propertyStructuredDataDefinition>
    <propertyStringDefinition>
        <id>bibjsonsample:locations</id>
        <description>field for storage locations of printed versions of the medium</description>
        <propertyType>string</propertyType>
        <cardinality>multi</cardinality>
        <required>false</required>
    </propertyStringDefinition>
    <typeDocumentDefinition>
        <id>bibjsonsample:medium</id>
        <baseId>system:document</baseId>
        <propertyReference>bibjsonsample:bibjson</propertyReference>
        <propertyReference>bibjsonsample:locations</propertyReference>
        <contentStreamAllowed>allowed</contentStreamAllowed>
    </typeDocumentDefinition>

</schema>

...

The schema for the bibjsonsample app is imported via the POST /api/system/apps/{app}/schema endpoint.

More details and further examples on schema handling are provided in the following tutorial:
>> Managing the Schema

Specifying Values during Import

Two example objects will be created as instances of the object type abbBibjsonsample:medium object type. Both of them get are assigned a BibJSON value for the property appbibjsonsample:bibjson assigned to them. property.
>> Structured Data in Import Bodies

For the individual sub-values of the structured data property, the system can identify integers, booleans and strings. The successfully executed import returns the entire set of metadata for each object, enriched with the system properties.

The first example object is a book. In addition to the The bibliographic information stored in the appBibjsonsample:bibjson property contains one integer value specified in line 21. All other sub-values are stored as strings. In addition to the appBibjsonsample:bibjson property, two storage locations for printed versions are specified.

Code Block
collapse
languageyml
titleimport request bookImport Request for a Book
linenumberstruetrue
{
  "objects": [{
    "properties": {
      "objectTypeId": {
        "value": "appBibjsonsample:medium"
      },
      "appBibjsonsample:bibjson": {
        "value": {
          "type": "book",
          "title": "My Book Title",
          "author": [
            {"name": "Heinrich Schuetzel"},
            {"name": "Maximilian Sturz"}
          ],
          "year": "1995",
          "owner": "My Library",
          "id": "ID_of_book",
          "url": "http://mylibrary.com/ebooks/36513466534",
          "publisher": "Example Verlag Mustershagen",
          "edition": {
            "number": 2,
            "language": "English"
          },
          "identifier":[
            {
              "id": "0002-9327",
              "type": "issn"
            }
          ]
        }
      },
      "appBibjsonsample:locations": {
        "value": [
          "central library, CN-3214-5324",
          "branch library east, 43-654b"
        ]
      }
    }
  }]
}

The second object is a collection of articles without corresponding printed versions.


language
Code Block
ymltitleimport request collectionImport Response for a Book
linenumberstrue
collapsetrue
{
    "objects": [{
    "properties": {    {
  "objectTypeId": {         "valueproperties": "appBibjsonsample:medium" {
         },       "appBibjsonsamplesystem:bibjsonobjectId": {
        "value": {           "metadatavalue": {
 "aab2b4d9-e829-45dd-981a-2f19a688592d"
             "collection": "ym_concepts"   },
            "label    "system:baseTypeId": "yuuvis(R) Momentum Core Concepts",{
                    "descriptionvalue": "Documentationsystem:document"
for yuuvis(R) Momentum Core in a structured, theoretical way, with links to the tutorial section.",  },
          "id": "ID_of_collection",     "system:objectTypeId": {
      "owner": "OS",             "createdvalue": "2020-06-09T15:04:12.944Z",appBibjsonsample:medium"
               "modified": "2021-06-10T11:05:17.166Z" },
            "source    "system:createdBy": "https://help.optimal-systems.com/yuuvis_develop/display/YMY/x/-4BkAg", {
                    "recordsvalue": 2"275c826c-6a61-4e89-9512-8d935a1631e5"
                },
          "records": [     "system:creationDate": {
      {
              "collectionvalue": "ym_concepts",2021-06-14T13:10:52.280Z"
               "type": "article", },
                "titlesystem:lastModifiedBy": "Schema{
  - Defining Object Types",               "idvalue": "ID_of_schema_article",275c826c-6a61-4e89-9512-8d935a1631e5"
               "link": "https://help.optimal-systems.com/yuuvis_develop/display/YMY/x/AYFkAg" },
                "authorsystem:lastModificationDate":[ {
                    {"namevalue": "Heinrich Schuetzel"},2021-06-14T13:10:52.280Z"
                {"name": "George Trader"},
                {"namesystem:versionNumber": "Johann{
Fluss"}               ],     "value": 1
        "created": "2020-06-09T15:04:12.944Z",        },
      "modified": "2021-06-10T08:53:23.532Z"         "system:tenant": {
  },             {               "collection""value": "ym_conceptsdefault",
               "type": "article", },
                "titlesystem:traceId": "Search Query Language",{
                    "idvalue": "ID_of_query_article",5681d3bddb4279de"
               "link": "https://help.optimal-systems.com/yuuvis_develop/display/YMY/x/gIFkAg" },
                "authorappBibjsonsample:bibjson":[ {
                    {"namevalue": "Andrea Schumann"}, {
                        {"nametype": "Franz Lissnerbook"},
                {"name        "title": "HansMy Book KammerTitle"},
                {"name        "author": "Johann[
Fluss"}               ],             {
 "created": "2020-06-16T14:03:01.833Z",               "modified": "2021-06-02T09:54:12.643Z"             } "name": "Heinrich Schuetzel"
       ]         }       }     },
  }] }

The successfully executed import returns the entire sets of metadata for each object, enriched with the system properties.

Code Block
languageyml
titleimport reaponse book
linenumberstrue
collapsetrue
{     "objects": [         {          {
  "properties": {                 "system:objectId": {           "name": "Maximilian Sturz"
       "value": "aab2b4d9-e829-45dd-981a-2f19a688592d"                     },
                  "system:baseTypeId": {     ],
               "value": "system:document"        "year": "1995",
       },                 "system:objectTypeId": {owner": "My Library",
                        "valueid": "appBibjsonsample:medium"ID_of_book",
                },           "url": "http://mylibrary.com/ebooks/36513466534",
     "system:createdBy": {                     "valuepublisher": "275c826c-6a61-4e89-9512-8d935a1631e5"Example Verlag Mustershagen",
                },        "edition": {
       "system:creationDate": {                     "valuenumber": "2021-06-14T13:10:52.280Z"
  2,
             },                 "system:lastModifiedBylanguage": {"English"
                    "value": "275c826c-6a61-4e89-9512-8d935a1631e5"   },
             },           "identifier": [
    "system:lastModificationDate": {                     "value": "2021-06-14T13:10:52.280Z"
 {
               },                 "system:versionNumberid": {"0002-9327",
                    "value": 1           "type": "issn"
    },                 "system:tenant": {      }
              "value": "default"         ]
       },             }
   "system:traceId": {            },
        "value": "5681d3bddb4279de"                 },
                "appBibjsonsample:bibjsonlocations": {
                    "value": {[
                        "type": "bookcentral library, CN-3214-5324",
                        "title": "My Book Title",branch library east, 43-654b"
                    ]
   "author":  [           }
            }
    {    }
    ]
}

The second example object is a collection of articles without corresponding printed versions. The structure of the JSON value for the appBibjsonsample:bibjson property looks completely different.

Code Block
languageyml
titleImport Request for a Collection
linenumberstrue
{
  "objects": [{
    "properties": {
      "objectTypeId": {
        "namevalue": "Heinrich SchuetzelappBibjsonsample:medium"
      },
      "appBibjsonsample:bibjson": {
        "value": {
   },       "metadata": {
            "collection": "ym_concepts",
      {      "label": "yuuvis(R) Momentum Core Concepts",
                      "name"description": "MaximilianDocumentation Sturz"
             for yuuvis(R) Momentum Core in a structured, theoretical way, with links to the tutorial section.",
            "id":  }"ID_of_collection",
            "owner": "OS",
           ], "created": "2020-06-09T15:04:12.944Z",
                      "year"modified": "19952021-06-10T11:05:17.166Z",
            "source": "https://help.optimal-systems.com/yuuvis_develop/display/YMY/Concepts",
            "ownerrecords": "My2
Library",          },
          "records": [
  "id": "ID_of_book",          {
              "urlcollection": "http://mylibrary.com/ebooks/36513466534",
        ym_concepts",
               "publishertype": "Example Verlag Mustershagenarticle",
                        "edition"title": {"Schema - Defining Object Types",
              "id": "ID_of_schema_article",
        "number": 2      "link": "https://help.optimal-systems.com/yuuvis_develop/display/YMY/Schema+-+Defining+Object+Types",
              "author":[
                {"languagename": "EnglishHeinrich Schuetzel"},
                {"name": "George Trader"},
     },           {"name": "Johann Fluss"}
           "identifier": [  ],
              "created": "2020-06-09T15:04:12.944Z",
           {   "modified": "2021-06-10T08:53:23.532Z"
            },
            {
  "id": "0002-9327",               "collection": "ym_concepts",
                 "type": "issnarticle",
              "title": "Search Query Language",
          }    "id": "ID_of_query_article",
              "link": "https://help.optimal-systems.com/yuuvis_develop/display/YMY/Search+Query+Language",
   ]           "author":[
         }       {"name":          "Andrea Schumann"},
                {"appBibjsonsample:locationsname": {
"Franz Lissner"},
                   {"valuename": [
"Hans Kammer"},
                {"name": "Johann Fluss"}
    "central library, CN-3214-5324",        ],
                "branch library east, 43-654b""created": "2020-06-16T14:03:01.833Z",
              "modified": "2021-06-02T09:54:12.643Z"
     ]       }
         } ]
        }
  }    }
    }
    }]
}


yml
Code Block
language
titleimport response collectionImport Response for a Collection
linenumberstruecollapsetrue
{
    "objects": [
        {
            "properties": {
                "system:objectId": {
                    "value": "3d4a67be-3341-4317-bb57-c48ea7ab0a1a"
                },
                "system:baseTypeId": {
                    "value": "system:document"
                },
                "system:objectTypeId": {
                    "value": "appBibjsonsample:medium"
                },
                "system:createdBy": {
                    "value": "275c826c-6a61-4e89-9512-8d935a1631e5"
                },
                "system:creationDate": {
                    "value": "2021-06-14T13:11:57.770Z"
                },
                "system:lastModifiedBy": {
                    "value": "275c826c-6a61-4e89-9512-8d935a1631e5"
                },
                "system:lastModificationDate": {
                    "value": "2021-06-14T13:11:57.770Z"
                },
                "system:versionNumber": {
                    "value": 1
                },
                "system:tenant": {
                    "value": "default"
                },
                "system:traceId": {
                    "value": "22839c5775801e9c"
                },
                "appBibjsonsample:bibjson": {
                    "value": {
                        "metadata": {
                            "collection": "ym_concepts",
                            "label": "yuuvis(R) Momentum Core Concepts",
                            "description": "Documentation for yuuvis(R) Momentum Core in a structured, theoretical way, with links to the tutorial section.",
                            "id": "ID_of_collection",
                            "owner": "OS",
                            "created": "2020-06-09T15:04:12.944Z",
                            "modified": "2021-06-10T11:05:17.166Z",
                            "source": "https://help.optimal-systems.com/yuuvis_develop/display/YMY/x/-4BkAg",
                            "records": 2
                        },
                        "records": [
                            {
                                "collection": "ym_concepts",
                                "type": "article",
                                "title": "Schema - Defining Object Types",
                                "id": "ID_of_schema_article",
                                "link": "https://help.optimal-systems.com/yuuvis_develop/display/YMY/x/AYFkAg",
                                "author": [
                                    {
                                        "name": "Heinrich Schuetzel"
                                    },
                                    {
                                        "name": "George Trader"
                                    },
                                    {
                                        "name": "Johann Fluss"
                                    }
                                ],
                                "created": "2020-06-09T15:04:12.944Z",
                                "modified": "2021-06-10T08:53:23.532Z"
                            },
                            {
                                "collection": "ym_concepts",
                                "type": "article",
                                "title": "Search Query Language",
                                "id": "ID_of_query_article",
                                "link": "https://help.optimal-systems.com/yuuvis_develop/display/YMY/x/gIFkAg",
                                "author": [
                                    {
                                        "name": "Andrea Schumann"
                                    },
                                    {
                                        "name": "Franz Lissner"
                                    },
                                    {
                                        "name": "Hans Kammer"
                                    },
                                    {
                                        "name": "Johann Fluss"
                                    }
                                ],
                                "created": "2020-06-16T14:03:01.833Z",
                                "modified": "2021-06-02T09:54:12.643Z"
                            }
                        ]
                    }
                }
            }
        }
    ]
}

Search Queries

The individual sub-fields values within the JSON value for the property  appBibjsonsample:bibjson property are queryable.
>> Queries on Structured Data

In this chapter, some example search queries are explained.All

Example 1

This query statement requests a search for all objects of type medium.

Code Block
languagesql
SELECT * FROM appBibjsonsample:medium

...

appBibjsonsample:medium. The full set of metadata will be returned for each of them. In the example context of this tutorial, only two objects match the query: The book and the collection that were imported before.

Code Block
languagesql
SELECT * FROM appBibjsonsample:medium


Code Block
titleRequest Body
linenumberstrue
{
    "objects": [
        {
            "properties": {
                "system:traceId": {
                    "value": "5681d3bddb4279de"
                },
                "system:objectTypeId": {
                    "value": "appBibjsonsample:medium"
                },
                "appBibjsonsample:bibjson": {
                    "value": {
                        "type": "book",
                        "title": "My Book Title",
                        "author": [
                            {
                                "name": "Heinrich Schuetzel"
                            },
                            {
                                "name": "Maximilian Sturz"
                            }
                        ],
                        "year": "1995",
                        "owner": "My Library",
                        "id": "ID_of_book",
                        "url": "http://mylibrary.com/ebooks/36513466534",
                        "publisher": "Example Verlag Mustershagen",
                        "edition": {
                            "number": 2,
                            "language": "English"
                        },
                        "identifier": [
                            {
                                "id": "0002-9327",
                                "type": "issn"
                            }
                        ]
                    }
                },
                "system:versionNumber": {
                    "value": 1
                },
                "system:createdBy": {
                    "value": "275c826c-6a61-4e89-9512-8d935a1631e5"
                },
                "system:creationDate": {
                    "value": "2021-06-14T13:10:52.280Z"
                },
                "system:lastModificationDate": {
                    "value": "2021-06-14T13:10:52.280Z"
                },
                "system:baseTypeId": {
                    "value": "system:document"
                },
                "system:tenant": {
                    "value": "default"
                },
                "appBibjsonsample:locations": {
                    "value": [
                        "central library, CN-3214-5324",
                        "branch library east, 43-654b"
                    ]
                },
                "system:lastModifiedBy": {
                    "value": "275c826c-6a61-4e89-9512-8d935a1631e5"
                },
                "system:objectId": {
                    "value": "aab2b4d9-e829-45dd-981a-2f19a688592d"
                }
            }
        },
        {
            "properties": {
                "system:traceId": {
                    "value": "22839c5775801e9c"
                },
                "system:objectTypeId": {
                    "value": "appBibjsonsample:medium"
                },
                "appBibjsonsample:bibjson": {
                    "value": {
                        "metadata": {
                            "collection": "ym_concepts",
                            "label": "yuuvis(R) Momentum Core Concepts",
                            "description": "Documentation for yuuvis(R) Momentum Core in a structured, theoretical way, with links to the tutorial section.",
                            "id": "ID_of_collection",
                            "owner": "OS",
                            "created": "2020-06-09T15:04:12.944Z",
                            "modified": "2021-06-10T11:05:17.166Z",
                            "source": "https://help.optimal-systems.com/yuuvis_develop/display/YMY/x/-4BkAg",
                            "records": 2
                        },
                        "records": [
                            {
                                "collection": "ym_concepts",
                                "type": "article",
                                "title": "Schema - Defining Object Types",
                                "id": "ID_of_schema_article",
                                "link": "https://help.optimal-systems.com/yuuvis_develop/display/YMY/x/AYFkAg",
                                "author": [
                                    {
                                        "name": "Heinrich Schuetzel"
                                    },
                                    {
                                        "name": "George Trader"
                                    },
                                    {
                                        "name": "Johann Fluss"
                                    }
                                ],
                                "created": "2020-06-09T15:04:12.944Z",
                                "modified": "2021-06-10T08:53:23.532Z"
                            },
                            {
                                "collection": "ym_concepts",
                                "type": "article",
                                "title": "Search Query Language",
                                "id": "ID_of_query_article",
                                "link": "https://help.optimal-systems.com/yuuvis_develop/display/YMY/x/gIFkAg",
                                "author": [
                                    {
                                        "name": "Andrea Schumann"
                                    },
                                    {
                                        "name": "Franz Lissner"
                                    },
                                    {
                                        "name": "Hans Kammer"
                                    },
                                    {
                                        "name": "Johann Fluss"
                                    }
                                ],
                                "created": "2020-06-16T14:03:01.833Z",
                                "modified": "2021-06-02T09:54:12.643Z"
                            }
                        ]
                    }
                },
                "system:lastModificationDate": {
                    "value": "2021-06-14T13:11:57.770Z"
                },
                "system:versionNumber": {
                    "value": 1
                },
                "system:baseTypeId": {
                    "value": "system:document"
                },
                "system:tenant": {
                    "value": "default"
                },
                "system:createdBy": {
                    "value": "275c826c-6a61-4e89-9512-8d935a1631e5"
                },
                "system:creationDate": {
                    "value": "2021-06-14T13:11:57.770Z"
                },
                "system:lastModifiedBy": {
                    "value": "275c826c-6a61-4e89-9512-8d935a1631e5"
                },
                "system:objectId": {
                    "value": "3d4a67be-3341-4317-bb57-c48ea7ab0a1a"
                }
            }
        }
    ],
    "numItems": 2,
    "hasMoreItems": false,
    "totalNumItems": 2
}

...

Example 2

In order to return only the bibliographic information in the result list of the search request, select the appBibjsonsample:bibjson property.

Code Block
languagesql
SELECT appBibjsonsample:bibjson FROM appBibjsonsample:medium


Code Block
languageyml
titleresponse bodyRequest Body
linenumberstrue
collapsetrue
{
    "objects": [
        {
            "properties": {
                "appBibjsonsample:bibjson": {
                    "value": {
                        "type": "book",
                        "title": "My Book Title",
                        "author": [
                            {
                                "name": "Heinrich Schuetzel"
                            },
                            {
                                "name": "Maximilian Sturz"
                            }
                        ],
                        "year": "1995",
                        "owner": "My Library",
                        "id": "ID_of_book",
                        "url": "http://mylibrary.com/ebooks/36513466534",
                        "publisher": "Example Verlag Mustershagen",
                        "edition": {
                            "number": 2,
                            "language": "English"
                        },
                        "identifier": [
                            {
                                "id": "0002-9327",
                                "type": "issn"
                            }
                        ]
                    }
                }
            }
        },
        {
            "properties": {
                "appBibjsonsample:bibjson": {
                    "value": {
                        "metadata": {
                            "collection": "ym_concepts",
                            "label": "yuuvis(R) Momentum Core Concepts",
                            "description": "Documentation for yuuvis(R) Momentum Core in a structured, theoretical way, with links to the tutorial section.",
                            "id": "ID_of_collection",
                            "owner": "OS",
                            "created": "2020-06-09T15:04:12.944Z",
                            "modified": "2021-06-10T11:05:17.166Z",
                            "source": "https://help.optimal-systems.com/yuuvis_develop/display/YMY/x/-4BkAg",
                            "records": 2
                        },
                        "records": [
                            {
                                "collection": "ym_concepts",
                                "type": "article",
                                "title": "Schema - Defining Object Types",
                                "id": "ID_of_schema_article",
                                "link": "https://help.optimal-systems.com/yuuvis_develop/display/YMY/x/AYFkAg",
                                "author": [
                                    {
                                        "name": "Heinrich Schuetzel"
                                    },
                                    {
                                        "name": "George Trader"
                                    },
                                    {
                                        "name": "Johann Fluss"
                                    }
                                ],
                                "created": "2020-06-09T15:04:12.944Z",
                                "modified": "2021-06-10T08:53:23.532Z"
                            },
                            {
                                "collection": "ym_concepts",
                                "type": "article",
                                "title": "Search Query Language",
                                "id": "ID_of_query_article",
                                "link": "https://help.optimal-systems.com/yuuvis_develop/display/YMY/x/gIFkAg",
                                "author": [
                                    {
                                        "name": "Andrea Schumann"
                                    },
                                    {
                                        "name": "Franz Lissner"
                                    },
                                    {
                                        "name": "Hans Kammer"
                                    },
                                    {
                                        "name": "Johann Fluss"
                                    }
                                ],
                                "created": "2020-06-16T14:03:01.833Z",
                                "modified": "2021-06-02T09:54:12.643Z"
                            }
                        ]
                    }
                }
            }
        }
    ],
    "numItems": 2,
    "hasMoreItems": false,
    "totalNumItems": 2
}

Return only parts of the bibjson value

...

languagesql

...

Example 3

It is even possible to return specified sub-values of the JSON structure stored in the appBibjsonsample:bibjson

...

property. If you specify an index within a list, the values for the list elements with lower indices will be replaced by null in the return statement as can be seen in line 9.

Code Block
languagesql
SELECT appBibjsonsample:bibjson.title,appBibjsonsample:bibjson.author[1].name,appBibjsonsample:bibjson.metadata.id FROM appBibjsonsample:medium


yml
Code Block
language
collapse
titleresponse bodyRequest Body
linenumberstruetrue
{
    "objects": [
        {
            "properties": {
                "appBibjsonsample:bibjson": {
                    "value": {
                        "title": "My Book Title",
                        "author": [
                            null,
                            {
                                "name": "Maximilian Sturz"
                            }
                        ]
                    }
                }
            }
        },
        {
            "properties": {
                "appBibjsonsample:bibjson": {
                    "value": {
                        "metadata": {
                            "id": "ID_of_collection"
                        }
                    }
                }
            }
        }
    ],
    "numItems": 2,
    "hasMoreItems": false,
    "totalNumItems": 2
}

Example 4

If you know the path is unknown, a '*' wildcard can be usedof the sub-value within the JSON you want to query, you can directly specify it. The example query configures a search for a specific medium identified by its bibliographic ID.

Code Block
languagesql
SELECT appBibjsonsample:bibjson.metadata.idtitle FROM appBibjsonsample:medium WHERE appBibjsonsample:bibjson.*id = 'ID_of_schema_articlebook'


yml
Code Block
language
titleresponse bodyRequest Body
linenumberstrue
collapsetrue
{
    "objects": [
        {
            "properties": {
                "appBibjsonsample:bibjson": {
                    "value": {
                        "metadatatitle": {"My Book Title",
                          "idauthor": "ID_of_collection" [
                          }  null,
                  }          {
      }             }         }     ],
"name": "Maximilian Sturz"
   "numItems": 1,     "hasMoreItems": false,     "totalNumItems": 1 }

Search within a list and usage of CONTAINS

Code Block
languagesql
SELECT appBibjsonsample:bibjson.title FROM appBibjsonsample:medium WHERE appBibjsonsample:bibjson.author[*].name CONTAINS('Sturz')
Code Block
languageyml
titleresponse body
linenumberstrue
collapsetrue
{     "objects":}
[         {             "properties": { ]
               "appBibjsonsample:bibjson": {    }
                "value":}
{            }
        }
   "title": "My Book Title" ],
    "numItems": 1,
    "hasMoreItems": false,
    "totalNumItems": 1
}

Example 5

If you want to search for an object with a specific sub-value but unknown path, a * wildcard can be used. Each object containing the string ID_of_schema_article as a sub-value for the appBibjsonsample:bibjson property will match the query.

Code Block
languagesql
SELECT appBibjsonsample:bibjson.metadata.id FROM appBibjsonsample:medium }WHERE appBibjsonsample:bibjson.* = 'ID_of_schema_article'


Code Block
titleRequest Body
linenumberstrue
{
    "objects": [
       } {
           } "properties": {
                "appBibjsonsample:bibjson": {
                    "value": {
                        "metadata": {
                            "id": "ID_of_collection"
                        }
                    }
                }
            }
        }
    ],
    "numItems": 1,
    "hasMoreItems": false,
    "totalNumItems": 1
}

Example 6

The * wildcard can also be used instead of a specific index within a list. Thus, the condition will be checked for each list entry. Furthermore, full-text search with CONTAINS is possible in case of string sub-values.

Code Block
languagesql
SELECT appBibjsonsample:bibjson.title FROM appBibjsonsample:medium WHERE appBibjsonsample:bibjson.author[*].name CONTAINS('Sturz')


Code Block
titleRequest Body
linenumberstrue
{
    "objects": [
        {
            "properties": {
                "appBibjsonsample:bibjson": {
                    "value": {
                        "title": "My Book Title"
                    }
                }
            }
        }
    ],
    "numItems": 1,
    "hasMoreItems": false,
    "totalNumItems": 1
}

Example 7

Use .. in order to replace unknown parts of a path. The query below specifies a search for objects where the appBibjsonsample:bibjson property contains Schuetzel in the value for the author[*].name key which can be located at any hierarchical level within the JSON. Furthermore, only key-value mappings for keys named id will be displayed in the response body.

Code Block
languagesql
SELECT appBibjsonsample:bibjson..id FROM appBibjsonsample:medium WHERE appBibjsonsample:bibjson..author[*].name CONTAINS('Schuetzel')


Code Block
titleRequest Body
linenumberstrue
{
    "objects": [
        {
            "properties": {
                "appBibjsonsample:bibjson": {
                    "value": {
                        "id": "ID_of_book",
                        "identifier": [
                            {
                                "id": "0002-9327"
                            }
                        ]
                    }
                }
            }
        },
        {
            "properties": {
                "appBibjsonsample:bibjson": {
                    "value": {
                        "metadata": {
                            "id": "ID_of_collection"
                        },
                        "records": [
                            {
                                "id": "ID_of_schema_article"
                            },
                            {
                                "id": "ID_of_query_article"
                            }
                        ]
                    }
                }
            }
        }
    ],
    "numItems": 12,
    "hasMoreItems": false,
    "totalNumItems":   "hasMoreItems": false,
    "totalNumItems": 1
}

...

2
}

Summary

The structureddata property type allows for the storage of interleaved data structures in a queryable way without defining each single sub-property in the schema. This tutorial gave some explanations on how to define such a property in the schema, how to set a value during object creation and how to address the individual sub-values in search queries, in the example context of a library.

>> Code examples in GitHub

Info
iconfalse

Read on

Section


Column
width25%

...

Another Tutorial

...

Managing the Schema

Insert excerpt
Managing the Schema
Managing the Schema
nopaneltrue
 Keep reading


Column
width25%

Another Concept Article

Importing Documents via Core API

Insert excerpt
Importing Documents via Core API
Importing Documents via Core API
nopaneltrue
 Keep reading


Column
width25%

...

Another interesting Tutorial

...

Search Query Language

Insert excerpt
Search Query Language
Search Query Language
nopaneltrue
 Keep reading