Skip to content

Instantly share code, notes, and snippets.

@gilesbowkett
Created January 15, 2015 21:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gilesbowkett/3a0c3034f5caf920fee1 to your computer and use it in GitHub Desktop.
Save gilesbowkett/3a0c3034f5caf920fee1 to your computer and use it in GitHub Desktop.
description: "A simple schema, exercising very few attributes"
type: "object"
additionalProperties: false
required: ["origin", "name", "tags", "timestamp", "data"]
properties:
origin:
type: "string"
name:
type: "string"
tags:
type: "array"
items: {type: "string"}
timestamp:
type: "integer"
data: { type: "object" }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment