Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IProfileSchema

The JSON Validation schema for your profile type. Use this to describe the expected structure and contents of your profile, as well as provide option definitions for create & update profile commands

Hierarchy

Indexable

[key: string]: any

Any other advanced options available from the JSON schema specification http://json-schema.org/latest/json-schema-validation.html

Index

Properties

description

description: string

A description of your type of profile

properties

properties: {}

These are the properties of your profile object. If your profile deals with information about bananas, some properties might be "color", "sweetness", and "origin" of type "string". For each one, you can provide an Imperative option definition (The same format as your normal command option definitions) which will be used for auto-generating profile commands.

Type declaration

  • [key: string]: IProfileProperty

    General mapping of property name to an IProfileProperty object.

Optional required

required: string[]

An array of properties that must be present in the finished profile. If any of these fields are missing, profile validation will fail.

title

title: string

A short, descriptive title of your profile type

type

type: string

Specify "object". This is not the type name of the profile, but rather a description of the type of data structure (e.g. string, array). Your profile will be an object with one or more properties.

Optional version

version: string

Generated using TypeDoc