Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion v1/examples/l3rd-name/l3rd.ograf.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://ograf.ebu.io/v1/specification/json-schemas/graphics/schema.json",
"$schema": "http://localhost:8080/v1/specification/json-schemas/graphics/schema.json",
"name": "Lower 3rd - Name",
"description": "Name lower third",
"id": "l3rd-name",
Expand Down
16 changes: 14 additions & 2 deletions v1/examples/minimal/minimal.ograf.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,21 @@
{
"$schema": "https://ograf.ebu.io/v1/specification/json-schemas/graphics/schema.json",
"$schema": "http://localhost:8080/v1/specification/json-schemas/graphics/schema.json",
"name": "Minimal Test Graphic",
"description": "This Graphic includes the bare minimum required to be a valid OGraf Graphic. It displays a 'Hello World!' message.",
"id": "minimal-example",
"main": "graphic.mjs",
"supportsRealTime": true,
"supportsNonRealTime": false
"supportsNonRealTime": false,
"schema": {
"type":"object",

"properties": {
"message": {
"type": "string",
"default": "Hello World!",
"gddType": "color-rrggbb",
"pattern": "^#[0-9a-f]{6}$"
}
}
}
}
2 changes: 1 addition & 1 deletion v1/examples/ograf-logo/logo.ograf.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://ograf.ebu.io/v1/specification/json-schemas/graphics/schema.json",
"$schema": "http://localhost:8080/v1/specification/json-schemas/graphics/schema.json",
"name": "Minimal Test Graphics",
"description": "This Graphic shows an OGraf logo",
"id": "minimal-logo",
Expand Down
2 changes: 1 addition & 1 deletion v1/examples/renderer-test/manifest.ograf.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://ograf.ebu.io/v1/specification/json-schemas/graphics/schema.json",
"$schema": "http://localhost:8080/v1/specification/json-schemas/graphics/schema.json",
"name": "Renderer Test Graphic",
"description": "This Graphic is used to validate a Renderer",
"id": "renderer-test",
Expand Down
Loading