Existing Data Exchange Methods/Systems

Descrição

Year 11 Digital Technologies Mapa Mental sobre Existing Data Exchange Methods/Systems, criado por Rebbecca Stanley em 14-08-2022.
Rebbecca Stanley
Mapa Mental por Rebbecca Stanley, atualizado 1 dia atrás
Rebbecca Stanley
Criado por Rebbecca Stanley quase 2 anos atrás
10
0

Resumo de Recurso

Existing Data Exchange Methods/Systems
  1. Data Interface - how JSON is presented
    1. Tables
      1. HTML tables can be used to display data for the user.
        1. Because each JSON data is stored in an object, these can be used as headings for HTML tables when displaying/outputting information to the user.
      2. Sample Data
        1. JSON (W3Schools, n.d.)
            1. Uses "{ }" to define objects (W3Schools, n.d.)
              1. Uses "[ ]" to define arrays (W3Schools, n.d.)
              2. XML (W3Schools, n.d.)
                  1. Uses opening and closing tags (< > and </ >) (W3Schools, n.d.)
                    1. User determines tag names (not pre-defined) (e.g. "<note>" and "</note>") (W3Schools, n.d.)
                  2. HTML
                    1. HTML used to display selected data from the API, and structure the web page
                      1. Creates text: uses tags like <h1> and <p> to display the API responses as text for users to read.
                        1. Creates menu bar: uses tags like <div> to separate parts of the webpage into different parts, like a header at the top of the page.
                      2. CSS
                        1. Used to style the different HTML elements to make the web app engaging and interesting for the users and user persona
                          1. Can change colours: use "color" property to specify a predefine CSS colour, or use a HEX code.
                            1. e.g. HEX Code: "#4b1394"
                      3. Data Structures - how JSON is structured from API
                        1. Keys
                          1. "A string that identifies a 'key-value pair'". (Opentext, n.d.).
                            1. Key-value pair: made of two elements ("a constant that defines the data set" and a value). (Adobe - Experience League, 2021).
                              1. e.g. "name": "Alex Terry"
                            2. Values
                              1. Data that can be manipulated or displayed, with a specific data type. (Launch Code Education, n.d.).
                                1. JSON Value Types (W3Schools, n.d.).
                                  1. String (e.g. "Hello, world!")
                                    1. Number/integer (e.g. "4" or "25")
                                2. Arrays
                                  1. JSON Structure that can hold "zero, one, or more ordered elements". These are separated by a comma (,) and stored in square brackets ([]). (Opentext, n.d.).
                                    1. e.g. ["Hello", 2, 8, "Purple"]
                                3. Data Specifications - different data used in JSON
                                  1. Data Types
                                    1. Boolean - only two options, used as a basis to determine if a condition is met or not.
                                      1. i.e. "true" or "false"
                                      2. Null - defines a cell/element that is empty
                                        1. i.e. "null"
                                        2. Text/varchar/string - any words or characters or general text
                                          1. e.g. "This is some text."
                                          2. Integer - numbers or digits
                                            1. e.g. "2", "64", "123"
                                          3. Data Length
                                            1. Defines the number of characters in a data value
                                              1. E.g. 255 characters for Dad jokes (text/varchar/string)
                                                1. E.g. 4 characters for small ID codes (integer/number)
                                                  1. E.g. 10 characters for phone numbers (integer/number)
                                                2. Constraints/validation
                                                  1. Constraint: defines any "individual requirements" applying to specific elements in JSON (Dennis, 2023).
                                                    1. NOT NULL
                                                      1. AUTO INCREMENT
                                                        1. UNIQUE
                                                          1. NULL
                                                          2. Validation: checks for "proper syntax and structure", "identifies syntax errors" and can confirm if JSON meets the structural requirements (Janghu & Luthra, n.d.).
                                                            1. Privacy - usernames, passwords and emails must be the designated data type when the user inputs them (e.g. strings with a certain data length), otherwise the database cannot accept them as values.
                                                              1. E.g. Strings must be wrapped in double quotes (" ") not single quotes (' ') (Janghu & Luthra, n.d.).
                                                                1. E.g. Arrays must be "denoted" by square brackets ([]) (Janghu & Luthra, n.d.).
                                                            2. Digital Methods of Exchanging Data - ways of exchanging data
                                                              1. Protocols (examples)
                                                                1. Transmission Control Protocol (TCP)
                                                                  1. A standard that exchanges data through smaller packets, and checks that they are successfully delivered (Fortinet, n.d.).
                                                                  2. Internet Protocol (IP)
                                                                    1. Sending packets that have rules/instructions attached to them, so that they arrive correctly and efficiently (Cloudflare , n.d.).
                                                                    2. Hypertext Transfer Protocol (HTTP)
                                                                      1. A protocol that exchanges information of the internet/the web (Mozilla Developer, n.d.).
                                                                      2. File Transfer Protocol (FTP)
                                                                        1. Protocol for transferring files over a network, by establishing connections across computers (Fortinet, n.d.).
                                                                      3. REST Principles
                                                                        1. A guideline with conditions for API, and manages complex network communication (Amazon Web Services, n.d.).
                                                                          1. Uniform Interface: a "standard format" so that there is enough information transferred for resource modification and processing (Amazon Web Services, 2024).
                                                                            1. Client-server: a server to client relationship where requests are sent and responses are retrieved over a connection, normally on the internet (TechTarget Contributor, 2023).
                                                                              1. Stateless: the fact that requests from the client are independent (can be in any order), and that the server is able to understand them, successfully (Amazon Web Services, 2024).
                                                                                1. Cacheable: responses can be saved with the client, saving time spent retrieving information, and the amount of requests sent to the server (Amazon Web Services, 2024) (Mindsize Team, 2023).
                                                                                  1. Layered System: information is interconnected between multiple servers and server layers (Amazon Web Services, 2024).
                                                                                2. JSON + XML
                                                                                  1. JSON: "JavaScript Object Notation" - stores and exchanges data in an easy-to-read manner for humans and computers. It is usable across different languages/platforms (W3Schools, n.d.) (Erickson, 2024).
                                                                                    1. Positive: Takes up little storage (Pinkiewicz, 2022)
                                                                                      1. Positive: similar looking to "JavaScript object creation code" - easy conversion (W3Schools, n.d.)
                                                                                        1. Negative: "No JSON calls error handling" (Rajeev, 2024)
                                                                                          1. Negative: can be hacked easily (Rajeev, 2024)
                                                                                          2. XML: "eXtensible Markup Language" - used to store/transport data. Tags are not predefined and can be made up, and requires software to exchange and display it (W3Schools, n.d.).
                                                                                            1. Example syntax: uses "{ }" to define object and "[ ]" to create arrays (W3Schools, n.d.)
                                                                                              1. Example syntax: uses "< >" to define opening tags and "</ >" to define closing tags (W3Schools, n.d.)
                                                                                                1. Negative: creates large files (Murrell, n.d.).
                                                                                                  1. Negative: Requires complex software for interpretation (Murrell, n.d.)
                                                                                                    1. Positive: approved and recommended by W3C (W3Schools, n.d.)
                                                                                                      1. Positive: Compatible with any platform, including Java (IBM, 2023)

                                                                                                  Semelhante

                                                                                                  RoboCup Challenge: Assessment
                                                                                                  Rebbecca Stanley
                                                                                                  Technical Proposal (continued)
                                                                                                  Rebbecca Stanley
                                                                                                  Technical Proposal
                                                                                                  Rebbecca Stanley
                                                                                                  How to Create A Mindmap
                                                                                                  PatrickNoonan
                                                                                                  Creating Mind Maps with GoConqr
                                                                                                  Sarah Egan
                                                                                                  NEW: ExamTime's Mind Map Maker
                                                                                                  Andrea Leyden
                                                                                                  Macbeth Quotes/Themes
                                                                                                  Michael LEwis
                                                                                                  Genes, The Genetic Code, DNA and Chromosomes
                                                                                                  Bee Brittain
                                                                                                  CUBAN MISSILE CRISIS
                                                                                                  Olivia Andrews
                                                                                                  How Villainy is Depicted in Macbeth
                                                                                                  scarletsnow491
                                                                                                  Philosophy
                                                                                                  Rebecca Harbury