peterbsmyth / south-side-stand-backend

Strapi

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

South Side Stand

Models

Advertisement

interface Advertisement {
  photoURL: string;
  name: string;
  startDate: number; // UNIX Timestamp (see: https://www.unixtimestamp.com)
  endDate: number; // UNIX Timestamp (see: https://www.unixtimestamp.com)
  websiteURL: string;
}

Article

interface Article {
  header: string;
  subhead: string;
  body: string;
  publicationDate: number; // UNIX Timestamp (see: https://www.unixtimestamp.com)
  author: Person;
  SEOTitle: string;
  SEODescription: string;
  category: Category;
  tags: Tag[];
}

Person

interace Person {
  type: 'board', 'reporter', 'staff', 'community', 'photographer', 'contributor';
  firstName: string;
  lastName: string;
  photoURL: string;
  title: string;
  description: string;
  twitterURL: string;
  linkedinURL: string;
  instagramURL: string;
  facebookURL: string;
}

Photo

interface Photo {
  caption: string;
  photoURL: string;
  photographer: Person;
}

Category

interface Category {
  name: string;
  descriptin: string;
}

Tag

interface Tag {
  name: string;
  descriptin: string;
}

Widget

interface Widget {
  name: string;
  websiteURL: string;
  photoURL: string;
}

About

Strapi


Languages

Language:JavaScript 86.7%Language:CSS 13.0%Language:HTML 0.3%