export { themes } from './theme2'; import { Appear, Image } from '@mdx-deck/components'; import { Invert, Split, SplitRight, FullScreenCode, Horizontal } from 'mdx-deck/layouts' import { CodeSurferLayout } from 'code-surfer'; import { RandomlyPlaced } from './components/RandomlyPlaced'; import { SlideIn, BlurIn, ZoomSteps } from './components/lib'; import TerminalFramed from './components/TerminalFramed'; import { TerminalStyle } from './components/layout/layout'; import {Coder} from './components/Coder' import SchemaSurferSimple from './components/schema-surfer-simple.mdx'; import './global.css';
- fachliche Konzepte und Dienste nach außen kommunizieren
- leicht verständlich für Client-Entwicker
- maschinenverständlich
GET /events/4711
{
"id": "4711",
"start": "2019-03-28 21:00",
"movie_id": 14123,
"movie_name": "Aquaman",
"image": "static/images/aquaman.png",
"price": 1600,
"location_id": "123",
"tickets_left": 120,
"rebate_tariff": "A-12",
"promote": true
}
- vermischt mehrere Domänenkonzepte
→ Ausstrahlungstermin, Film, Preise, Verfügbarkeiten - technische Flags, ohne klare fachliche Bedeutung
→ hidden, available, promote - Es ist unklar, ob und wie weitere Daten abgerufen werden können
→ z.B. Filmdetails - exponiert interne Identifier
→ id, rebate_tariff, location_id
- Filme
- Vorstellungstermine
- Kinos
- Preise / Angebote
- Verfügbarkeiten
- Vorstellungstermine zu Filmen suchen
- Angebote einsehen
- Tickets buchen
- Platzreservierung vornehmen
Entität | Schema-URI |
---|---|
Film | http://schema.org/Movie |
Vorstellungstermin | http://schema.org/ScreeningEvent |
Angebot | http://schema.org/Offer |
Sitzplatz | http://schema.org/Seat |
Versicherung | http://schema.org/InsuranceAgency |
givenName | http://schema.org/givenName |
Ding | http://schema.org/Thing |
- Schema.org is a joint effort between Google, Microsoft, Yahoo!, and Yandex
- Selbst in hoch-innovativen Geschäftsfeldern => allgemeine Konzepte
- Preise
- Personen
- Orte
- Eindeutige URIs zur Auszeichnung von Daten
- Inhalte aus Webseiten für Suchmaschinen verständlich machen
- Nutzung von Schema.org in APIs mittles JSON-LD Repräsentation
- Neue Backend-Version...
- andere JSON-Bezeichner
- Strukturen werden geändert
- Daten werden nicht mehr direkt ausgeliefert
- ... erfordern zusätzliche HTTP-Anfrage(n)
- Java => CamelCase
- openAPI => snake_case
- kebab-case => url-case
- PascalCase => ClassCase
- first_name
- first-name
- firstName
- firstname
- FirstName
- Vorname, VorName, Vor_name, ...
- ... дата рождения
- Erweiterung der Daten im Backend um einen "Kontext"
- Dieser Kontext beschreibt die Semantik der Daten
{
"firstname": "John",
"lastname": "Doe",
"birthday": "1978-05-17"
}
{
"@context": {
"@vocab": "https://schema.org/",
"firstname": "givenName",
"lastname": "familyName",
"birthday": "birthDate"
},
"firstname": "John",
"lastname": "Doe",
"birthday": "1978-05-17"
}
{
"@vocab": "https://schema.org/",
"first_name": "givenName",
"last_name": "familyName",
"дата_рождения": "birthDate"
}
{
"http://schema.org/givenName": "Steph Reb",
"http://schema.org/url": { "@id": "http://steph.reb.org/" },
"http://schema.org/image": { "@id": "http://steph.reb.org/images/steph.png" }
// The '@id' keyword means 'This value is an identifier that is an IRI'
}
{
"@context": "https://schema.org",
"@type": "NewsArticle",
"image": [
"https://example.com/photos/1x1/photo.jpg",
"https://example.com/photos/4x3/photo.jpg",
"https://example.com/photos/16x9/photo.jpg"
]
}
- from existing JSON-based services to self-descriptive services
- expressing Linked Data in JSON
- adding semantics to existing JSON
- provides context, metadata, and a standard graph traversal mechanism
- give JSON messages a well-defined meaning by mapping most things to IRIs
- build interoperable Web Services (no RDF)
- fachliche Konzepte in Form von klassischem JSON darstellen
- Änderungen im Backend ohne Auswirkung auf Clients
- Entkopplung FrontEnd / Backend
- ... solange verwendete Semantik die gleiche bleibt
- Team focus auf:
- fachlich wichtige Semantik des Datenaustauschs (Fachliche Bedeutung)
- statt auf „Camel- vs. Snake-Case“
-
Missing: profile to specify field names and data-structure
- a few well-known and widely adopted profiles will emerge
-
Multiple ways to serialize the same graph data
- JSON-only clients depend on structure and not directly on the semantics of the serialization
- give JSON messages a well-defined meaning by mapping most things to IRIs
- adding semantics to existing JSON
- describes the syntactic structure of a JSON document
- validate
-
machine-readable ontology, describing:
- persons
- their activities
- their relations to other people and objects.
-
allows groups of people to describe social networks without a centralised database
-
loosely-coupled collection of Data (=> LOD Cloud)
{
"@context": {
"foaf": "http://xmlns.com/foaf/0.1/"
},
"@graph": [
{
"@type": "foaf:Person",
"foaf:homepage": "http://example.com/bob/",
"foaf:name": "Bob"
}
]
}
{
"@vocab": "http://xmlns.com/foaf/0.1/",
"@context": {
"name": "http://xmlns.com/foaf/0.1/name",
"knows": "http://xmlns.com/foaf/0.1/knows"
},
// triplets: subject => prädikat => object
"name": "Markus Lanthaler",
"knows": {
"@id": "/people/john",
"name": "John Doe"
}
}
- precise representation
- semantic data can be unambiguously queried and reasoned about.
<ul>
<li>
<a href="http://example.com/bob/">
<span>Bob</span>
</a>
</li>
</ul>
<div prefix="foaf: http://xmlns.com/foaf/0.1/">
<ul>
<li typeof="foaf:Person">
<a property="foaf:homepage" href="http://example.com/bob/">
<span property="foaf:name">Bob</span>
</a>
</li>
</ul>
</div>
The Web is a giant graph of knowledge ( distributed hypermedia system )
Regardless of whether information is in:
- people's heads
- in physical or digital documents
- or in the form of factual data
it can be linked
<img src="./images/lod2011.png" alt="lod2011" style={{background: 'white', height:'100vh'}} />
<img src="./images/lod2019.png" alt="lod2011" style={{background: 'white', height:'100vh'}} />
<img src="./images/nextql_dream.png" alt="Image alt" style={{background: 'white', height:'80vh'}} />
Model Your Application Domain, Not Your JSON Structures
- dramatically simplified reuse of domain models
- formal description of entities properties and relationships in the problem domain
- reduces the costs and risks
- benefits in terms of interoperability and adoption
- its schemalessness ensures the required agility in today’s fast-moving world
- JSON-LD: the simplicity of JSON with the semantic expressivity of RDF
- Hydra, a lightweight vocabulary to capture and document the behavioral model of hypermedia-driven Web APIs in a machine-processable way.
- describe the domain application protocol of services.
- document semantics of specific HTTP operations
- combination of formal data model + holistic documentation of behavioral model (in a unified form)
- enables the creation of declarative contracts capturing all aspects of a Web APIs.
-
https://hackolade.blogspot.com/2018/06/data-modeling-is-dead-long-live-schema.html
-
https://blog.codecentric.de/2019/03/domain-driven-api-first-design/
-
https://blog.codecentric.de/2018/07/datenaustausch-mit-json-ld/
- http://apihandyman.io/
- How public web APIs raise software bar
- API Styleguide, the Lord of API Designs
- https://github.com/Microsoft/api-guidelines/blob/master/Guidelines.md
- https://github.com/CiscoDevNet/api-design-guide/blob/master/principles.md
- http://apistylebook.com/design/guidelines/atlassian-rest-api-policy
- http://apistylebook.com/design/guidelines/ausdto-api-design-guide
- http://apistylebook.com/design/guidelines/cisco-api-design-guide
- http://apistylebook.com/design/guidelines/deliveroo-api-design-guidelines
- https://github.com/WhiteHouse/api-standards/blob/master/README.md
-
Reuse: Remote files can be hosted on an HTTP server (rather than the local file system).
-
Version /v1/ in Urls https://www.youtube.com/watch?v=zEyg0TnieLg
-
Tell the client via the header how it can build a valid payload.
-
Content-Type: application/json; profile=https://some.schema.url/v1/user#
-
http://apistylebook.com/design/topics/http-status-standard-error
-
machine-readable error id
-
a human-readable error message
-
optionally a url pointing the client to further info
-
-
https://github.com/Microsoft/api-guidelines/blob/master/Guidelines.md
- MUST support CORS (Cross Origin Resource Sharing).
- Services SHOULD support an allowed origin of CORS * and enforce authorization through valid OAuth tokens
// https://github.com/Microsoft/api-guidelines/blob/master/Guidelines.md#51-errors
{ "error": {
"code": "BadArgument",
"message": "Multiple errors in ContactInfo data",
"target": "ContactInfo",
"details": [{ "code": "NullValue", "target": "PhoneNumber", "message": "Phone number must not be null" } ]
}}
// https://github.com/CiscoDevNet/api-design-guide/blob/master/README.md
{ "error" : {
"key" : "404",
"message" : [
"File kittens.jpg not found.",
"Database connection failure."
]
},
"trackingId" : "S1_12345678-90ab-cdef-1234-567890abcdef_0" }
// https://github.com/cloudfoundry/cc-api-v3-style-guide#errors
{ "errors": [
{
"detail": "Relationships is not a hash.",
"title": "CF-UnprocessableEntity",
"code": 10008
}
]
}
- detail:
- User-readable message describing the error.
- Intended to be surfaced by clients to users.
- title:
- Human-readable unique descriptor for the class of error.
- code:
- Numerical, unique identifier for the class of error.
https://github.com/strongloop/loopback-next/blob/master/docs/site/Controllers.md
- 400 BadRequest
- 401 Unauthorized
- 403 Forbidden
- 404 NotFound
- 500 InternalServerError
- 502 BadGateway
- 503 ServiceUnavailable
- 504 GatewayTimeout