Job Sector
xeebo job sector schema
JSON schema
  1. {
  2.     "$schema": "http://json-schema.org/draft-04/schema",
  3.     "id": "http://api.xeebo.com/schema/xeebo-job-sector-schema-v1.0.0.json",
  4.     "title": "Job Sector",
  5.     "description": "xeebo job sector schema",
  6.     "type": "object",
  7.     "definitions": {
  8.         "versionType": {
  9.             "title": "Schema Version",
  10.             "description": "Schema version string",
  11.             "type": "string",
  12.             "pattern": "^[0-9]\\.[0-9]\\.[0-9]$"
  13.         },
  14.         "translationType": {
  15.             "title": "Translation",
  16.             "description": "Translation label using iso-639-alpha-2 language locale as key",
  17.             "type": "string"
  18.         },
  19.         "dataType": {
  20.             "title": "Job Sector Data",
  21.             "description": "Job sector data structure",
  22.             "patternProperties": {
  23.                 "^[a-z]{1}$": {
  24.                     "$ref": "#/definitions/translationType"
  25.                 }
  26.             }
  27.         }
  28.     },
  29.     "properties": {
  30.         "version": {
  31.             "$ref": "#/definitions/versionType"
  32.         },
  33.         "data": {
  34.             "$ref": "#/definitions/dataType"
  35.         }
  36.     },
  37.     "additionalProperties": false
  38. }
JSON schema data description
Path/Attribute Title Description Required
version Schema Version Schema version string optional
data Job Sector Data Job sector data structure optional