Data Formats Flashcards
What are the three popular standard formats for exchanging information with remote APIs
XML, JSON and YAML
What is the first step in interacting with a REST interface
Authenticate, usually by POSTing a user/password combination and retrieving an expiring token for use in authenticating subsequent requests.
What is the second step in interacting with a REST interface
Execute a GET request to a given endpoint (authenticating as required) to retrieve the state of a resource, requesting XML, JSON, or YAML as the output format.
What is the third step in interacting with a REST interface
Modify the returned XML, JSON, or YAML.
What is the fourth step in interacting with a REST interface
Execute a POST (or PUT) to the same endpoint (again, authenticating as required) to change the state of the resource, again requesting XML, JSON, or YAML as the output format and interpreting it as needed to determine if the operation was successful.
What is Extensible Markup Language (XML)
is a derivative of Structured, Generalized Markup Language (SGML), and also the parent of HyperText Markup Language (HTML). XML is a generic methodology for wrapping textual data in symmetrical tags to indicate semantics. XML filenames typically end in “.xml”.
What type of data format is this an example of
0101af9811012 t1.nano 0102bg8908023 t1.micro
XML
Which data format is user defined tag based?
XML
In XML what is the prologue abd what does it contain
The first line in an XML file and contains the tag name xml and attributes
EX.
How do you write a comment in XML
In XML what are three things to know about attributes
Attribute values must always be included in single or double quotes.
An element may have multiple attributes, but only one attribute with a specific name.
If an element has no content, we can use a shorthand notation in which we put the slash inside the open tag, rather than including a closing tag.
In XML why should you use namespace references
to specify particular tagnames and how they should be used in various contexts
What is this an example of
A reference to a namespace
In XML what is this an example of vms [ { {"vmid": "0101af9811012"}, {"type": "t1.nano"} }, { {"vmid": "0102bg8908023"}, {"type": "t1.micro"} } ]
An instance which is just an a dictionary in XML
What is JSON JavaScript Object Notation
a data format derived from the way complex object literals are written in JavaScript (which is in turn, similar to how object literals are written in Python)
What is this code an example of
{ "edit-config": { "default-operation": "merge", "test-operation": "set", "some-integers": [2,3,5,7,9], "a-boolean": true, "more-numbers": [2.25E+2,-1.0735], } }
What JSON basic data types?
numbers (written as positive and negative integers, as floats with decimal, or in scientific notation), strings, Booleans (‘true’ and ‘false’), or nulls (value left blank).
What are objects in JSON
individual objects in JSON comprise key/value pairs, which may be surrounded by braces, individually:
EX. {“keyname”: “value”}
What does JSON not support
comments
What is insignifiacnt in JSON
Whitespaces meaning it doesnt care about them
What does YAML stand for
YAML Ain’t Markup Language,
What is YAML and why is it used
superset of JSON designed for even easier human readability. It’s becoming more common as a format for configuration files, and particularly for writing declarative automation templates for tools like Ansible.
What is this code an example of --- edit-config: a-boolean: true default-operation: merge more-numbers: - 225.0 - -1.0735 some-integers: - 2 - 3 - 5 - 7 - 9 test-operation: set ...
YAML
Can JSON parse YAML documents?
No only YAML can parse JSON documents
How does a YAML file open and close
With three dots
EX. …
What is this code an example of
mymap:
myfirstkey: 5
mysecondkey: The quick brown fox
A map - baiscally a dictionary
What is this code an example of mylist: - 1 - 2 - 3
A list in YAML
How do you write a comment in YAML
this is a comment
What does parsing mean
analyzing a message, breaking it into its component parts, and understanding their purposes in context