Val Town · Schema

Org

An Org

Developer ToolsServerlessJavaScriptTypeScriptSocial CodingHTTP EndpointsCron JobsEmailSQLiteBlob Storage

Properties

Name Type Description
username string
id string The id of the org
View JSON Schema on GitHub

JSON Schema

val-town-org-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.val.town/schemas/org",
  "title": "Org",
  "type": "object",
  "required": [
    "username",
    "id"
  ],
  "properties": {
    "username": {
      "type": "string"
    },
    "id": {
      "type": "string",
      "format": "uuid",
      "description": "The id of the org"
    }
  },
  "description": "An Org"
}