github.com/hernad/nomad@v1.6.112/ui/app/models/policy.js (about) 1 /** 2 * Copyright (c) HashiCorp, Inc. 3 * SPDX-License-Identifier: MPL-2.0 4 */ 5 6 import Model from '@ember-data/model'; 7 import { attr } from '@ember-data/model'; 8 9 export default class Policy extends Model { 10 @attr('string') name; 11 @attr('string') description; 12 @attr('string') rules; 13 @attr() rulesJSON; 14 }