--- title: List Properties in the Document UI nextjs: metadata: title: List Properties in the Document UI description: How list properties work in the document UI software development kit. openGraph: images: https://assets.terminusdb.com/docs/technical-documentation-terminuscms-og.png alternates: canonical: https://terminusdb.org/docs/list/ media: [] --- This example shows how `` appears for a document called `OrderedPerson` with list fields in Create/ Edit and View mode. If a field is described as a List it means the field can have one or more values and is ordered. The field must have at least one entry. ## Demo Take a look at the [**Demo Playground**](https://documents-ui-playground.terminusdb.com/List) to view the `` with list properties in Create, Edit and View mode. ## Frame The below frame consists of an `OrderedPerson` document ```javascript let frame = { "@context": { "@base": "terminusdb:///data/", "@schema": "terminusdb:///schema#", "@type": "Context", "xsd": "http://www.w3.org/2001/XMLSchema#" }, "Address": { "@documentation": [ { "@comment": "An Address", "@label": "Address", "@language": "en", "@properties": { "AddressLine1": { "@comment": "Address Line one", "@label": "Address Line 1" }, "Country": { "@comment": "A Country ", "@label": "Country" }, "postalCode": { "@comment": "A valid Postal Code", "@label": "Zip Code" } } }, { "@comment": "მისამართი", "@label": "მისამართი", "@language": "ka", "@properties": { "AddressLine1": { "@comment": "მისამართის ხაზი პირველი", "@label": "მისამართის ხაზი 1" }, "Country": { "@comment": "Ქვეყანა", "@label": "ქვეყანა" }, "postalCode": { "@comment": "მოქმედი საფოსტო კოდი", "@label": "Ზიპ კოდი" } } } ], "@key": { "@type": "Random" }, "@subdocument": [], "@type": "Class", "AddressLine1": "xsd:string", "City": { "@class": "xsd:string", "@type": "Optional" }, "Country": "xsd:string", "postalCode": "xsd:string" }, "OrderedPerson": { "@key": { "@type": "Random" }, "@type": "Class", "hangs_out_at": { "@class": { "@class": "Address", "@subdocument": [] }, "@type": "List" }, "likes_color": { "@class": { "@id": "Colors", "@type": "Enum", "@values": [ "Red", "Blue", "Yellow", "Green" ] }, "@type": "List" }, "to_do": { "@class": "xsd:string", "@type": "List" } } } ``` ### Create ```python import { FrameViewer } from '@terminusdb/terminusdb-documents-ui' return // type of document ``` ### Edit & View Note - make sure to provide document values for View mode. The form will be in read only mode for View. ```javascript let data = { "@id": "OrderedPerson/c92d269b0dce719299bf86fc19f2065937ec4ef82d8a2a53702867a326d6144b", "@type": "OrderedPerson", "hangs_out_at" : [ { "@id": "OrderedPerson/3ca7d7a9c64ca2bc8319d83bca14b71697528ebb8536024e3e1795cbd049acdf/lived_at/Address/4f4fdae34ab4fa3b6297750917503a7137f75dc11589792de707e7a6d3502db3", "@type": "Address", "AddressLine1": "anywhere", "City": "Nice", "Country": "France", "postalCode": "FR27836" }, { "@id": "OrderedPerson/3ca7d7a9c64ca2bc8319d83bca14b71697528ebb8536024e3e1795cbd049acdf/lived_at/Address/7aaeeb6b983710a0adbc75de8f7d8104278df427124beadc6644b35b9d6c30af", "@type": "Address", "AddressLine1": "somewhere", "City": "Berlin", "Country": "Germany", "postalCode": "GER02398" } ], "likes_color": [ "Blue", "Green", "Red" ], "to_do": [ "First Thing", "Second Thing", "Third Thing" ] } return ```